/* ==================================================
   iHoster Common Styles
   Header, Footer, Home Page, Common Components
================================================== */

:root {
  --primary-color: #0b2a63;
  --secondary-color: #2b5797;
  --accent-color: #0a7f26;

  --primary-dark: #0b2348;
  --primary-soft: #edf4ff;
  --accent-soft: #eef9f1;

  --bg-soft-green: #eef9f1;
  --accent-hover: #126d31;
  --bg-white: #ffffff;
  --bg-light: #f7faff;
  --bg-blue-soft: #f1f6ff;

  --text-dark:#14376f;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --border-color: #dbe4f0;
  --shadow-soft: 0 16px 38px rgba(11, 42, 99, 0.12);
  --shadow-card: 0 10px 26px rgba(11, 42, 99, 0.08);
  --border-radius-sm: 10px;
  --border-radius-md: 18px;
  --border-radius-lg: 28px;
  --transition: all 0.3s ease;


  --bg-section: #FFF8F0 ;
  --bg-section: #FFF1EC;

}

* {
  box-sizing: border-box;
     
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--bg-white);
  font-family: 'Poppins', sans-serif;
  padding-top: 78px !important;
}

.container{
  max-width: 1500px !important;
  margin: auto;
}

/* Global Typography */
button,
input,
textarea,
select,
option {
  font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
small,
strong,
label,
summary,
button {
  font-family: inherit;
}

a {
  text-decoration: none;
}

img {
  max-width: 330px;
}


/* Header */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  border-bottom: 0 !important;
  background:#ffffff;
}

.navbar {
  padding: 0px 0 !important;
}

.navbar-brand {
  color: var(--text-white) !important;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
}


/* Clean Header Brand */
.clean-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
  padding: 0;
  background: transparent;
}

.clean-brand:hover {
  color: #ffffff !important;
}

.clean-brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  background: #ffffff;
  border-radius: 14px;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.16);
}

.clean-brand-text {
  color: #ffffff;
  font-size: 28px;
  font-weight: 500 !important;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.clean-brand-text span {
  color: #5ee07a;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  background: var(--bg-white);
  border-radius: 14px;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.navbar-nav {
  gap: 10px;
}

.navbar-dark .navbar-nav .nav-link,
.nav-link {
  color: var(--primary-color) !important;
  font-size: 19px;
  font-weight: 500 !important;
  padding: 12px 14px !important;
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: 0 !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.show,
.nav-link:hover,
.nav-link.show {
  color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.13);
}

.header-actions {
  gap: 28px !important;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white) !important;
  font-weight: 500 !important;
  white-space: nowrap;
  margin-right: 6px;
}

.btn-signup{
  color: #ffffff !important;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 500 !important;
  box-shadow: 0 8px 22px rgba(22, 128, 58, 0.22);
  transition: var(--transition);
}

.btn-signup:hover {
  color: #ffffff !important;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-accent {
  color: var(--text-white) !important;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: var(--border-radius-sm);
  padding: 11px 24px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(10, 127, 38, 0.25);
  transition: var(--transition);
}

.btn-accent:hover {
  color: var(--text-white) !important;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Header after scroll */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(11, 42, 99, 0.12);
  border-bottom: 1px solid rgba(219, 228, 240, 0.9);
}

.site-header.scrolled .navbar-brand {
  color: var(--primary-color) !important;
}

.site-header.scrolled .clean-brand-text {
  color: var(--primary-color);
}

.site-header.scrolled .clean-brand-text span {
  color: var(--accent-color);
}

.site-header.scrolled .clean-brand-icon,
.site-header.scrolled .brand-icon {
  color: var(--text-white);
  background: var(--primary-color);
  box-shadow: 0 8px 22px rgba(11, 42, 99, 0.18);
}

.site-header.scrolled .navbar-dark .navbar-nav .nav-link,
.site-header.scrolled .nav-link {
  color: var(--primary-color) !important;
}

.site-header.scrolled .navbar-dark .navbar-nav .nav-link:hover,
.site-header.scrolled .navbar-dark .navbar-nav .nav-link.show,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.show {
  color: var(--primary-color) !important;
  background: var(--primary-soft);
}

.site-header.scrolled .header-phone {
  color: var(--primary-color) !important;
}

.site-header.scrolled .btn-signup {
  color: #ffffff !important;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.site-header.scrolled .btn-signup:hover {
  color: #ffffff !important;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.site-header.scrolled .btn-accent {
  color: var(--text-white) !important;
  background: var(--accent-color);
  border-color: var(--accent-color);
}



/* Mega Menu */
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0 24px 24px;
  background: transparent;
  border: 0;
}

.mega-menu .container {
  max-width: 1320px;
  background: var(--bg-white);
  border: 1px solid rgba(219, 228, 240, 0.8);
  border-radius: 0 0 28px 28px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(6, 27, 66, 0.22);
}

.mega-left {
  border-right: 1px solid var(--border-color);
  padding-right: 32px;
}

.mega-left h3 {
  color: var(--primary-color);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 18px;
}

.mega-left p {
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0;
}

.mega-item {
  display: flex;
  gap: 18px;
  color: var(--text-dark);
  border: 1px solid transparent;
  border-radius: var(--border-radius-md);
  padding: 18px;
  transition: var(--transition);
}

.mega-item:hover {
  background: var(--bg-light);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.mega-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-color);
  background: var(--bg-soft-green);
  border-radius: 18px;
  font-size: 26px;
}

.mega-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.mega-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 50px 20px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 127, 38, 0.20), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #0b2a63 0%, #123f8c 52%, #061b42 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -180px;
  background: rgba(10, 127, 38, 0.16);
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -160px;
  top: 90px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  transform: rotate(35deg);
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.shape-one {
  width: 320px;
  height: 260px;
  right: 18%;
  top: 22%;
}

.shape-two {
  width: 170px;
  height: 140px;
  right: 9%;
  top: 48%;
  opacity: 0.7;
}

.shape-three {
  width: 220px;
  height: 180px;
  left: 4%;
  bottom: 14%;
  opacity: 0.45;
}

.section-badge,
.hero-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 127, 38, 0.12);
  color: var(--accent-color);
  border: 1px solid rgba(10, 127, 38, 0.18);
  border-radius: 999px;
  padding: 9px 17px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
}

.hero-section .section-badge {
  color: #86efac;
  background: rgba(10, 127, 38, 0.18);
  border-color: rgba(134, 239, 172, 0.25);
}

.hero-section h1 {
  color:#8eeaa0 !important;
  font-size: 61px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
  margin-top: -40px;
}

.hero-section h1 span {
    border: 0 !important;
    border-bottom: 0 !important;

    text-decoration: none !important;
    text-decoration-line: none !important;

    box-shadow: none !important;
     color:#ffffff !important;

    background-image: none !important;
}


.hero-section h1 span::after {
    content: none !important;
    display: none !important;

    width: 0 !important;
    height: 0 !important;

    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.hero-text {
  /* max-width: 650px; */
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
   margin: 26px 0 22px;
}

.hero-actions .btn-accent {
  padding: 15px 30px;
  box-shadow: 0 14px 35px rgba(10, 127, 38, 0.35);
}

.btn-outline-primary-custom {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--border-radius-sm);
  padding: 13px 28px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary-custom:hover {
  color: var(--primary-color) !important;
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin-top: 20px;
}

.hero-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-benefits div:nth-child(2),
.hero-benefits div:nth-child(4) {
  border-right: 0;
}

.hero-benefits i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(10, 127, 38, 0.95);
  border-radius: 10px;
}

/* Hero Control Hub */
.hero-control-hub {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(10, 127, 38, 0.36), transparent 34%),
    radial-gradient(circle at bottom left, rgba(18, 63, 140, 0.65), transparent 38%),
    linear-gradient(135deg, rgba(6, 27, 66, 0.94) 0%, rgba(11, 42, 99, 0.94) 55%, rgba(18, 63, 140, 0.94) 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


.hero-control-hub::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: rgba(10, 127, 38, 0.22);
  border-radius: 50%;
}

.hub-top,
.hub-domain-card,
.hub-infrastructure-panel,
.hub-domain-logos {
  position: relative;
  z-index: 3;
}

.hub-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.hub-label {
  display: inline-block;
  color: #86efac;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hub-top h3 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.hub-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 16px;
  font-weight: 600;
}

.hub-status span {
  width: 9px;
  height: 9px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(10, 127, 38, 0.18);
}

.hub-domain-card {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border-radius: 20px;
  padding: 14px;
  margin-bottom: 20px;
  box-shadow: 0 18px 45px rgba(6, 27, 66, 0.22);
}

.domain-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  background: var(--bg-light);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
}

.domain-input-box i {
  color: var(--accent-color);
  font-size: 22px;
}

.hub-domain-card button {
  color: #ffffff;
  background: var(--accent-color);
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
       font-weight: 600;
  transition: var(--transition);
}

.hub-domain-card button:hover {
  background: var(--accent-hover);
}

/* =====================================================
   Hero Control Hub - Infrastructure Snapshot
===================================================== */

.hub-infrastructure-panel {
  width: 100%;
  margin-bottom: 16px;
  padding: 20px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(22, 128, 58, 0.17),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.07)
    );

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hub-infrastructure-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.hub-infrastructure-heading > div:first-child {
  min-width: 0;
}

.hub-infrastructure-heading > div:first-child > span {
  display: block;
  margin-bottom: 6px;
  color: #86efac;
  font-size: 15px;
       font-weight: 600;
  line-height: 1;
  letter-spacing: 0.95px;
  text-transform: uppercase;
}

.hub-infrastructure-heading h4 {
  max-width: 340px;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
       font-weight: 600;
  line-height: 1.42;
}

.hub-protection-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 16px;
       font-weight: 600;
}

.hub-protection-status > span {
  display: block;

  width: 8px;
  height: 8px;

  background: var(--accent-color);
  border-radius: 50%;

  box-shadow: 0 0 0 5px rgba(22, 128, 58, 0.16);
}

.hub-infrastructure-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hub-infrastructure-feature {
  display: flex;
  align-items: center;
  gap: 11px;

  min-width: 0;
  padding: 13px 12px;
}

.hub-infrastructure-feature:nth-child(odd) {
  padding-left: 0;
  padding-right: 16px;

  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hub-infrastructure-feature:nth-child(even) {
  padding-right: 0;
  padding-left: 16px;
}

.hub-infrastructure-feature:nth-child(1),
.hub-infrastructure-feature:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hub-infrastructure-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 40px;
  height: 40px;

  color: #86efac;

  background:
    linear-gradient(
      135deg,
      rgba(22, 128, 58, 0.22),
      rgba(22, 128, 58, 0.10)
    );

  border: 1px solid rgba(134, 239, 172, 0.14);
  border-radius: 12px;
}

.hub-infrastructure-icon i {
  font-size: 1.05rem;
}

.hub-infrastructure-feature > div {
  min-width: 0;
}

.hub-infrastructure-feature strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 18px;
       font-weight: 600;
  line-height: 1.3;
}

.hub-infrastructure-feature small {
  display: block;
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.hub-region-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;

  padding-top: 14px;
}

.hub-region-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 7px;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 16px;
       font-weight: 600;
}

.hub-region-strip i {
  color: #86efac;
  font-size: 0.72rem;
}


