body {
  font: 400 15px Lato, sans-serif;
  line-height: 1.8;
  color: #818181;
  padding-top: 80px; /* space for fixed navbar */
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #303030;
  font-weight: 600;
  margin-bottom: 30px;
}

h4 {
  font-size: 19px;
  line-height: 1.375em;
  color: #303030;
  font-weight: 400;
  margin-bottom: 30px;
}

.jumbotron {
  background-color: #ff0000;
  color: #fff;
  padding: 100px 25px;
  font-family: Montserrat, sans-serif;
}

.container-fluid {
  padding: 60px 50px;
}

.bg-grey {
  background-color: #f6f6f6;
}

.logo {
  color: #ff0000;
  font-size: 200px;
}

/* === Carousel (Bootstrap 5) === */

/* Controls background (no dark overlay on sides) */
.carousel-control-prev,
.carousel-control-next {
  background-image: none;
  color: #ff0000;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  border: 1px solid #ff0000;
}

.carousel-indicators .active {
  background-color: #ff0000;
}

.carousel-inner{
  padding: 20px 0px;
}

/* Testimonials text in any text-only carousel (if used) */
.carousel-item h4 {
  font-size: 19px;
  line-height: 1.375em;
  font-weight: 400;
  font-style: italic;
  margin: 70px 0;
}

.carousel-item span {
  font-style: normal;
}

/* === Generic card styling (legacy, still fine for non-hosting cards) === */
.card {
  border: 1px solid #ff0000;
  border-radius: 0 !important;
  transition: box-shadow 0.5s;
}

.card:hover {
  box-shadow: 5px 0px 40px rgba(0,0,0, 0.2);
}

.card-header {
  color: #fff !important;
  background-color: #ff0000 !important;
  padding: 25px;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}

.card-body h3 {
  font-size: 32px;
}

.card-body h4 {
  color: #aaa;
  font-size: 14px;
}

.card-body .btn {
  margin: 15px 0;
  background-color: #ff0000;
  color: #fff;
}

.card-body .btn:hover {
  border: 1px solid #ff0000;
  background-color: #fff !important;
  color: #ff0000;
}

/* === NAVBAR BASE (slick, shrink, underline, CTA) === */
.navbar {
  margin-bottom: 0;
  background-color: #ff0000;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
  padding: 12px 0;
  transition:
    padding 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Shrunk state on scroll */
.navbar.shrink {
  padding: 4px 0;
  background-color: #cc0000 !important;
  box-shadow: 0 4px 12px rgba(0,0,0, 0.25);
}

/* Brand + logo */
.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px; /* big logo */
  transition: height 0.3s ease,
              transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.2s ease-out;
}

.navbar.shrink .logo-img {
  height: 30px; /* shrunk logo */
}

/* Glow effect on hover */
.logo-img:hover {
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

/* Nav links + animated underline */
.navbar .nav-link {
  position: relative;
  color: #fff !important;
  padding: 8px 12px;
  text-transform: uppercase;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease-out, left 0.2s ease-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  width: 100%;
  left: 0;
}

/* Active nav link (no white background) */
.navbar-nav .nav-link.active {
  background-color: transparent !important;
  color: #fff !important;
}

/* Active page link (manual per page) */
.navbar-nav .nav-link.active-page {
  background-color: transparent !important;
  color: #fff !important;
}

.navbar-nav .nav-link.active-page::after {
  width: 100%;
  left: 0;
}

/* Toggler (mobile) – make icon visible on red */
.navbar .navbar-toggler {
  border-color: transparent;
}

.navbar .navbar-toggler-icon {
  filter: invert(1); /* white icon on red */
}

/* CTA button in navbar */
.nav-cta {
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 999px; /* pill shape */
  padding: 6px 18px;
  color: #ff0000 !important;
}

.nav-cta:hover {
  background-color: #ff0000;
  color: #fff !important;
  border-color: #fff;
}

/* Footer icon (legacy glyphicon usage) */
footer .glyphicon {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff0000;
}

/* Slide-in animation */
.slideanim {
  visibility: hidden;
}

.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }
  .btn-lg {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 150px;
  }
}

