body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body,
html {
  font-family: "Poppins", sans-serif;
}

/* Ensure all text elements use Poppins */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  font-family: "Poppins", sans-serif;
}




/*---------------------features ----------------------------*/

.colocation-features-container-main {
  width: 100%;
  /* padding-top: 50px; */
  background-color: #fffef3;
}
.colocation-features-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
}
.colocation-features-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.colocation-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.colocation-features-card {
  background-color: #FCFAEB;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.colocation-features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.colocation-features-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.colocation-features-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;

  border-radius: 50%;
}
.colocation-features-card-title {
  font-size: 1.3rem;
  color: #036B67;
  margin: 0;
}
.colocation-features-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .colocation-features-container {
    padding: 30px 15px;
  }
  .colocation-features-title {
    font-size: 2rem;
  }
  .colocation-features-subtitle {
    font-size: 0.9rem;
  }
  .colocation-features-card-title {
    font-size: 1.1rem;
  }
  .colocation-features-description {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .colocation-features-container {
    padding: 20px;
  }
  .colocation-features-title {
    font-size: 1.8rem;
  }
  .colocation-features-subtitle {
    font-size: 0.8rem;
  }
  .colocation-features-card-title {
    font-size: 1rem;
  }
  .colocation-features-description {
    font-size: 0.75rem;
  }

}



/*------------------contact-us-form ---------------------*/
.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}