/* =====================================================
   Infrastructure Snapshot - Responsive
===================================================== */

@media (max-width: 1399.98px) {

  .hub-infrastructure-panel {
    padding: 18px;
  }

  .hub-infrastructure-feature {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hub-infrastructure-feature strong {
    font-size: 0.72rem;
  }

  .hub-infrastructure-feature small {
    font-size: 0.56rem;
  }
}

@media (max-width: 1199.98px) {

  .hub-infrastructure-heading {
    flex-direction: column;
    gap: 10px;
  }

  .hub-protection-status {
    align-self: flex-start;
  }

  .hub-infrastructure-features {
    grid-template-columns: 1fr;
  }

  .hub-infrastructure-feature,
  .hub-infrastructure-feature:nth-child(odd),
  .hub-infrastructure-feature:nth-child(even) {
    padding: 11px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hub-infrastructure-feature:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 991.98px) {

  .hub-infrastructure-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-infrastructure-feature:nth-child(odd) {
    padding-left: 0;
    padding-right: 16px;

    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hub-infrastructure-feature:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
  }

  .hub-infrastructure-feature:nth-child(1),
  .hub-infrastructure-feature:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hub-infrastructure-feature:nth-child(3),
  .hub-infrastructure-feature:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {

  .hub-infrastructure-panel {
    padding: 16px;
    border-radius: 19px;
  }

  .hub-infrastructure-features {
    grid-template-columns: 1fr;
  }

  .hub-infrastructure-feature,
  .hub-infrastructure-feature:nth-child(odd),
  .hub-infrastructure-feature:nth-child(even) {
    padding: 11px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hub-infrastructure-feature:last-child {
    border-bottom: 0;
  }

  .hub-region-strip {
    gap: 6px;
  }

  .hub-region-strip span {
    padding: 7px 4px;
    font-size: 0.57rem;
  }
}



/* =====================================================
   Hero Control Hub - Domain Logo Cards
===================================================== */

.hub-domain-logos {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
}


/* Individual domain card */

.hub-domain-logo {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 88px;
    padding: 13px 8px 11px;

    overflow: hidden;

    color: var(--primary-color);
    background: #ffffff;

    border: 1px solid rgba(219, 228, 240, 0.95);
    border-radius: 15px;

    box-shadow:
        0 13px 30px rgba(6, 27, 66, 0.16);

    text-align: center;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Small top highlight */

.hub-domain-logo::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 34px;
    height: 3px;

    background: var(--accent-color);
    border-radius: 0 0 4px 4px;

    opacity: 0;

    transform: translateX(-50%);

    transition:
        width 0.25s ease,
        opacity 0.25s ease;
}


/* Hover */

.hub-domain-logo:hover {
    color: var(--primary-color);

    transform: translateY(-4px);

    border-color: rgba(22, 128, 58, 0.28);

    box-shadow:
        0 18px 38px rgba(6, 27, 66, 0.22);
}

.hub-domain-logo:hover::before {
    width: 58px;
    opacity: 1;
}


/* Domain logo image */

.hub-domain-logo img {
    display: block;

    width: auto;
    max-width: 76px;
    height: 36px;

    margin: 0 auto 9px;

    object-fit: contain;
    object-position: center;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.hub-domain-logo:hover img {
    transform: scale(1.06);
}


/* Domain name under logo */

.hub-domain-logo small {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--text-muted);
    font-size: 10px;
         font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    white-space: nowrap;
}


/* =====================================================
   Optional: Different Logo Width Adjustments
===================================================== */

.hub-domain-logo:nth-child(1) img {
    max-width: 72px;
}

.hub-domain-logo:nth-child(2) img {
    max-width: 82px;
}

.hub-domain-logo:nth-child(3) img {
    max-width: 70px;
}

.hub-domain-logo:nth-child(4) img {
    max-width: 72px;
}

.hub-domain-logo:nth-child(5) img {
    max-width: 78px;
}

.hub-domain-logo:nth-child(6) img {
    max-width: 66px;
}


/* =====================================================
   Large Laptop
===================================================== */

@media (max-width: 1399.98px) {

    .hub-domain-logos {
        gap: 8px;
    }

    .hub-domain-logo {
        min-height: 82px;
        padding: 12px 6px 10px;
    }

    .hub-domain-logo img {
        max-width: 66px;
        height: 32px;
    }

    .hub-domain-logo small {
        font-size: 0.48rem;
        letter-spacing: 0.4px;
    }
}


/* =====================================================
   Tablet / Smaller Laptop
===================================================== */

@media (max-width: 1199.98px) {

    .hub-domain-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hub-domain-logo {
        min-height: 80px;
    }

    .hub-domain-logo img {
        max-width: 75px;
        height: 34px;
    }

    .hub-domain-logo small {
        font-size: 0.52rem;
    }
}


/* =====================================================
   Tablet
===================================================== */

@media (max-width: 991.98px) {

    .hub-domain-logos {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .hub-domain-logo {
        min-height: 86px;
    }
}


/* =====================================================
   Mobile
===================================================== */

@media (max-width: 767.98px) {

    .hub-domain-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;

        margin-top: 15px;
    }

    .hub-domain-logo {
        min-height: 76px;
        padding: 10px 6px 9px;

        border-radius: 13px;
    }

    .hub-domain-logo img {
        max-width: 68px;
        height: 30px;

        margin-bottom: 7px;
    }

    .hub-domain-logo small {
        font-size: 0.48rem;
        letter-spacing: 0.35px;
    }
}


/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 420px) {

    .hub-domain-logos {
        gap: 7px;
    }

    .hub-domain-logo {
        min-height: 70px;
        padding: 9px 4px 8px;
    }

    .hub-domain-logo img {
        max-width: 58px;
        height: 27px;
    }

    .hub-domain-logo small {
        font-size: 0.43rem;
        letter-spacing: 0.2px;
    }
}


/* =====================================================
   Reduced Motion
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .hub-domain-logo,
    .hub-domain-logo::before,
    .hub-domain-logo img {
        transition: none;
    }
}


/* =====================================================
   Home Page - Animated Trust Strip
===================================================== */

.hosting-trust-strip {
    position: relative;
    padding: 20px;
    overflow: hidden;
    /* border-bottom: 1px solid #dce6f1; */
    background: #ffffff;
}

.hosting-trust-strip .container{
  max-width: 1700px;
}

.trust-strip-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;

    width: 100%;
    max-width: 760px;

    margin: 0 auto 28px;
    text-align: center;
}

.trust-strip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: fit-content;
    margin: 0 auto 12px;
    padding: 8px 15px;

    color: var(--accent-color);
    background: #eef9f2;

    border: 1px solid #cee8d8;
    border-radius: 999px;

    font-size: 0.76rem;
         font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-strip-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.trust-strip-intro p {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
}

@media (max-width: 575.98px) {
    .trust-strip-intro {
        max-width: 100%;
        margin-bottom: 22px;
        padding: 0 10px;
    }

    .trust-strip-badge {
        max-width: 100%;
        justify-content: center;
        padding: 7px 12px;

        font-size: 0.67rem;
        letter-spacing: 0.55px;
        white-space: normal;
        text-align: center;
    }

    .trust-strip-intro p {
        max-width: 100%;

        font-size: 0.84rem;
        line-height: 1.6;
    }
}

/* Metrics container */

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    /* border: 1px solid #dce6f1; */
    /* border-radius: 24px; */
    /* background: rgba(255, 255, 255, 0.93); */
    /* box-shadow:
        0 18px 42px rgba(11, 42, 99, 0.08); */
}

/* Individual metric */

.trust-metric {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 0;
    min-height: 128px;
    padding: 24px 22px;

    opacity: 0;
    transform: translateY(16px);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.trust-metric + .trust-metric {
    border-left: 1px solid #e1e9f2;
}

.trust-metric:hover {
    z-index: 2;

    background:
        linear-gradient(
            135deg,
            #f2f7ff,
            #eef9f3
        );
}

.trust-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    color: var(--accent-color);

    font-size: 1.35rem;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #e8f7ee,
            #edf4ff
        );

    box-shadow:
        inset 0 0 0 1px rgba(22, 128, 58, 0.08);
}

.trust-metric-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.trust-number {
    display: block;

    color: var(--primary-color);

    font-size: clamp(1.75rem, 2.6vw, 2.45rem);
         font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;

    font-variant-numeric: tabular-nums;
}

.trust-number-static {
    font-size: clamp(1.4rem, 2vw, 1.85rem); 
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.trust-metric-content span {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 16px;
         font-weight: 600;
    line-height: 1.4;
}

/* Slightly highlight first item */

.trust-metric:first-child .trust-number {
    color: var(--accent-color);
}

.trust-metric:first-child .trust-metric-icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1b9850,
            #126d3b
        );

    box-shadow:
        0 10px 24px rgba(22, 128, 58, 0.20);
}

/* Entrance animation */

.hosting-trust-strip.trust-visible .trust-metric {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        background-color 0.25s ease;
}

.hosting-trust-strip.trust-visible .trust-metric:nth-child(2) {
    transition-delay: 0.08s;
}

.hosting-trust-strip.trust-visible .trust-metric:nth-child(3) {
    transition-delay: 0.16s;
}

.hosting-trust-strip.trust-visible .trust-metric:nth-child(4) {
    transition-delay: 0.24s;
}

/* Tablet */

@media (max-width: 991.98px) {

    .hosting-trust-strip {
        padding: 38px 0 42px;
    }

    .trust-strip-intro {
        flex-direction: column;
        justify-content: center;

        margin-bottom: 24px;

        text-align: center;
    }

    .trust-strip-intro p {
        text-align: center;
    }

    .trust-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-metric:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #e1e9f2;
    }

    .trust-metric:nth-child(4) {
        border-top: 1px solid #e1e9f2;
    }
}

/* Mobile */

@media (max-width: 575.98px) {

    .hosting-trust-strip {
        padding: 32px 0 36px;
    }

.trust-metrics-grid {
        grid-template-columns: 1fr;

        border-radius: 19px;
    }

    .trust-metric {
        justify-content: flex-start;

        min-height: 105px;
        padding: 20px;
    }

    .trust-metric + .trust-metric,
    .trust-metric:nth-child(3),
    .trust-metric:nth-child(4) {
        border-top: 1px solid #e1e9f2;
        border-left: 0;
    }

    .trust-metric-icon {
        width: 48px;
        height: 48px;

        border-radius: 14px;
    }

    .trust-number {
        font-size: 2rem;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .trust-metric {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* Common Sections */

.section-padding {
  padding: 50px 20px !important;
}

.bg-light-section {
  background: #FFF8F0;
}

.section-title {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.section-title h2 {
  color: var(--primary-color);
  font-size: 45px;
       font-weight: 600;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}


#plans .section-title h2{
  font-size: 42px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.7;
}


/* =====================================================
   Home Page - Hosting Journey (Dark Version)
===================================================== */

.hosting-journey-section {
    position: relative;
    padding: 50px 20px 105px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(66, 133, 244, 0.10), transparent 26%),
        radial-gradient(circle at 92% 82%, rgba(22, 128, 58, 0.12), transparent 28%),
        linear-gradient(135deg, #071f43 0%, #0b2d5c 55%, #0a274f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hosting-journey-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -270px;
    left: -160px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(255, 255, 255, 0.018),
        0 0 0 120px rgba(255, 255, 255, 0.012);
    pointer-events: none;
}

.hosting-journey-section .container {
    position: relative;
    z-index: 2;
}

/* =====================================================
   Section Heading
===================================================== */

.hosting-journey-section .section-title {
    max-width: 1500px;
    margin-bottom: 30px;
}

.journey-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    color: #86efac !important;
    font-size: 0.70rem;
         font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    border: 1px solid rgba(121, 227, 155, 0.25);
    border-radius: 999px;
    background: rgba(121, 227, 155, 0.08);
}

.hosting-journey-section .section-title h2 {
    color: #ffffff;
    /* font-size: clamp(2.25rem, 4vw, 3.5rem); */
         font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-size: 45px;
}



.hosting-journey-section .section-title p {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.74);
}

/* =====================================================
   Journey Layout
===================================================== */

.journey-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 24px;
}