/* === Carousel overlay & height & backgrounds === */

/* Dark overlay ONLY for the hero carousel */
#homepageCarousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

#homepageCarousel .carousel-caption {
  z-index: 2; /* ensures text sits above overlay */
}

/* Backgrounds & height */
/* Hero only */
#homepageCarousel .carousel-item {
  position: relative;
  height: 80vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


@media (max-width: 992px) {
  #homepageCarousel .carousel-item {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  #homepageCarousel .carousel-item {
    height: 60vh;
  }
}


/* Slide-specific background images
   NOTE: paths are relative to basic.css in ../styles/basic.css */
.slide-1 {
  background-image: url("../images/slider1.jpg");
}
.slide-2 {
  background-image: url("../images/slider2.jpg");
}
.slide-3 {
  background-image: url("../images/slider3.jpg");
}

/* Make carousel arrows LOOK smaller (without layout hacks) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  transform: scale(0.6); /* shrink the visual arrow */
}

/* =========================================
   Carousel button styling (compact, fancy)
========================================= */
.carousel .btn {
  width: auto !important;          /* shrink to text */
  padding: 8px 20px;
  display: inline-block;
  margin: 10px auto 0;             /* center under text */
  text-align: center;
  border-radius: 999px;            /* pill shape */
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

/* Left arrow icon inside button */
.carousel .btn::before {
  content: "➜";
  display: inline-block;
  margin-right: 8px;
  transform: translateX(-4px);
  transition: transform 0.2s ease;
}

/* Hover effects: glow + slight lift + arrow slide */
.carousel .btn:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  transition: all 0.15s ease-out;
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.carousel .btn:hover::before {
  transform: translateX(0);
}

/* Mobile-only button sizing for carousel */
@media (max-width: 576px) {
  .carousel .btn {
    padding: 6px 14px !important;
    font-size: 14px !important;
    border-width: 1.5px !important;
  }

  .carousel .btn::before {
    margin-right: 6px;
    transform: translateX(-3px);
    font-size: 14px;
  }
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: #fff7f7; /* soft tint to separate from white sections */
  position: relative;
  overflow: hidden; /* keep pattern inside the section */
}

.about-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 4px;
}

/* Lead + body text */
.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-top: 10px;
  margin-bottom: 10px;
}

.about-body {
  font-size: 15px;
  color: #666;
}

/* Highlights list */
.about-highlights h5 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #303030;
}

.about-highlights p {
  font-size: 13px;
  margin: 0;
  color: #777;
}

/* Decorative bullet (if used somewhere) */
.about-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0000;
  margin-right: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Clean modern section title (no underline) */
.section-title-clean {
  font-size: 34px;
  font-weight: 700;
  color: #303030;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .section-title-clean {
    font-size: 28px;
  }
}

/* Decorative mesh pattern on right edge of About section */
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 260px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ff0000' stroke-width='0.2'%3E%3Cpath d='M0 0 L10 10 M10 0 L0 10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px; /* scale pattern */
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Make sure text stays above the pattern */
.about-section > .row {
  position: relative;
  z-index: 2;
}

/* Mobile: shrink or hide pattern if needed */
@media (max-width: 768px) {
  .about-section::after {
    opacity: 0.05;
    width: 180px;
    right: -20px;
  }
}

@media (max-width: 576px) {
  .about-section::after {
    display: none; /* optional: remove pattern on small screens */
  }
}

/* ABOUT: Illustration Glow */
.about-illustration-wrapper {
  position: relative;
  display: inline-block;
}

.about-illustration-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(rgba(255, 0, 0, 0.18), transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.about-illustration {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* ABOUT: Staggered Fade-in Up */
.fade-in-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT: Micro Icons */
.about-icon {
  font-size: 22px;
  color: #ff0000;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Mobile alignment */
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }

  .about-highlights .d-flex {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-illustration-wrapper {
    max-width: 85%;
  }
}

/* Get in Touch Button — Slide-in Red Fill Hover */
.btn-get-in-touch {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  z-index: 1;
}

.btn-get-in-touch::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* hidden off-screen at start */
  width: 100%;
  height: 100%;
  background: #ff0000; /* brand red */
  transition: left 0.3s ease-in-out;
  z-index: -1;
}

.btn-get-in-touch:hover::before {
  left: 0; /* slides in from the left */
}

.btn-get-in-touch:hover {
  color: #fff !important;
  border-color: #ff0000 !important;
}

/* ===========================
   SERVICES SECTION
=========================== */

.services-section {
  background: #ffffff;
}

.services-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 4px;
}