.cloud-compute-form-container {
  background: rgb(0,12,45);
  background: linear-gradient(to right, #036B67 0% ,#FFA163 100%);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction:column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  margin-bottom: 30px;
}

.cloud-compute-form-left {
  flex: 1;
  padding-right: 2rem;
}

.cloud-compute-form-right {
  flex: 1;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.cloud-compute-form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cloud-compute-form-subtitle {
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

.cloud-compute-form-contact-info {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cloud-compute-form-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.cloud-compute-form-social-icon {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cloud-compute-form-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cloud-compute-form-input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cloud-compute-form-submit {
  background-color: black;
  font-weight: 600;
  border: 2px solid black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .cloud-compute-form-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .cloud-compute-form-container {
    flex-direction: column;
    padding: 1.5rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    flex: none;
    width: 100%;
    padding: 1rem;
  }

  .cloud-compute-form-left {
    padding-right: 1rem;
    margin-bottom: 1.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.75rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .cloud-compute-form-container-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cloud-compute-form-container {
    padding: 1rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    padding: 0.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.5rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.8rem;
  }

  .cloud-compute-form-social-icons {
    justify-content: center;
  }

  .cloud-compute-form-submit {
    padding: 0.5rem;
  }
}
/* Aurora Background Section Component */
.aurora-background-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin-top: 20px; */
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #0a2e2b 0%, #1a3d3a 50%, #2d4f4c 100%);
    color: #e2e8f0;
    transition: background 0.3s ease;
    overflow: hidden;
    /* padding:30px 5%; */
}

/* Aurora Overlay Effect */
.aurora-background-section .aurora-overlay {
    position: absolute;
    inset: -10px;
    overflow: hidden;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 300% 200%, 200% 100%;
    background-position: 50% 50%, 50% 50%;
    opacity: 0.5;
    filter: blur(10px) invert(1);
    will-change: transform;
    animation: aurora-animation 20s ease-in-out infinite;
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

.aurora-background-section .aurora-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 200% 100%;
    background-attachment: fixed;
    mix-blend-mode: difference;
    animation: aurora-animation-reverse 25s ease-in-out infinite;
}

/* Content Wrapper */
.aurora-background-section .aurora-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

/* Typography */
.aurora-background-section .aurora-main-heading {
    /* font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.4;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px; */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 84px;
    font-weight: 550;
    line-height: 84px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fffef3;
    letter-spacing: -0.72px;
    /* margin: 50px; */
}

.aurora-background-section .aurora-sub-heading {
    /* font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9; */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 24px;
    color: #fffef3;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* CTA Button */
.aurora-background-section .aurora-cta-button {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.aurora-background-section .aurora-cta-button:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.aurora-background-section .aurora-cta-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes aurora-animation {
    0%, 100% {
        background-position: 50% 50%, 50% 50%;
        transform: rotate(0deg);
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 100%;
        transform: rotate(180deg);
    }
    75% {
        background-position: 0% 0%, 50% 50%;
    }
}

@keyframes aurora-animation-reverse {
    0%, 100% {
        background-position: 100% 0%, 0% 100%;
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 50% 50%, 50% 50%;
    }
    75% {
        background-position: 100% 100%, 0% 0%;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    
    .aurora-background-section .aurora-main-heading {
        margin-bottom: 1.5rem;
    }
    
    .aurora-background-section .aurora-sub-heading {
        margin-bottom: 2.5rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 2rem 0.75rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .aurora-background-section .aurora-overlay {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
        filter: blur(10px);
    }
    
    .aurora-background-section .aurora-overlay::after {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    }
    
    .aurora-background-section .aurora-cta-button {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        color: #1e293b;
        border-color: rgba(30, 41, 59, 0.2);
    }
    
    .aurora-background-section .aurora-cta-button:hover {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        border-color: rgba(30, 41, 59, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .aurora-background-section .aurora-overlay {
        animation: none !important;
    }
    
    .aurora-background-section .aurora-content-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 992px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 770px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 25px;   /* balanced for smaller screens */
    line-height: 1.9;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 350px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 24px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}

.gradient-btn {
      background: linear-gradient(90deg, #2e9e96, #ffffff, #f7a36f);
      border: none;
      padding: 10px 28px;
      border-radius: 25px;
      font-size: 22px;
      font-weight: 500;
      cursor: pointer;
      text-align: center;
      display: flex;
      align-items: center;
      gap: 12px;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      line-height: 1.2;
    }
    .gradient-btn svg.arrow-icon {
      vertical-align: middle;
      margin-left: 8px;
      width: 1.2em;
      height: 1.2em;
      transition: transform 0.2s;
    }
    .gradient-btn:hover svg.arrow-icon {
      transform: translateX(6px) scale(1.1);
    }
    .gradient-btn:focus {
      outline: 2px solid #ffa163;
      outline-offset: 2px;
    }
    .gradient-btn-container {
      background: #1a1a1a;
      padding: 6px 36px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
/* Tablets and small laptops */
@media (max-width: 992px) {
  .cta-button,
  .gradient-btn {
    font-size: 16px;
    padding: 12px 24px;
    min-height: 44px;    /* keeps button tall enough */
    border-radius: 40px;
  }
}

/* Small phones up to 480px */
@media (max-width: 480px) {
  .cta-button,
  .gradient-btn {
    font-size: 15px;
    padding: 9px 16px;
    width: 100%;       /* full width for small phones */
    max-width: 280px;  /* keeps it from being too wide */
    margin: 0 auto;    /* center align */
    display: block;
  }
}

/* Extra small screens (iPhone SE / fold ~375px) */
@media (max-width: 375px) {
.cta-button, .gradient-btn {
    font-size: 14px;
    padding: 8px 14px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    align-items: center;
}
}
.aurora-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}
.aurora-left {
  align-items: flex-start;
  text-align: left;
  padding: 2rem 0;
}

.aurora-left .aurora-main-heading {
  font-size: 40px;
  line-height: 1.15;
  max-width: 720px;
}

.aurora-left .aurora-sub-heading {
  max-width: 600px;
  font-size: 18px;
  opacity: 0.95;
}
.aurora-right {
  display: flex;
  justify-content: flex-end;
}

.aurora-image {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transition: 
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.aurora-image:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  filter: brightness(1.08) saturate(1.15);
}


.aurora-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.aurora-pill-btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary Button */
.aurora-pill-btn.primary {
  background: linear-gradient(90deg, #f7a36f, #ffcaa3);
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(247,163,111,0.35);
}

.aurora-pill-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(247,163,111,0.5);
}

/* Secondary Button */
.aurora-pill-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fffef3;
}

.aurora-pill-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}
/* Hide right image below 992px */
@media (max-width: 991.98px) {
  .aurora-right {
    display: none;
  }

  .aurora-layout {
    grid-template-columns: 1fr; /* content takes full width */
  }

  .aurora-left {
    text-align: center;
    align-items: center;
  }

  .aurora-left .aurora-main-heading,
  .aurora-left .aurora-sub-heading {
    max-width: 100%;
  }
}

.bdc-colocation-section {
  background: linear-gradient(135deg, #036B67, #ffa163);
  padding: 60px 0;
  color: #fff;
}

.bdc-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Pills */
.bdc-pills {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bdc-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #f7a36f, #ffcaa3);;
  /* color: #fff; */
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}



/* Cards */
.bdc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bdc-card {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.bdc-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.bdc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bdc-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.bdc-card ul li span {
  font-weight: 600;
  color: #f59e0b;
}

.icon-list li {
  justify-content: flex-start;
  gap: 8px;
}
.bdc-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Responsive */
@media (max-width: 1100px) {
  .bdc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bdc-cards {
    grid-template-columns: 1fr;
  }
}
.bdc-cta-strip {
  /* padding: 30px 0; */
  padding-bottom: 50px;
}

.bdc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 22px 28px;
  /* border-radius: 14px; */
  background: linear-gradient(90deg, #e6a15c, #d68840);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border-radius: 20px;
}
.bdc-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.bdc-cta-text {
      margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
}

/* Buttons */
.bdc-cta-actions {
  display: flex;
  gap: 14px;
}

.bdc-cta-btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 170px;
  text-align: center;
}

/* Light Button */
.bdc-cta-btn.light {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.bdc-cta-btn.light:hover {
  transform: translateY(-2px);
}

/* Dark Button */
.bdc-cta-btn.dark {
  background: #0b1f1a;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.bdc-cta-btn.dark:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .bdc-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .bdc-cta-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}




/* Section */
.colocation-section {
  padding: 60px 0;
  background: #fffdf2;
}

/* Header */
.colocation-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.colocation-header h2 {
      color: #716f60;
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.colocation-header p {
  color: #555;
  font-size: 1rem;
}

/* Trust badges */
.trust-badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 12px;
}

.trust-badges span {
  background: linear-gradient(to right, #036b68c3 0%, #ffa163cd 100%);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Plan Card */
.plan-card {
  background: #FCFAEB;
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.plan-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.plan-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

/* Badge */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0b36a;
  color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.dark {
  background: #0b1f1a;
  color: #fff;
}

/* Features */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.plan-card ul li {
  padding-left: 22px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.95rem;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d7863e;
  font-size: 0.9rem;
}

/* Buttons */
.plan-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Button styles */
.plan-btn.primary {
  background: linear-gradient(90deg, #e19a55, #d7863e);
  color: #000;
}

.plan-btn.primary:hover {
  filter: brightness(1.05);
}

.plan-btn.outline {
  border: 2px solid #0b1f1a;
  color: #0b1f1a;
  background: transparent;
}

.plan-btn.outline:hover {
  background: #0b1f1a;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Mobile Responsive Fix
   ========================= */
@media (max-width: 480px) {

  /* Layout */
  .aurora-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .aurora-left {
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
  }

  /* Headings */
  .aurora-left .aurora-main-heading {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .aurora-left .aurora-sub-heading {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 100%;
  }

  /* CTA Buttons */
  .aurora-cta-group {
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .aurora-pill-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Gradient Button Wrapper */
  .gradient-btn-container {
    width: 100%;
    max-width: 300px;
    padding: 6px;
  }

  .gradient-btn {
    font-size: 16px;
    justify-content: center;
    width: 100%;
  }
}