.journey-wrapper::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 77px;
    right: 9%;
    left: 9%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08),
        rgba(121, 227, 155, 0.35),
        rgba(255, 255, 255, 0.08)
    );
    display: none !important;
}

/* =====================================================
   Journey Card
===================================================== */

.journey-card {
    position: relative;
    z-index: 2;
    
    flex: 0 0 calc(33.333% - 16px); 
    max-width: 420px; 
    min-height: 340px;
    padding: 48px 30px 34px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 44, 86, 0.96), rgba(10, 34, 67, 0.94));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.journey-card::before {
    content: "";
    position: absolute;
    top: -47px;
    right: -47px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(121, 227, 155, 0.13),
        rgba(121, 227, 155, 0.05)
    );
    transition: transform 0.35s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(121, 227, 155, 0.28);
    box-shadow: 0 25px 58px rgba(0, 0, 0, 0.26);
}

.journey-card:hover::before {
    transform: scale(1.08);
}

/* highlighted middle/selected card optional */
.journey-card.active {
    border-color: rgba(121, 227, 155, 0.30);
    box-shadow:
        0 25px 58px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(121, 227, 155, 0.10);
}

/* =====================================================
   Number
===================================================== */

.journey-number {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 22px;
    color: rgba(121, 227, 155, 0.72);
    font-size: 1.8rem;
         font-weight: 600;
    line-height: 1;
    letter-spacing: -0.5px;
    background: transparent;
    border: 0;
    transition: color 0.28s ease, transform 0.28s ease;
}

.journey-card:hover .journey-number {
    color: #79e39b;
    transform: scale(1.08);
}

/* =====================================================
   Icon
===================================================== */

.journey-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: #79e39b;
    font-size: 32px;
    border: 1px solid rgba(121, 227, 155, 0.14);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(121, 227, 155, 0.10), rgba(255, 255, 255, 0.03));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    transition: color 0.28s ease, transform 0.28s ease, background-color 0.28s ease;
}

.journey-card:hover .journey-icon {
    color: #ffffff;
    transform: translateY(-4px);
    background: linear-gradient(135deg, #1a9750, #126d3b);
}

/* =====================================================
   Text
===================================================== */

.journey-card h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 26px;
         font-weight: 600;
    line-height: 1.3;
}

.journey-card p {
    position: relative;
    z-index: 2;
    max-width: 290px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.72;
}

/* =====================================================
   Tablet
===================================================== */

@media (max-width: 991.98px) {
    .hosting-journey-section {
        padding: 82px 20px 88px;
    }

    .journey-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-wrapper::before {
        display: none;
    }

    .journey-card {
        min-height: 320px;
        flex: 0 0 calc(50% - 12px);
    }
}

/* =====================================================
   Mobile
===================================================== */

@media (max-width: 767.98px) {
    .hosting-journey-section {
        padding: 68px 12px 72px;
    }

    .hosting-journey-section .section-title {
        margin-bottom: 40px;
    }

    .hosting-journey-section .section-title h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
        letter-spacing: -1.2px;
    }

    .hosting-journey-section .section-title p {
        font-size: 0.90rem;
    }

    .journey-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        flex-direction: column;
        align-items: center;
    }

    .journey-card {
        min-height: auto;
        padding: 38px 24px 30px;
        flex: 0 0 100%; 
        width: 100%;
    }

    .journey-icon {
        width: 64px;
        height: 64px;
        font-size: 27px;
    }

    .journey-card h4 {
        font-size: 1.18rem;
    }

    .journey-card p {
        font-size: 0.87rem;
    }
}

@media (max-width: 480px) {
    .hosting-journey-section {
        padding: 58px 10px 62px;
    }

    .journey-card {
        padding: 34px 20px 27px;
    }

    .journey-card::before {
        width: 125px;
        height: 125px;
    }

    .journey-number {
        top: 16px;
        right: 19px;
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journey-card,
    .journey-card::before,
    .journey-number,
    .journey-icon {
        transition: none;
    }
}


/* Pricing */
.pricing-card {
  position: relative;
  height: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.pricing-card.popular {
  border: 2px solid var(--accent-color);
  box-shadow: 0 18px 45px rgba(10, 127, 38, 0.13);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 95px;
  color: var(--text-white);
  background: var(--accent-color);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
       font-weight: 600;
}

.pricing-card h4 {
  color: var(--primary-color);
       font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card p {
  min-height: 48px;
  color: var(--text-muted);
}

.price {
  color: var(--primary-color);
  font-size: 38px;
       font-weight: 600;
  margin: 22px 0;
}

.price span {
  color: var(--text-muted);
  font-size: 16px;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.pricing-card li {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-card li i {
  color: var(--accent-color);
  margin-right: 8px;
}

.btn-plan {
  width: 100%;
  color: var(--text-white) !important;
  background: var(--accent-color); 
  border-radius: var(--border-radius-sm);
  padding: 12px;
       font-weight: 600;
  transition: var(--transition);
}

.btn-plan:hover {
  color: var(--text-white) !important;
  background: var(--accent-hover); 
  transform: translateY(-2px);
}

/* Features */
.feature-card {
  height: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.feature-card i {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background: var(--bg-soft-green);
  border-radius: 18px;
  font-size: 30px;
  margin-bottom: 22px;
}

.feature-card h4 {
  color: var(--primary-color);
       font-weight: 600;
  font-size: 22px !important;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 18px;
}

/* Customer Feedback */
.feedback-section {
  background:
    radial-gradient(circle at top left, rgba(10, 127, 38, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.feedback-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feedback-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  top: -45px;
  background: rgba(10, 127, 38, 0.08);
  border-radius: 50%;
}

.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.featured-feedback {
  border: 2px solid var(--accent-color);
  box-shadow: 0 18px 45px rgba(10, 127, 38, 0.13);
}

.feedback-top {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.customer-avatar {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  font-size: 18px;
       font-weight: 600;
}

.feedback-top h5 {
  color: var(--primary-color);
       font-weight: 600;
  margin-bottom: 3px;
}

.feedback-top span {
  color: var(--text-muted);
  font-size: 14px;
       font-weight: 600;
}

.stars {
  position: relative;
  z-index: 2;
  color: #f59e0b;
  margin-bottom: 16px;
}

.stars i {
  color: #f59e0b !important;
  margin-right: 3px;
}

.feedback-card p {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
       font-weight: 600;
  margin-bottom: 0;
}

/* =====================================================
   Home Page - Who We Are
   Content Left / Image Right
===================================================== */

.ih-about-section {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 6% 18%,
            rgba(43, 87, 151, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 78%,
            rgba(22, 128, 58, 0.09),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #f5f9ff 0%,
            #ffffff 52%,
            #f1faf5 100%
        );
}

.ih-about-section .container {
    position: relative;
    z-index: 3;
}


/* =====================================================
   Background Decoration
===================================================== */

.ih-about-bg-circle {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}

.ih-about-bg-circle-one {
    width: 420px;
    height: 420px;

    top: -260px;
    right: -145px;

    border: 1px solid rgba(22, 128, 58, 0.10);

    box-shadow:
        0 0 0 65px rgba(22, 128, 58, 0.025),
        0 0 0 130px rgba(43, 87, 151, 0.018);
}

.ih-about-bg-circle-two {
    width: 270px;
    height: 270px;

    bottom: -160px;
    left: -110px;

    background: rgba(43, 87, 151, 0.045);
}


/* =====================================================
   Left Image Visual
===================================================== */

.ih-about-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 20px 35px 38px 5px;
}

.ih-about-image-frame {
    position: relative;
    overflow: hidden;
    /* min-height: 610px; */
    border-radius: 34px;
    background: #dfe9f4;
    box-shadow:
        0 32px 75px rgba(11, 42, 99, 0.18),
        0 0 0 9px rgba(255, 255, 255, 0.62);
    width: 100%;
    height: auto;
}

.ih-about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 31, 67, 0.02) 25%,
            rgba(7, 31, 67, 0.30) 100%
        );

    pointer-events: none;
}

.ih-about-image {
    display: block;
    width: 100%;
    height: 610px;
    object-fit: cover;
    object-position: top;
}


/* =====================================================
   Image Bottom Status
===================================================== */

.ih-about-image-status {
    position: absolute;
    z-index: 5;

    right: 0;
    bottom: 0;
    left: 45px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 15px 18px;

    border: 1px solid rgba(212, 225, 237, 0.95);
    border-radius: 17px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.96),
            rgba(238, 249, 242, 0.96)
        );

    box-shadow:
        0 18px 38px rgba(11, 42, 99, 0.13);

    backdrop-filter: blur(10px);
}

.ih-about-status-dot {
    position: relative;

    width: 11px;
    height: 11px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--accent-color);

    box-shadow:
        0 0 0 6px rgba(22, 128, 58, 0.12);
}

.ih-about-image-status > div {
    display: flex;
    flex-direction: column;
}

.ih-about-image-status strong {
    color: var(--primary-color);

    font-size: 0.78rem;
         font-weight: 600;
}

.ih-about-image-status small {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 0.64rem;
}


/* =====================================================
   Right Content
===================================================== */

.ih-about-content {
    max-width: 720px;

    margin-right: auto;
    margin-left: 0;
}

.ih-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 20px;
    padding: 8px 14px;

    color: var(--accent-color);

    font-size: 0.70rem;
         font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 1px solid #cce8d7;
    border-radius: 999px;

    background: rgba(238, 249, 241, 0.92);
}

.ih-about-content h2 {
    max-width: 720px;
    margin: 0 0 22px;

    color: var(--primary-color);

    font-size: clamp(2.7rem, 4.2vw, 4.15rem);
         font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2.2px;
}

.ih-about-content h2 span {
    display: block;
    color: #16894a;
         font-weight: 600;
}

.ih-about-lead {
    max-width: 800px;
    margin: 0 0 12px;
    color: #304b6d;
    font-size: 18px;
         font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0px;
}

.ih-about-description {
    max-width: 900ox;
    margin: 0 0 27px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
    /* letter-spacing: -0.7px; */
}


/* =====================================================
   Quote
===================================================== */

.ih-about-quote {
    position: relative;
    margin-bottom: 15px;
    padding: 23px 25px 23px 64px;
    border-radius: 20px;
    background: #eef9f2f0;
}

.ih-about-quote > i {
    position: absolute;

    top: 18px;
    left: 21px;

    color: rgba(22, 128, 58, 0.35);

    font-size: 2rem;
}

.ih-about-quote p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 18px;
         font-weight: 600;
    line-height: 1.55;
}