.services-lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* Service cards */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(255,0,0,0.25);
}

/* Icon circle */
.service-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon {
  font-size: 22px;
  color: #ff0000;
}

/* Text */
.service-title {
  font-size: 17px;
  font-weight: 600;
  color: #303030;
  margin-bottom: 6px;
}

.service-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0000;
}

/* Responsive alignment */
@media (max-width: 768px) {
  .services-section {
    text-align: left;
  }

  .services-section .text-center {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 20px 18px 18px;
  }
}

/* ===========================
   VALUES BRIDGE SECTION
=========================== */

.values-bridge-section {
  background: linear-gradient(135deg, #fff7f7 0%, #f6f6f6 100%);
  border-top: 1px solid rgba(255,0,0,0.05);
  border-bottom: 1px solid rgba(255,0,0,0.05);
}

.values-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 4px;
}

.values-lead {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

.values-mini-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.values-mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

.values-mini-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: #ff0000;
}

/* Value “pills” */
.value-pill {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(255,0,0,0.25);
}

/* Icon circle */
.value-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.value-icon {
  font-size: 20px;
  color: #ff0000;
}

/* Text */
.value-title {
  font-size: 15px;
  font-weight: 600;
  color: #303030;
  margin: 0;
}

.value-text {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .values-bridge-section {
    text-align: left;
  }

  .values-bridge-section .col-lg-5 {
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .value-pill {
    padding: 16px 14px 14px;
  }
}

/* ===========================
   PORTFOLIO SECTION (SLIDESHOW)
=========================== */

.portfolio-section {
  background: #ffffff;
}

/* Intro text */
.portfolio-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 4px;
}

.portfolio-lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
}

/* Carousel wrapper */
.portfolio-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

/* Slide card look */
.portfolio-carousel .carousel-item {
  padding: 24px 22px;
}

.portfolio-slide-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  background: none;
}

.portfolio-slide-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.portfolio-carousel .carousel-item:hover .portfolio-slide-image {
  transform: scale(1.06);
}

/* Right-hand text */
.portfolio-slide-title {
  font-size: 20px;
  font-weight: 600;
  color: #303030;
  margin-top: 4px;
  margin-bottom: 10px;
}

.portfolio-slide-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.portfolio-slide-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.portfolio-slide-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.portfolio-slide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0000;
}

/* Tag pill (used in portfolio slides) */
.project-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.25);
  color: #ff0000;
  margin-bottom: 6px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .portfolio-section {
    text-align: left;
  }

  .portfolio-carousel .carousel-item {
    padding: 10px 0;
  }

  .portfolio-section .text-center {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .portfolio-slide-image-wrapper {
    border-radius: 14px;
  }
}



/* ===========================
   PREMIUM HOSTING PRICING
=========================== */

.pricing-section {
  /* soft background, very subtle */
  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.05), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.04), transparent 60%),
    #ffffff;
}

.pricing-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 4px;
}

.pricing-lead {
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Layout: keep row centred on large screens */
.pricing-section .row.g-4 {
  max-width: 1100px;
  margin: 0 auto;
}

/* Base hosting card */
.hosting-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px !important;
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Smooth hover lift */
.hosting-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
  border-color: rgba(255,0,0,0.35);
}

/* Card header (icon + name) */
.hosting-card .card-header {
  background: transparent !important;
  border-bottom: none;
  padding: 18px 18px 10px;
}

.hosting-card .card-header h1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 2px 0 0;
  text-transform: none;
  color: #303030;
}

/* Icon circle in header */
.plan-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.plan-icon i {
  color: #ff0000;
  font-size: 22px;
}

/* Body content */
.hosting-card .card-body {
  padding: 8px 18px 20px;
}

/* Feature rows with subtle separators */
.hosting-card .card-body p {
  padding: 6px 0;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px;
  color: #555;
}