/* =====================================================
   Principles
===================================================== */

.ih-about-principles {
    border-top: 1px solid #d8e3ed;
}

.ih-about-principle {
    display: grid;
    grid-template-columns: 32px 44px minmax(0, 1fr);
    align-items: start;
    gap: 19px;
    padding: 18px 0;
    border-bottom: 1px solid #d8e3ed;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.ih-about-principle:hover {
    transform: translateX(7px);

    border-color: rgba(22, 128, 58, 0.30);
}

.ih-about-number {
    padding-top: 6px;
    color: #98a8ba;
    font-size: 16px;
         font-weight: 600;
}

.ih-about-principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    font-size: 22px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #e9f7ee,
            #edf4fc
        );
    box-shadow:
        inset 0 0 0 1px rgba(22, 128, 58, 0.08);
    /* margin-right: 22px; */
}

.ih-about-principle h3 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 22px;
         font-weight: 600;
}

.ih-about-principle p {
    margin: 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.65;
}


/* =====================================================
   Bottom Link and Signature
===================================================== */

.ih-about-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 25px;
}

.ih-about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    color: #ffffff !important;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    font-size: 18px;
         font-weight: 600;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(22, 128, 58, 0.22);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ih-about-button i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}


.ih-about-button:hover {
    color: #ffffff !important;
    background: var(--accent-hover);
    border-color: var(--accent-hover);

    transform: translateY(-3px);

    box-shadow: 0 17px 36px rgba(22, 128, 58, 0.30);
}

.ih-about-button:hover i {
    transform: translate(3px, -3px);
}


/* =====================================================
   Tablet
===================================================== */

@media (max-width: 991.98px) {

    .ih-about-section {
        padding: 88px 0;
    }

    .ih-about-visual {
        margin-right: 0;
        margin-left: auto;
        padding: 20px 5px 38px 35px;
    }

    .ih-about-content {
        max-width: 760px;
        margin: 10px auto 0;
    }

    .ih-about-content h2 {
        max-width: 700px;
        font-size: clamp(2.65rem, 7vw, 3.8rem);
        line-height: 1.05;
        letter-spacing: -2.1px;
    }

    .ih-about-image-frame,
    .ih-about-image {
        height: 560px;
        min-height: 560px;
    }
}


/* =====================================================
   Mobile
===================================================== */

@media (max-width: 767.98px) {

    .ih-about-content h2 {
        font-size: clamp(2.15rem, 9vw, 3rem);
             font-weight: 600;
        line-height: 1.08;
        letter-spacing: -1.4px;
    }

    .ih-about-section {
        padding: 70px 0;
    }

    .ih-about-visual {
        padding: 0 0 40px;
    }

    .ih-about-image-frame {
        min-height: 430px;

        border-radius: 25px;
    }

    .ih-about-image {
        height: 430px;
    }

    .ih-about-floating-card-one {
        top: 65px;
        right: auto;
        left: -18px;
    }

    .ih-about-floating-card-two {
        right: -18px;
        bottom: 115px;
        left: auto;
    }

    .ih-about-image-status {
        right: 45px;
        left: 0;
    }

    .ih-about-lead {
        font-size: 0.98rem;
    }

    .ih-about-description {
        font-size: 0.88rem;
    }

    .ih-about-quote {
        padding: 21px 20px 21px 55px;
    }

    .ih-about-quote p {
        font-size: 1rem;
    }

    .ih-about-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 575.98px) {

    .ih-about-button {
        width: 100%;
        min-height: 50px;
    }
}


/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 480px) {

    .ih-about-section {
        padding: 60px 0;
    }

    .ih-about-image-frame {
        min-height: 390px;
    }

   .ih-about-image {
        width: 100%;
        height: 390px;
        object-fit: cover;
        object-position: 58% center;
    }

    .ih-about-floating-card {
        min-width: 185px;

        padding: 10px 11px;
    }

    .ih-about-floating-card > span {
        width: 36px;
        height: 36px;
    }

    .ih-about-floating-card strong {
        font-size: 0.70rem;
    }

    .ih-about-floating-card small {
        font-size: 0.57rem;
    }

    .ih-about-floating-card-one {
        right: 5px;
    }

    .ih-about-floating-card-two {
        left: 5px;
    }

    .ih-about-content h2 {
        font-size: clamp(2.05rem, 9.5vw, 2.65rem);
        letter-spacing: -1.2px;
    }

    .ih-about-principle {
        grid-template-columns: 25px 37px minmax(0, 1fr);
        gap: 10px;
    }

    .ih-about-principle-icon {
        width: 36px;
        height: 36px;
    }
}


/* =====================================================
   Reduced Motion
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .ih-about-principle,
    .ih-about-link,
    .ih-about-floating-card {
        transition: none;
    }
}

/* FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  /* background:
    radial-gradient(circle at top left, rgba(10, 127, 38, 0.05), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%); */
}

.faq-section .section-title {
  margin-bottom: 38px;
}

.faq-photo-box {
    position: sticky;
    top: 120px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background:
        radial-gradient(circle at top right, rgba(10, 127, 38, 0.08), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 18px 45px rgba(11, 42, 99, 0.10);
    transition: transform 0.3s ease;
}

.faq-photo-box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  top: -55px;
  background: rgba(10, 127, 38, 0.09);
  border-radius: 50%;
}

.faq-photo-box img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  margin: 0 auto;
}

.custom-accordion {
  max-width: 100%;
  margin: 0;
}

.accordion-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md) !important;
  margin-bottom: 16px;
  box-shadow: 0 10px 28px rgba(11, 42, 99, 0.08);
}

.accordion-button {
  color: var(--primary-color);
  background: #ffffff;
  padding: 22px;
       font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: var(--bg-soft-green);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--border-color);
  box-shadow: none;
}

.accordion-body {
  color: var(--text-muted);
  background: #ffffff;
  padding: 0px 22px 22px;
  font-weight: 1500;
  line-height: 1.8;
}

.ask-question-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap; 
    margin-top: 24px;
    padding: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(10, 127, 38, 0.10),
            transparent 32%
        ),
        #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(11, 42, 99, 0.08);
}


@media (max-width: 767.98px) {
    .ask-question-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 22px 20px 22px 24px;
    }

    .ask-question-box .btn {
        width: 100%;
    }
}


.ask-question-box h4 {
  color: var(--primary-color);
       font-weight: 600;
  margin-bottom: 8px;
}

.ask-question-box p {
  color: var(--text-muted);
  line-height: 1.6;
       font-weight: 600;
  margin-bottom: 0;
  max-width: 500px;
}

.ask-modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(6, 27, 66, 0.22);
}

.ask-modal-content .modal-header {
  color: #ffffff;
  background: var(--primary-color);
  padding: 20px 24px;
}

.ask-modal-content .modal-title {
       font-weight: 600;
}

.ask-modal-content .btn-close {
  filter: invert(1);
  opacity: 1;
}

.ask-modal-content .modal-body {
  padding: 26px;
}

.ask-modal-content .form-control {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 13px 14px;
}

.ask-modal-content .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(10, 127, 38, 0.12);
}

/* Final Chat CTA - Simple Clean Style */
.chat-cta-section {
  padding: 50px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.chat-cta-content {
  max-width: 820px;
  margin: 0 auto;
}

.chat-cta-content h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
       font-weight: 600;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.chat-cta-content p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.btn-start-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--primary-color) !important;
  border: 1px solid #ffffff;
  border-radius: 14px;
  padding: 15px 32px;
       font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.btn-start-chat:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff !important;
  transform: translateY(-3px);
}

.btn-start-chat i {
  font-size: 20px;
}

@media (max-width: 767px) {
.hero-section {
    padding: 48px 0 52px !important;
  }


  .hero-section h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .chat-cta-section {
    padding: 65px 0;
  }

  .chat-cta-content h2 {
    font-size: 32px;
  }

  .chat-cta-content p {
    font-size: 16px;
  }

  .btn-start-chat {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--text-white);
  background:
    radial-gradient(circle at top left, rgba(10, 127, 38, 0.18), transparent 32%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 58%, var(--secondary-color) 100%);
  padding: 30px 0 32px;
}

.site-footer::before {
  /* content: ""; */
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -210px;
  background: rgba(10, 127, 38, 0.18);
  border-radius: 50%;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white) !important;
  font-size: 30px;
       font-weight: 600;
  margin-bottom: 22px;
}


/* Clean Footer Brand */
.clean-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff !important;
  margin-bottom: 24px;
}

.clean-footer-brand:hover {
  color: #ffffff !important;
  padding-left: 0 !important;
}

.clean-footer-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  background: #ffffff;
  border-radius: 15px;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.14);
}

.clean-footer-text {
  color: #ffffff;
  font-size: 29px;
       font-weight: 600;
  letter-spacing: -0.6px;
}

.clean-footer-text span {
  color: #5ee07a;
}

.footer-brand .brand-icon {
  color: var(--primary-color);
  background: var(--bg-white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  line-height: 1.85;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin-bottom: 11px;
}

.footer-contact i {
  color: #5ee07a;
  font-size: 15px;
  margin-right: 9px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white) !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  padding-left: 0;
}

.site-footer h5 {
  position: relative;
  color: var(--text-white) !important;
  font-size: 19px;
       font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 12px;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 999px;
}

.site-footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.site-footer li {
  margin-bottom: 13px;
}

.site-footer a {
  color: rgba(255, 255, 255) !important;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--text-white) !important;
  padding-left: 4px;
}

.site-footer hr {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18);
  margin: 46px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400 !important;
}

/* Responsive */
@media (min-width: 992px) {
  .site-header .container {
    max-width: 1360px;
  }

  .clean-brand {
    margin-right: 48px !important;
  }

  .navbar-collapse {
    justify-content: space-between;
  }

  .navbar-nav {
    gap: 26px !important;
  }

  .navbar-nav.mx-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .navbar-dark .navbar-nav .nav-link,
  .nav-link {
    padding: 12px 8px !important;
    font-size: 19px;
    white-space: nowrap;
  }

  .header-actions {
    flex-shrink: 0;
    align-items: center;
    margin-left: 52px !important;
    gap: 28px !important;
  }

  .header-actions .btn,
  .btn-signup,
  .btn-accent {
    white-space: nowrap;
  }

  .header-actions .btn-signup {
    min-width: 92px;
    text-align: center;
    font-weight: 500 !important;
    font-size: 16px;
  }

  .header-actions .btn-accent {
    min-width: 92px;
  text-align: center;
  font-weight: 500 !important;
  }

  .mega-dropdown {
    position: static !important;
  }

  .mega-dropdown .mega-menu {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(10px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    z-index: 99999 !important;
  }

  .mega-dropdown:hover .mega-menu,
  .mega-dropdown.mega-open .mega-menu,
  .mega-dropdown .mega-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: none !important;
  }

  .mega-dropdown .mega-menu .container {
    pointer-events: auto !important;
  }

  .mega-dropdown .mega-menu::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
  }

  .mega-dropdown:hover > .nav-link,
  .mega-dropdown.mega-open > .nav-link {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.13);
  }

  .site-header.scrolled .mega-dropdown:hover > .nav-link,
  .site-header.scrolled .mega-dropdown.mega-open > .nav-link {
    color: var(--primary-color) !important;
    background: var(--primary-soft);
  }
}


@media (min-width: 992px) and (max-width: 1400px) {
  .header-phone {
    display: none !important;
  }

  .clean-brand {
    margin-right: 28px;
  }

  .navbar-nav {
    gap: 14px;
  }

  .header-actions {
    margin-left: 28px;
    gap: 14px;
  }

  .header-actions .btn-accent {
    min-width: 130px;
  }
}

@media (min-width: 992px) and (max-width: 1250px) {
  .navbar-dark .navbar-nav .nav-link,
  .nav-link {
    font-size: 14px;
    padding: 10px 8px !important;
  }

  .btn-signup,
  .btn-accent {
    padding: 10px 18px;
  }
}

@media (max-width: 1199px) {
  .header-phone {
    display: none !important;
  }

  .hero-section h1 {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 72px !important;
  }

  html {
    scroll-padding-top: 84px;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar-toggler {
    background: #ffffff;
    border: 1px solid rgba(11, 42, 99, 0.35);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(10, 127, 38, 0.15);
  }

  .navbar-toggler-icon {
    filter: invert(12%) sepia(51%) saturate(2108%) hue-rotate(201deg) brightness(88%) contrast(98%);
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 16px;
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 22px 55px rgba(6, 27, 66, 0.28);
  }

  .navbar-nav {
    gap: 6px;
  }

  .navbar-collapse .nav-link,
  .site-header.scrolled .navbar-collapse .nav-link,
  .site-header.scrolled .navbar-dark .navbar-nav .nav-link {
    color: var(--primary-color) !important;
    background: transparent;
    padding: 13px 14px !important;
  }

  .navbar-collapse .nav-link:hover,
  .site-header.scrolled .navbar-collapse .nav-link:hover,
  .site-header.scrolled .navbar-collapse .nav-link.show {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px;
    margin-top: 16px;
  }

  .header-actions .btn {
    width: 100%;
    text-align: center;
  }

  .mega-menu {
    position: static !important;
    width: 100%;
    background: transparent;
    padding: 10px 0 0;
  }

  .mega-menu .container {
    width: 100%;
    border-radius: 18px;
    padding: 20px;
    box-shadow: none;
  }

  .mega-left {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .hero-section {
    padding: 62px 0 55px !important;
  }

  .hero-section h1 {
    font-size: 44px;
  }

  .hero-control-hub {
    min-height: auto;
    margin-top: 20px;
  }

  .section-title h2,
  .info-panel h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .journey-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-wrapper::before {
    display: none;
  }

  .faq-photo-box {
    max-width: 420px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
.hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits div {
    border-right: 0;
  }

  .hero-control-hub {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    animation: none;
    min-height: auto;
  }

  .hub-top {
    flex-direction: column;
    gap: 12px;
  }

  .hub-domain-card {
    flex-direction: column;
  }

  .hub-domain-card button {
    padding: 14px 18px;
  }


  .section-padding {
    padding: 65px 0;
  }

  .section-title h2,
  .info-panel h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .plan-finder-box {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    font-size: 23px;
  }

  .clean-brand-icon,
  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .clean-brand-text {
    font-size: 21px;
    font-weight: 500 !important;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .price {
    font-size: 32px;
  }

  .journey-wrapper {
    grid-template-columns: 1fr;
  }

  .journey-card {
    padding: 28px 22px;
  }

  .plan-preview-card {
    flex-direction: column;
    text-align: center;
  }

  .faq-photo-box {
    padding: 18px;
    border-radius: 24px;
  }

  .faq-photo-box img {
    max-width: 300px;
  }

  .ask-question-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .ask-question-box .btn {
    width: 100%;
  }

  .site-footer {
    padding: 65px 0 28px;
  }

  .footer-brand {
    font-size: 26px;
  }

  .clean-footer-icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .clean-footer-text {
    font-size: 25px;
  }

  .site-footer h5 {
    font-size: 18px;
  }

  .site-footer a,
  .site-footer p,
  .footer-contact p {
    font-size: 14.5px;
    font-weight: 400 !important;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* =====================================================
   HEADER + MEGA MENU - MOBILE FIX
===================================================== */

@media (max-width: 991.98px) {

    .site-header,
    .site-header .navbar {
        position: relative;
        z-index: 1100;
    }

    /* Main mobile menu panel */
    .site-header #mainNavbar {
        position: absolute !important;

        top: calc(100% + 1px);
        left: 12px;
        right: 12px;

        width: auto;
        max-height: calc(100vh - 90px);
        max-height: calc(100dvh - 90px);

        padding: 12px;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0 0 18px 18px;

        background:
            linear-gradient(
                145deg,
                #102f5c 0%,
                #0b2349 100%
            );

        box-shadow: 0 22px 45px rgba(4, 24, 54, 0.28);

        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent horizontal overflow */
    .site-header #mainNavbar.show,
    .site-header #mainNavbar.collapsing {
        overflow-x: hidden !important;
    }

    /* Main mobile nav list */
    .site-header .navbar-nav {
        width: 100%;

        align-items: stretch !important;
        gap: 4px !important;

        margin: 0 !important;
    }

    .site-header .navbar-nav > .nav-item {
        width: 100%;
    }

    .site-header .navbar-nav > .nav-item > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        padding: 12px 13px;

        color: #ffffff;
        border-radius: 9px;
    }

    .site-header .navbar-nav > .nav-item > .nav-link:hover,
    .site-header .navbar-nav > .nav-item > .nav-link:focus,
    .site-header .navbar-nav > .nav-item > .nav-link.show {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.10);
    }

    /* ==========================================
       Mega menu inside mobile navigation
    ========================================== */

    .site-header .mega-dropdown {
        position: static !important;
    }

    .site-header .mega-dropdown .dropdown-menu,
    .site-header .mega-menu {
        position: static !important;

        inset: auto !important;
        transform: none !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        max-height: none !important;

        margin: 7px 0 5px !important;
        padding: 10px !important;

        overflow: visible !important;

        border: 0 !important;
        border-radius: 14px;

        background: #ffffff;

        box-shadow: none !important;
    }

    .site-header .mega-menu.show {
        display: block !important;
    }

    /* Remove Bootstrap container limitation */
    .site-header .mega-menu > .container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .mega-menu .row {
        margin: 0 !important;

        --bs-gutter-x: 0;
        --bs-gutter-y: 8px;
    }

    /* Hide large introduction column on phone */
    .site-header .mega-menu .mega-left {
        display: none !important;
    }

    .site-header .mega-menu .col-lg-9,
    .site-header .mega-menu .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;
    }

    /* Mobile mega-menu items */
    .site-header .mega-menu .mega-item {
        display: flex;
        align-items: center;
        gap: 11px;

        width: 100%;
        min-height: auto;

        padding: 10px 9px;

        color: #173a66;
        text-decoration: none;

        border: 1px solid transparent;
        border-radius: 10px;

        background: #ffffff;
    }

    .site-header .mega-menu .mega-item:hover,
    .site-header .mega-menu .mega-item:focus {
        border-color: #d8e7df;
        background: #f3faf6;
    }

    .site-header .mega-menu .mega-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        border-radius: 11px;
    }

    .site-header .mega-menu .mega-item h5 {
        margin: 0 0 2px;

        color: #173a66;

        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
    }

    .site-header .mega-menu .mega-item p {
        margin: 0;

        color: #687b94;

        font-size: 0.73rem;
        line-height: 1.4;
    }

    /* signup button */
    .site-header .header-actions {
        width: 100%;
        margin-top: 8px;
    }

    .site-header .header-actions .btn-signup {
        width: 100%;
        justify-content: center;
    }
}

/* Smaller phones */
@media (max-width: 480px) {

    .site-header #mainNavbar {
        left: 8px;
        right: 8px;

        max-height: calc(100vh - 82px);
        max-height: calc(100dvh - 82px);

        padding: 9px;
    }

    .site-header .mega-menu {
        padding: 8px !important;
    }

    .site-header .mega-menu .mega-item {
        gap: 9px;
        padding: 9px 7px;
    }

    .site-header .mega-menu .mega-icon {
        flex-basis: 36px;

        width: 36px;
        height: 36px;
    }

    .site-header .mega-menu .mega-item h5 {
        font-size: 16px;
    }

    .site-header .mega-menu .mega-item p {
        font-size: 0.68rem;
    }
}

/* =====================================================
   Who We Are - push image more to the right
===================================================== */

@media (min-width: 992px) {

    .ih-about-visual {
        display: flex;
        justify-content: flex-end;
        padding-left: 30px;
        padding-right: 0;
        margin-left: auto;
    }

    .ih-about-image-frame {
        margin-left: auto;
        margin-right: auto;
        transform: translateX(40px);
    }
}


.testimonial-card {
    padding: 30px 26px;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(11, 42, 99, 0.09);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(11, 42, 99, 0.14);
}


/* Who We Are heading final desktop balance */

@media (min-width: 1200px) {
    .ih-about-content h2 {
        /* max-width: 760px; */
        font-size: 45px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0px;
    }

    .ih-about-content h2 span {
        white-space: nowrap;
    }
}


/* =====================================================
   Home Page - Complete Hosting Solutions
===================================================== */

.home-solutions-section {
    position: relative;
    overflow: hidden;

    padding: 58px 20px 66px;

    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(22, 128, 58, 0.06),
            transparent 27%
        ),
        radial-gradient(
            circle at 93% 16%,
            rgba(43, 87, 151, 0.07),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fcff 100%
        );

    border-top: 1px solid rgba(219, 228, 240, 0.68);
    border-bottom: 1px solid rgba(219, 228, 240, 0.68);
}

.home-solutions-section .container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
}


/* =====================================================
   Section Heading
===================================================== */

.home-solutions-heading {
    max-width: 980px;
    margin: 0 auto 40px;

    text-align: center;
}

.home-solutions-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    padding: 8px 16px;

    color: var(--accent-color);
    background: var(--accent-soft);

    border: 1px solid rgba(22, 128, 58, 0.16);
    border-radius: 999px;

    font-size: 0.70rem;
      font-weight: 600;
    line-height: 1;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.home-solutions-heading h2 {
    max-width: 900px;
    margin: 0 auto 14px;

    color: var(--primary-color);

    font-size: clamp(2.15rem, 3.6vw, 3rem);
      font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.35px;
}

.home-solutions-heading p {
    max-width: 820px;
    margin: 0 auto;

    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.72;
}


/* =====================================================
   Home Page - Hosting Solutions
   Light / Dark Checkerboard Cards
===================================================== */

.home-solutions-section {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    color: var(--text-dark);
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(22, 128, 58, 0.06),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 15%,
            rgba(43, 87, 151, 0.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            var(--bg-white) 0%,
            var(--bg-light) 100%
        );
    border-top: 1px solid rgba(219, 228, 240, 0.70);
    border-bottom: 1px solid rgba(219, 228, 240, 0.70);
    font-family: 'Poppins', sans-serif;
}

.home-solutions-section .container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;
}


/* =====================================================
   Section Heading
===================================================== */

.home-solutions-heading {
    max-width: 960px;

    margin: 0 auto 42px;

    text-align: center;
}