/* Remove border from last feature row, keep price separate */
.hosting-card .card-body p:nth-last-of-type(2) {
  border-bottom: none;
}

/* Check mark icon before each feature */
.hosting-card .card-body p::before {
  content: "✔";
  color: #ff0000;
  font-weight: 700;
  margin-right: 6px;
  font-size: 12px;
}

/* Price styling */
.hosting-card h3 {
  font-size: 26px;
  margin-top: 12px;
  margin-bottom: 0;
  color: #303030;
}

.hosting-card h4 {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Minimal premium button style for hosting cards */
.hosting-card .btn {
  background: #ffffff !important;
  color: #ff0000 !important;
  border: 1px solid rgba(255,0,0,0.35) !important;

  margin-top: 12px;
  padding: 4px 16px !important;     /* slim vertical + clean horizontal */
  font-size: 13px !important;       /* minimal text size */
  font-weight: 500 !important;
  border-radius: 12px !important;   /* soft square-rounded shape */

  transition: all 0.25s ease;
}

/* Minimal hover behavior */
.hosting-card .btn:hover {
  background: #ff0000 !important;
  color: #ffffff !important;
  border-color: #ff0000 !important;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

/* Domain badges (.co.zw) */
.domain-badge,
.domain-badge-highlight {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  font-size: 11px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.domain-badge {
  background: rgba(255,0,0,0.05);
  border: 1px solid rgba(255,0,0,0.25);
  color: #ff0000;
}

.domain-badge-highlight {
  background: #ff0000;
  color: #ffffff;
  border: 1px solid #ff0000;
  box-shadow: 0 3px 10px rgba(255,0,0,0.35);
}

/* Small note under pricing */
.pricing-section .small.text-muted {
  font-size: 11px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .pricing-section .row.g-4 {
    max-width: 100%;
  }

  .hosting-card {
    border-radius: 16px !important;
  }
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  background: #0f0f10;
  color: #d7d7d7;
  margin-top: 0;
  padding-top: 40px;
}

/* Main area */
.footer-main {
  padding: 0 40px 30px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-logo {
  height: 36px;
}

.footer-text {
  font-size: 14px;
  color: #bcbcbc;
  margin-top: 10px;
  max-width: 360px;
}

/* Column headings */
.footer-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Link lists */
.footer-links,
.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li,
.footer-contact-list li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #c5c5c5;
}

.footer-links a,
.footer-contact-list a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: #ff4b4b;
}

/* Contact icons */
.footer-icon {
  color: #ff4b4b;
  margin-right: 6px;
  font-size: 14px;
}

/* Social icons */
.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f2f2f2;
  margin-right: 6px;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px 16px;
  margin-top: 10px;
  background: #0b0b0c;
}

.footer-bottom-text {
  font-size: 12px;
  color: #9e9e9e;
}

/* Back to top icon */
.footer-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #ff4b4b;
  font-size: 20px;
}

.footer-top-link:hover {
  color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-main {
    padding: 0 20px 24px;
  }

  .footer-text {
    max-width: 100%;
  }
}
/* Global spacing adjustments for smaller screens */
@media (max-width: 992px) {
  .container-fluid {
    padding: 50px 30px;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding: 40px 18px;
  }
}

/* Fine-tune headings on small screens */
@media (max-width: 576px) {
  h1.section-title-clean,
  .section-title-clean {
    font-size: 24px;
    line-height: 1.3;
  }

  .pricing-lead,
  .portfolio-lead,
  .about-body {
    font-size: 14px;
  }
}

/* Contact page – card padding on smaller devices */
@media (max-width: 768px) {
  .card-body.p-4.p-md-5 {
    padding: 20px 16px !important;
  }
}

/* Make form labels slightly smaller on phones */
@media (max-width: 576px) {
  .form-label {
    font-size: 13px;
  }

  .form-control,
  .form-select,
  textarea.form-control {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 28px;
  }

  .footer-main {
    padding: 0 16px 20px;
  }

  .footer-heading {
    margin-top: 10px;
  }

  .footer-bottom {
    padding: 10px 10px 14px;
  }
}