.home-solutions-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    padding: 8px 16px;

    color: var(--accent-color);
    background: var(--accent-soft);

    border: 1px solid rgba(22, 128, 58, 0.16);
    border-radius: 999px;

    font-size: 12px;
         font-weight: 600;
    line-height: 1;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.home-solutions-heading h2 {
    max-width: 900px;
    margin: 0 auto 14px;
    color: #14376f;
    font-size: 45px;
         font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.home-solutions-heading p {
    max-width: 800px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 18px;
         font-weight: 500;
    line-height: 1.7;
}


/* =====================================================
   Service Cards Grid
===================================================== */

.home-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}


/* =====================================================
   Standard Light Card
===================================================== */

.home-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 355px;

    padding: 27px 26px 22px;

    overflow: hidden;

    color: var(--text-dark);

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(22, 128, 58, 0.055),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            var(--bg-white) 0%,
            var(--bg-blue-soft) 100%
        );

    border: 1px solid var(--border-color);
    border-radius: 22px;

    box-shadow: var(--shadow-card);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Left accent rail */

.home-service-card::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 0;
    width: 4px;
    /* background:
        linear-gradient(
            180deg,
            var(--accent-color),
            rgba(22, 128, 58, 0.12)
        ); */
    border-radius: 0 6px 6px 0;
    transition:
        top 0.3s ease,
        bottom 0.3s ease,
        width 0.3s ease;
}


/* Background circle */

.home-service-card::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -105px;

    width: 210px;
    height: 210px;

    border: 1px solid rgba(20, 55, 111, 0.055);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(22, 128, 58, 0.018),
        0 0 0 70px rgba(20, 55, 111, 0.012);

    pointer-events: none;
}

.home-service-card > * {
    position: relative;
    z-index: 2;
}


/* Hover */

.home-service-card:hover {
    color: var(--text-dark);

    transform: translateY(-6px);

    border-color: rgba(22, 128, 58, 0.32);

    box-shadow: var(--shadow-soft);
}

.home-service-card:hover::before {
    top: 0;
    bottom: 0;

    width: 6px;
}


/* =====================================================
   Card Header
===================================================== */

.home-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 20px;
}

.home-service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    color: var(--accent-color);

    background:
        linear-gradient(
            135deg,
            var(--accent-soft),
            var(--primary-soft)
        );

    border: 1px solid rgba(22, 128, 58, 0.12);
    border-radius: 16px;

    font-size: 22px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.home-service-card:hover .home-service-card-icon {
    color: var(--text-white);

    background:
        linear-gradient(
            135deg,
            var(--accent-color),
            var(--accent-hover)
        );

    transform: translateY(-3px) rotate(-4deg);
}

.home-service-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    height: 40px;
    color: #8fa1b6;
    background: rgba(20, 55, 111, 0.055);
    border: 1px solid rgba(20, 55, 111, 0.06);
    border-radius: 999px;
    font-size: 11px;
         font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}


/* =====================================================
   Card Content
===================================================== */

.home-service-card-content {
    flex: 1;
    min-width: 0;
}

.home-service-card-content h3 {
    margin: 0 0 11px;
    color: var(--primary-dark);
    font-size: 25px;
         font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.35px;
}

.home-service-cpanel {
    color: #ff6c2c;
}

.home-service-card-content > p {
    min-height: 68px;
    margin: 0 0 17px;
    color: var(--text-muted);
    font-size: 18px;
         font-weight: 500;
    line-height: 1.65;
}


/* =====================================================
   Features
===================================================== */

.home-service-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 15px;
}

.home-service-features > span {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    padding: 8px 0;
    color: #38516f;
    border-bottom: 1px solid rgba(219, 228, 240, 0.82);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.home-service-features > span:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.home-service-features i {
    flex: 0 0 auto;

    color: var(--accent-color);

    font-size: 13px;
         font-weight: 600;
}


/* =====================================================
   Card Footer
===================================================== */

.home-service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 18px;
    padding-top: 14px;

    border-top: 1px solid rgba(20, 55, 111, 0.11);
}

.home-service-card-footer > span {
    color: var(--primary-color);
    font-size: 17px;
         font-weight: 600;
    line-height: 1.35;
}

.home-service-card-footer > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 11px;
    font-size: 14px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home-service-card:hover .home-service-card-footer > i {
    color: var(--text-white);
    background: var(--accent-color);

    border-color: var(--accent-color);

    transform: translate(3px, -3px);
}


/* =====================================================
   Dark Cards Pattern
   Cards 02, 04 and 06
===================================================== */

.home-service-card:nth-child(even) {
    color: var(--text-white);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(22, 128, 58, 0.30),
            transparent 34%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(43, 87, 151, 0.35),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--primary-dark) 0%,
            var(--primary-color) 58%,
            #0d315f 100%
        );

    border-color: rgba(255, 255, 255, 0.10);

    box-shadow:
        0 18px 42px rgba(11, 35, 72, 0.22);
}



.home-service-card:nth-child(even)::after {
    border-color: rgba(255, 255, 255, 0.06);

    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.018),
        0 0 0 70px rgba(255, 255, 255, 0.012);
}

.home-service-card:nth-child(even):hover {
    color: var(--text-white);

    border-color: rgba(134, 239, 172, 0.34);

    box-shadow:
        0 26px 55px rgba(11, 35, 72, 0.30);
}


/* Dark card icon */

.home-service-card:nth-child(even) .home-service-card-icon {
    color: #86efac;
    background: rgba(22, 128, 58, 0.19);

    border-color: rgba(134, 239, 172, 0.17);
}


/* Dark card number */

.home-service-card:nth-child(even) .home-service-card-number {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.09);
}


/* Dark card heading */

.home-service-card:nth-child(even) .home-service-card-content h3 {
    color: var(--text-white);
}


/* cPanel remains orange */

.home-service-card:nth-child(even) .home-service-cpanel {
    color: #ff6c2c;
}


/* Dark card description */

.home-service-card:nth-child(even) .home-service-card-content > p {
    color: rgba(255, 255, 255, 0.72);
}


/* Dark card features */

.home-service-card:nth-child(even) .home-service-features > span {
    color: rgba(255, 255, 255, 0.82);

    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.home-service-card:nth-child(even) .home-service-features i {
    color: #86efac;
}


/* Dark card footer */

.home-service-card:nth-child(even) .home-service-card-footer {
    border-top-color: rgba(255, 255, 255, 0.11);
}

.home-service-card:nth-child(even) .home-service-card-footer > span {
    color: var(--text-white);
}

.home-service-card:nth-child(even) .home-service-card-footer > i {
    color: var(--primary-dark);
    background: var(--bg-white);

    border-color: var(--bg-white);
}

.home-service-card:nth-child(even):hover
.home-service-card-footer > i {
    color: var(--text-white);
    background: var(--accent-color);

    border-color: var(--accent-color);
}


/* =====================================================
   Laptop
===================================================== */

@media (max-width: 1199.98px) {

    .home-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-service-card {
        min-height: 350px;
    }
}


/* =====================================================
   Tablet / Mobile
===================================================== */

@media (max-width: 767.98px) {

    .home-solutions-section {
        padding: 50px 12px 56px;
    }

    .home-solutions-heading {
        margin-bottom: 32px;
    }

    .home-solutions-heading h2 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .home-solutions-heading p {
        font-size: 18px;
    }

    .home-service-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-service-card {
        min-height: auto;
    }

    .home-service-card-content > p {
        min-height: auto;
    }
}


/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 480px) {

    .home-solutions-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .home-service-card {
        padding: 23px 20px 19px;

        border-radius: 19px;
    }

    .home-service-card-icon {
        width: 50px;
        height: 50px;

        border-radius: 14px;

        font-size: 20px;
    }

    .home-service-card-content h3 {
        font-size: 18px;
    }

    .home-service-features {
        grid-template-columns: 1fr;
    }

    .home-service-features > span,
    .home-service-features > span:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(219, 228, 240, 0.78);
    }

    .home-service-card:nth-child(even)
    .home-service-features > span {
        border-bottom-color: rgba(255, 255, 255, 0.10);
    }

    .home-service-features > span:last-child,
    .home-service-card:nth-child(even)
    .home-service-features > span:last-child {
        border-bottom: 0;
    }
}


/* =====================================================
   Reduced Motion
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .home-service-card,
    .home-service-card::before,
    .home-service-card-icon,
    .home-service-card-footer > i {
        transition: none;
    }
}


/* =====================================================
   Large Laptop
===================================================== */

@media (max-width: 1199.98px) {

    .home-solutions-section .container {
        max-width: 1120px;
    }

    .home-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-service-card {
        min-height: 340px;
    }
}


/* =====================================================
   Tablet and Mobile
===================================================== */

@media (max-width: 767.98px) {

    .home-solutions-section {
        padding: 48px 12px 54px;
    }

    .home-solutions-heading {
        margin-bottom: 30px;
    }

    .home-solutions-heading h2 {
        font-size: 2rem;
        letter-spacing: -0.85px;
    }

    .home-solutions-heading p {
        font-size: 18px;
    }

    .home-service-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-service-card {
        min-height: auto;
    }

    .home-service-card-content > p {
        min-height: auto;
    }
}


/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 480px) {

    .home-solutions-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .home-service-card {
        padding: 22px 19px 18px;

        border-radius: 18px;
    }

    .home-service-card-top {
        margin-bottom: 16px;
    }

    .home-service-card-icon {
        width: 48px;
        height: 48px;

        border-radius: 14px;

        font-size: 1.12rem;
    }

    .home-service-card-content h3 {
        font-size: 1.08rem;
    }

    .home-service-features {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-service-features > span,
    .home-service-features > span:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(219, 228, 240, 0.78);
    }

    .home-service-features > span:last-child {
        border-bottom: 0;
    }
}


/* =====================================================
   Reduced Motion
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .home-service-card,
    .home-service-card::before,
    .home-service-card-icon,
    .home-service-card-footer > i {
        transition: none;
    }
}


/* =====================================================
   Home Page - Who We Are GIF Visual
===================================================== */

.ih-about-visual {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
}


/* Main image / GIF frame */

.ih-about-image-frame {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;

    background: var(--bg-blue-soft, #f1f6ff);
    border: 1px solid rgba(20, 55, 111, 0.08);
    border-radius: 30px;

    box-shadow:
        0 26px 65px rgba(11, 35, 72, 0.14),
        0 8px 22px rgba(11, 35, 72, 0.06);
}


/* GIF image */

.ih-about-image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    border-radius: inherit;
}

/* Very light visual overlay */

.ih-about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(11, 35, 72, 0.015) 0%,
            transparent 45%,
            rgba(11, 35, 72, 0.06) 100%
        );

    border-radius: inherit;

    pointer-events: none;
}


/* Optional subtle background shape */

.ih-about-visual::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: -28px;
    right: -28px;

    width: 180px;
    height: 180px;

    background: rgba(22, 128, 58, 0.07);

    border-radius: 50%;
}

.ih-about-visual::after {
    content: "";

    position: absolute;
    z-index: -1;

    left: -30px;
    bottom: -28px;

    width: 160px;
    height: 160px;

    background: rgba(20, 55, 111, 0.07);

    border-radius: 34px;

    transform: rotate(15deg);
}


/* Empty floating cards hide karanna */

.ih-about-floating-card:empty {
    display: none;
}


/* =====================================================
   Large Tablet
===================================================== */

@media (min-width: 1200px) {
    .ih-about-section .container {
        max-width: 1400px;
    }

    .ih-about-visual {
        max-width: 760px;
    }
}


/* =====================================================
   Tablet
===================================================== */

@media (max-width: 991.98px) {

    .ih-about-visual {
        max-width: 720px;
        margin: 10px auto 0;
    }

    .ih-about-image-frame {
        height: 520px;

        border-radius: 26px;
    }

    .ih-about-image {
        object-position: center center;
    }

    .ih-about-visual::before {
        top: -20px;
        right: -16px;

        width: 145px;
        height: 145px;
    }

    .ih-about-visual::after {
        left: -16px;
        bottom: -20px;

        width: 130px;
        height: 130px;
    }
}


/* =====================================================
   Mobile
===================================================== */

@media (max-width: 767.98px) {

    .ih-about-visual {
        width: 100%;
        margin-top: 8px;
    }

    .ih-about-image-frame {
        height: 440px;

        border-radius: 22px;

        box-shadow:
            0 20px 44px rgba(11, 35, 72, 0.12),
            0 6px 16px rgba(11, 35, 72, 0.05);
    }

    .ih-about-visual::before,
    .ih-about-visual::after {
        display: none;
    }
}


/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 575.98px) {

    .ih-about-image-frame {
        height: 380px;

        border-radius: 19px;
    }

    .ih-about-image {
        object-position: 58% center;
    }
}


/* =====================================================
   Very Small Mobile
===================================================== */

@media (max-width: 420px) {

    .ih-about-image-frame {
        height: 330px;
    }
}


/* =====================================================
   Journey Card Links Fix (Make them visible)
===================================================== */
.journey-card a {
    position: relative;
    z-index: 2;
    color: #79e39b !important;
    font-size: 17px !important;
    transition: color 0.3s ease;
}

.journey-card a:hover {
    color: #ffffff !important; 
}

.journey-card a i {
    display: inline-block;
    transition: transform 0.3s ease;
}


.journey-card:hover a i,
.journey-card a:hover i {
    transform: translateX(5px); 
}

/* =====================================================
   FAQ Text Highlight
===================================================== */
.faq-highlight {
    color: var(--accent-color); 
         font-weight: 600; 
}


/* =====================================================
   Extracted Inline Styles (Home Page)
===================================================== */
.journey-card a.text-decoration-none {
    color: var(--be-green-600);
    font-size: 0.9rem;
}


/* =====================================================
   FINAL RESPONSIVE SAFETY NET (Home Page)
   Ensures 100% compatibility across all extreme device sizes
===================================================== */

/* Ultra-wide monitors (4K / 2K) */
@media (min-width: 1600px) {
    .hero-section {
        padding: 50px 20px !important;
    }
    .hero-control-hub {
        transform: scale(1.05);
        transform-origin: center right;
    }
}

/* Small Mobile Devices (380px & below - e.g., iPhone SE) */
@media (max-width: 380px) {
    .hero-section h1 {
        font-size: 28px !important;
    }
    .clean-brand-text {
        font-size: 18px !important;
    }
    .clean-brand-icon,
    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .hub-domain-card {
        padding: 10px;
    }
    .domain-input-box {
        font-size: 12px;
        padding: 10px;
    }
    .trust-number {
        font-size: 1.6rem !important;
    }
    .trust-number-static {
        font-size: 1.2rem !important;
    }
    .home-solutions-heading h2 {
        font-size: 26px !important;
    }
    .section-title h2 {
        font-size: 26px !important;
    }
}

/* General Mobile Flex Fixes */
@media (max-width: 575.98px) {
    .ask-question-box {
        text-align: center;
    }
    .ask-question-box .btn {
        width: 100%;
        margin-top: 10px;
    }
    .hero-benefits {
        grid-template-columns: 1fr 1fr;
    }
    .hero-benefits div {
        font-size: 13px;
        padding: 10px 0;
        border-right: 0 !important;
    }
    .hub-domain-card button {
        width: 100%;
    }
}


.ih-about-image {
    display: block;
    width: 100%;
    max-width: 100%; /* Me peliya aluthen add karanna */
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}


/* Logo Styles */
        /* Default State (Top of Page - Blue Background) */
        .logo-scrolled { display: none !important; }
        .logo-default { display: block !important; }

        /* Scrolled State (White Background) */
        .site-header.scrolled .logo-default { display: none !important; }
        .site-header.scrolled .logo-scrolled { display: block !important; }




/* =========================================================
   iHoster.net
   FINAL HEADER RESPONSIVE OVERRIDES
   Keep this block at the VERY END of the main CSS file
========================================================= */


/* =========================================================
   LARGE / MEDIUM LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .site-header .container {
        width: 100%;
        max-width: 100% !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header .clean-brand {
        margin-right: 18px !important;
        flex-shrink: 0;
    }

    .site-header .navbar-nav {
        gap: 5px !important;
    }

    .site-header .navbar-nav .nav-link {
        padding: 10px 7px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }

    .site-header .header-actions {
        margin-left: 14px !important;
        gap: 9px !important;
        flex-shrink: 0;
    }

    .site-header .header-phone {
        display: none !important;
    }

    .site-header .btn-signup {
        padding: 10px 14px !important;
        font-size: 13px !important;
        white-space: nowrap;
    }
}


/* =========================================================
   TABLET + MOBILE
   Bootstrap navbar collapses below 992px
========================================================= */

@media (max-width: 991.98px) {

    body {
        padding-top: 72px !important;
    }

    html {
        scroll-padding-top: 80px;
    }


    /* ---------------------------
       HEADER / NAVBAR
    --------------------------- */

    .site-header {
        width: 100% !important;
        z-index: 999999 !important;
    }

    .site-header .main-navbar {
        position: relative;
        width: 100%;
        padding: 10px 0 !important;
    }

    .site-header .main-navbar > .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 16px;
        padding-right: 16px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* ---------------------------
       LOGO
    --------------------------- */

    .site-header .navbar-brand {
        display: flex;
        align-items: center;

        flex: 0 1 auto;

        margin: 0 !important;
        padding: 0 !important;

        min-width: 0;
    }

    .site-header .navbar-brand img {
        display: block;

        width: auto;
        max-width: 175px !important;
        height: auto;

        object-fit: contain;
    }


    /* ---------------------------
       MOBILE TOGGLER
    --------------------------- */

    .site-header .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;

        flex: 0 0 auto;

        width: 44px;
        height: 44px;

        margin-left: 12px;
        padding: 8px !important;

        background: #ffffff !important;

        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 11px;

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

        outline: none !important;
    }

    .site-header .navbar-toggler:focus {
        box-shadow:
            0 0 0 3px rgba(10, 127, 38, 0.18),
            0 5px 15px rgba(0, 0, 0, 0.12) !important;
    }

    .site-header .navbar-toggler-icon {
        width: 22px;
        height: 22px;

        filter:
            invert(12%)
            sepia(51%)
            saturate(2108%)
            hue-rotate(201deg)
            brightness(88%)
            contrast(98%);
    }


    /* ---------------------------
       COLLAPSED MOBILE MENU
    --------------------------- */

    .site-header #mainNavbar {
        position: absolute !important;

        top: 100% !important;
        left: 12px !important;
        right: 12px !important;

        width: auto !important;

        margin: 0 !important;
        padding: 14px !important;

        max-height: calc(100vh - 85px);
        max-height: calc(100dvh - 85px);

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background:
            linear-gradient(
                145deg,
                #102f5c 0%,
                #0b2349 100%
            ) !important;

        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 0 0 18px 18px;

        box-shadow:
            0 22px 45px rgba(4,24,54,0.30);

        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }


    /* ---------------------------
       NAVIGATION LINKS
    --------------------------- */

    .site-header #mainNavbar .navbar-nav {
        width: 100%;

        margin: 0 !important;

        align-items: stretch !important;
        gap: 4px !important;
    }

    .site-header #mainNavbar .navbar-nav > .nav-item {
        width: 100%;
    }

    .site-header #mainNavbar .navbar-nav > .nav-item > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 12px 13px !important;

        color: #ffffff !important;

        font-size: 14px !important;
        font-weight: 700 !important;

        border-radius: 9px;

        background: transparent !important;

        white-space: normal;
    }

    .site-header #mainNavbar .navbar-nav > .nav-item > .nav-link:hover,
    .site-header #mainNavbar .navbar-nav > .nav-item > .nav-link:focus,
    .site-header #mainNavbar .navbar-nav > .nav-item > .nav-link.show {
        color: #ffffff !important;
        background: rgba(255,255,255,0.10) !important;
    }


    /* Keep mobile menu white text after header scroll */

    .site-header.scrolled #mainNavbar .nav-link,
    .site-header.scrolled #mainNavbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }


    /* =====================================================
       MEGA MENU
    ===================================================== */

    .site-header .mega-dropdown {
        position: static !important;
        width: 100%;
    }

    .site-header .mega-dropdown .mega-menu,
    .site-header .mega-dropdown .dropdown-menu {
        position: static !important;

        inset: auto !important;
        transform: none !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 6px 0 5px !important;
        padding: 9px !important;

        overflow: visible !important;

        background: #ffffff !important;

        border: 0 !important;
        border-radius: 13px !important;

        box-shadow: none !important;
    }

    .site-header .mega-menu > .container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        border: 0 !important;

        box-shadow: none !important;
    }

    .site-header .mega-menu .row {
        margin: 0 !important;

        --bs-gutter-x: 0;
        --bs-gutter-y: 5px;
    }


    /* Desktop description column is unnecessary in mobile */

    .site-header .mega-menu .mega-left {
        display: none !important;
    }

    .site-header .mega-menu .col-lg-9,
    .site-header .mega-menu .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 0 !important;
        padding-right: 0 !important;
    }


    /* Mega menu service item */

    .site-header .mega-menu .mega-item {
        display: flex;
        align-items: center;

        width: 100%;

        gap: 11px;

        padding: 10px 9px;

        color: #173a66 !important;
        background: #ffffff;

        border: 1px solid transparent;
        border-radius: 10px;

        transform: none !important;
    }

    .site-header .mega-menu .mega-item:hover,
    .site-header .mega-menu .mega-item:focus {
        color: #173a66 !important;

        background: #f3faf6;

        border-color: #d8e7df;

        transform: none !important;
    }


    /* Mega menu icons */

    .site-header .mega-menu .mega-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        border-radius: 11px;

        font-size: 20px;
    }

    .site-header .mega-menu .mega-item > div {
        flex: 1;
        min-width: 0;
    }

    .site-header .mega-menu .mega-item h5 {
        margin: 0 0 2px;

        color: #173a66 !important;

        font-size: 16px !important;
             font-weight: 600;
        line-height: 1.3;

        white-space: normal;
    }

    .site-header .mega-menu .mega-item p {
        margin: 0;

        color: #687b94 !important;

        font-size: 13px;
        line-height: 1.45;

        white-space: normal;
    }


    /* =====================================================
       HEADER ACTIONS
    ===================================================== */

    .site-header .header-actions {
        display: flex !important;
        flex-direction: column;

        width: 100%;

        margin: 10px 0 0 !important;

        padding-top: 10px;

        gap: 10px !important;

        align-items: stretch !important;

        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .site-header .header-phone {
        display: none !important;
    }

    .site-header .header-actions .btn-signup {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100% !important;

        margin: 0 !important;

        padding: 11px 16px !important;

        font-size: 14px !important;

        text-align: center;

        white-space: normal;
    }


    /* Logged-in notification bell */

    .site-header .header-actions > .dropdown {
        margin: 0 !important;

        align-self: flex-start;
    }

    .site-header #notificationMenu {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        padding: 0 !important;

        color: #ffffff !important;

        background: rgba(255,255,255,0.10);

        border-radius: 10px;
    }


    /* Notification popup must not overflow small screens */

    .site-header #notificationMenu + .dropdown-menu {
        left: 0 !important;
        right: auto !important;

        width: min(320px, calc(100vw - 55px)) !important;

        min-width: 0 !important;
        max-width: calc(100vw - 55px) !important;

        margin-top: 6px !important;

        transform: none !important;
    }
}


/* =========================================================
   NORMAL MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .site-header .main-navbar > .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-header .navbar-brand img {
        max-width: 160px !important;
    }

    .site-header #mainNavbar {
        left: 8px !important;
        right: 8px !important;

        padding: 11px !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    body {
        padding-top: 66px !important;
    }

    .site-header .main-navbar {
        padding: 9px 0 !important;
    }

    .site-header .navbar-brand img {
        max-width: 145px !important;
    }

    .site-header .navbar-toggler {
        width: 40px;
        height: 40px;

        margin-left: 8px;
    }

    .site-header #mainNavbar {
        max-height: calc(100vh - 72px);
        max-height: calc(100dvh - 72px);
    }

    .site-header .mega-menu .mega-item {
        gap: 9px;

        padding: 9px 7px;
    }

    .site-header .mega-menu .mega-icon {
        flex-basis: 36px;

        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .site-header .mega-menu .mega-item h5 {
        font-size: 16px;
    }

    .site-header .mega-menu .mega-item p {
        font-size: 13px;
    }
}


/* =========================================================
   VERY SMALL MOBILE - 320px / 360px
========================================================= */

@media (max-width: 400px) {

    .site-header .main-navbar > .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-header .navbar-brand img {
        max-width: 135px !important;
    }

    .site-header .navbar-toggler {
        width: 38px;
        height: 38px;

        padding: 7px !important;
    }

    .site-header #mainNavbar {
        left: 5px !important;
        right: 5px !important;

        padding: 9px !important;
    }

    .site-header #mainNavbar .navbar-nav > .nav-item > .nav-link {
        padding: 10px 10px !important;

        font-size: 13px !important;
    }

    .site-header .mega-menu {
        padding: 7px !important;
    }

    .site-header .mega-menu .mega-item p {
        display: none;
    }

    .site-header .header-actions .btn-signup {
        font-size: 13px !important;
    }

    .site-header #notificationMenu + .dropdown-menu {
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
    }
}



/* =========================================================
   iHoster.net
   FINAL FOOTER RESPONSIVE OVERRIDES
   Keep AFTER Header Responsive Overrides
========================================================= */


/* =========================================================
   GENERAL FOOTER SAFETY
========================================================= */

.site-footer {
    width: 100%;
    overflow: hidden;
}

.site-footer .container {
    width: 100%;
}

.site-footer .clean-brand {
    margin-right: 0 !important;
    margin-bottom: 22px !important;
}

.site-footer .clean-brand img {
    display: block;
    width: auto;
    max-width: 330px !important;
    height: auto;
    object-fit: contain;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer h5 {
    overflow-wrap: break-word;
    word-break: normal;
}

.site-footer .footer-contact a {
    word-break: break-word;
}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer .container {
        max-width: 100% !important;
        padding-left: 28px;
        padding-right: 28px;
    }

    .site-footer .row {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2rem;
    }

    .site-footer .clean-brand {
        margin-right: 0 !important;
    }

    .site-footer .clean-brand img {
        max-width: 180px !important;
    }

    .site-footer p {
        font-size: 15px;
        line-height: 1.75;
    }

    .site-footer a {
        font-size: 15px;
    }

    .site-footer h5 {
        font-size: 18px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .site-footer {
        padding: 55px 0 30px;
    }

    .site-footer .container {
        max-width: 100% !important;

        padding-left: 28px;
        padding-right: 28px;
    }

    .site-footer .row {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2.5rem;
    }

    .site-footer .clean-brand {
        margin-right: 0 !important;
        margin-bottom: 18px !important;
    }

    .site-footer .clean-brand img {
        max-width: 180px !important;
    }

    .site-footer p {
        max-width: 520px;

        font-size: 15px;
        line-height: 1.7;
    }

    .site-footer h5 {
        margin-bottom: 18px;

        font-size: 18px;
    }

    .site-footer ul {
        margin: 0;
        padding: 0;
    }

    .site-footer li {
        margin-bottom: 11px;
    }

    .site-footer a {
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-social {
        flex-wrap: wrap;

        gap: 10px;

        margin-top: 20px;
    }

    .footer-bottom {
        align-items: center;

        gap: 12px;
    }
}


/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767.98px) {

    .site-footer {
        padding: 50px 0 25px;
    }

    .site-footer .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 2rem;

        margin-left: 0;
        margin-right: 0;
    }

    .site-footer .row > [class*="col-"] {
        width: 100%;

        padding-left: 0;
        padding-right: 0;
    }


    /* -------------------------
       BRAND AREA
    ------------------------- */

    .site-footer .clean-brand {
        display: inline-flex;

        margin: 0 0 18px !important;
        padding: 0 !important;
    }

    .site-footer .clean-brand:hover {
        padding-left: 0 !important;
    }

    .site-footer .clean-brand img {
        max-width: 170px !important;
    }

    .site-footer p {
        width: 100%;
        max-width: 540px;

        margin-bottom: 14px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* -------------------------
       CONTACT
    ------------------------- */

    .site-footer .footer-contact {
        margin-top: 18px;
    }

    .site-footer .footer-contact p {
        display: flex;
        align-items: center;

        gap: 9px;

        margin-bottom: 10px;

        font-size: 14px;
    }

    .site-footer .footer-contact i {
        flex: 0 0 auto;

        margin-right: 0;
    }

    .site-footer .footer-contact a {
        min-width: 0;

        font-size: 14px;

        overflow-wrap: anywhere;
    }


    /* -------------------------
       SOCIAL ICONS
    ------------------------- */

    .site-footer .footer-social {
        display: flex;
        flex-wrap: wrap;

        gap: 10px;

        margin-top: 20px;
    }

    .site-footer .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex: 0 0 42px;

        width: 42px;
        height: 42px;

        padding: 0 !important;
    }

    .site-footer .footer-social a:hover {
        padding-left: 0 !important;
    }


    /* -------------------------
       FOOTER LINK SECTIONS
    ------------------------- */

    .site-footer h5 {
        margin: 4px 0 16px;
        padding-bottom: 10px;

        font-size: 17px;
    }

    .site-footer h5::after {
        width: 30px;
    }

    .site-footer ul {
        width: 100%;

        margin: 0;
        padding: 0;
    }

    .site-footer li {
        margin-bottom: 10px;
    }

    .site-footer a {
        font-size: 14px;
        line-height: 1.55;
    }


    /* -------------------------
       BOTTOM COPYRIGHT
    ------------------------- */

    .site-footer hr {
        margin: 35px 0 22px;
    }

    .site-footer .footer-bottom {
        display: flex;
        flex-direction: column;

        width: 100%;

        align-items: center;
        justify-content: center;

        gap: 8px;

        text-align: center;
    }

    .site-footer .footer-bottom p {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 13px;
        line-height: 1.6;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   Below 576px
========================================================= */

@media (max-width: 575.98px) {

    .site-footer {
        padding: 42px 0 22px;
    }

    .site-footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-footer .row {
        --bs-gutter-y: 1.8rem;
    }

    .site-footer .clean-brand img {
        max-width: 155px !important;
    }

    .site-footer p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .site-footer .footer-contact p,
    .site-footer .footer-contact a {
        font-size: 13.5px;
    }

    .site-footer h5 {
        margin-bottom: 14px;

        font-size: 16px;
    }

    .site-footer li {
        margin-bottom: 9px;
    }

    .site-footer a {
        font-size: 13.5px;
    }

    .site-footer .footer-social a {
        flex-basis: 40px;

        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .site-footer hr {
        margin: 30px 0 20px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   320px - 400px
========================================================= */

@media (max-width: 400px) {

    .site-footer {
        padding-top: 38px;
    }

    .site-footer .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-footer .clean-brand img {
        max-width: 145px !important;
    }

    .site-footer p {
        font-size: 13px;
    }

    .site-footer .footer-contact p,
    .site-footer .footer-contact a {
        font-size: 13px;
    }

    .site-footer h5 {
        font-size: 15.5px;
    }

    .site-footer a {
        font-size: 13px;
    }

    .site-footer .footer-bottom p {
        font-size: 12px;
    }
}




/* 1. Header eke udadi (Dark bg) - Toggler eke sudu box eka ain karamu */
.site-header .navbar-toggler {
    background: transparent !important;
    background-color: transparent !important; 
    border: 1px solid rgba(255, 255, 255, 0.6) !important; /* Sudu paata podi border ekak */
    border-radius: 6px !important;
    box-shadow: none !important;
}

/* 2. Udadi Icon eka White karanawa (SVG eka balenma denawa) */
.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* 3. Scroll kalama (White bg) - Toggler border eka dark karanawa */
.site-header.scrolled .navbar-toggler {
    border: 1px solid var(--primary-color) !important;
}

/* 4. Scroll kalama Icon eka Dark karanawa */
.site-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 42, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}



html {
  scroll-behavior: smooth !important;
}


#domain-search {
  scroll-margin-top: 150px; 
}



/* =========================================================
   IHOSTER HOMEPAGE - BALANCED SIDE GUTTER FIX
   Full-width backgrounds + comfortable inner spacing
========================================================= */

/* Large desktop / 2K / Full HD */
@media (min-width: 1200px) {

    .hero-section .container,
    .hosting-trust-strip .container,
    .home-solutions-section .container,
    .hosting-journey-section .container,
    .ih-about-section .container,
    .faq-section .container,
    .section-padding .container {
        width: 100% !important;
        max-width: 1480px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* Laptop */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .hero-section .container,
    .hosting-trust-strip .container,
    .home-solutions-section .container,
    .hosting-journey-section .container,
    .ih-about-section .container,
    .faq-section .container,
    .section-padding .container {
        max-width: 100% !important;

        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {

    .hero-section .container,
    .hosting-trust-strip .container,
    .home-solutions-section .container,
    .hosting-journey-section .container,
    .ih-about-section .container,
    .faq-section .container,
    .section-padding .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


/* Mobile */
@media (max-width: 767.98px) {

    .hero-section .container,
    .hosting-trust-strip .container,
    .home-solutions-section .container,
    .hosting-journey-section .container,
    .ih-about-section .container,
    .faq-section .container,
    .section-padding .container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}


/* Very small mobile */
@media (max-width: 400px) {

    .hero-section .container,
    .hosting-trust-strip .container,
    .home-solutions-section .container,
    .hosting-journey-section .container,
    .ih-about-section .container,
    .faq-section .container,
    .section-padding .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}


@media (max-width: 575.98px) {
    .site-header .mega-menu .mega-item h5 {
        font-size: 16px;
    }
}


