/* Base Styles & Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  background-color: #fffef3;
}

/* Typography Refinements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8em;
  /* color: #ffffff; */
}

p {
  margin-bottom: 1.5rem;
}

/* Enhanced Hero Section */
.cloud-compute-hero-section {
  background: linear-gradient(135deg, #4a0080, #0080ff);
  color: white;
  padding: 8rem 2rem 6rem;
  margin-top: -10vh;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cloud-compute-hero-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.08);
  transform: rotate(-30deg);
  z-index: 1;
  backdrop-filter: blur(5px);
}

.cloud-compute-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 10vh;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cloud-compute-hero-title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}

.cloud-compute-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  opacity: 0.95;
  line-height: 1.7;
}

.cloud-compute-hero-cta {
  background-color: white;
  color: #0066cc;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cloud-compute-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background-color: #f8f9fa;
}

/* Partner Benefits Section */
.became-our-partner-container-main {
  width: 100%;
  padding: 60px 0 100px;
  /* background-color: #f8f9fc; */
  position: relative;
}

/* .became-our-partner-container-main::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: #f8f9fc;
  top: -50px;
  left: 0;
  transform: skewY(-2deg);
  z-index: 1;
} */

.became-our-partner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.became-our-partner-title {
 text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: #716f60;
    letter-spacing: 2.6px;
    font-weight: 700;
}

/* .became-our-partner-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
} */

.became-our-partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.became-our-partner-card {
  background-color: #FCFAEB;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.became-our-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background:linear-gradient(to right, #036B67 0%, #FFA163 100%);
  transition: height 0.4s ease;
}

.became-our-partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.became-our-partner-card:hover::before {
  height: 100%;
}

.became-our-partner-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.became-our-partner-icon {
  width: 70px;
  height: 70px;
  margin-right: 25px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.became-our-partner-card:hover .became-our-partner-icon {
  transform: scale(1.12) rotate(5deg);
}

.became-our-partner-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #18181b;
    margin: 30px 0 12px 0;
    line-height: 1.4;
}

.became-our-partner-description {
font-size: 14px;
    line-height: 1.6;
    color: #52525b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.became-our-partner-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  display: block;
}

.became-our-partner-card:hover .became-our-partner-image {
  transform: scale(1.05);
}

/* Products Section */
#products {
  /* background-color: #ffffff; */
  padding: 100px 30px;
  text-align: center;
  position: relative;
}

#products h2 {

text-align: center;
margin-bottom: 50px;
font-size: 18px;
color: #716f60;
letter-spacing: 2.6px;
font-weight: 700;
}
/* 
#products h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0080ff, #4a0080);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
} */

#products > p {
font-size: 14px;
    line-height: 1.6;
    color: #52525b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.product-feature {
  background: #FCFAEB;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease-in-out;
  max-width: 350px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.product-feature::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: 
linear-gradient(to right, #036B67 0%, #FFA163 100%);
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.product-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-feature:hover::before {
  transform: scaleX(1);
}

.product-feature h3 {
  font-size: 18px;
    font-weight: 600;
    color: #18181b;
    margin: 30px 0 12px 0;
    line-height: 1.4;
}

/* .product-feature h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  bottom: 0;
  left: 0;
} */

.product-feature p {
  font-size: 14px;
    line-height: 1.6;
    color: #52525b;
    margin-bottom: 20px;
    flex-grow: 1;
}
/* Container (as provided) */
.who-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.75rem);
  box-sizing: border-box;
}


.who-is-for {
    background: #fffef3;
    padding: 60px 0;
}

.who-is-for-header h3 {
    color: #716f60;
    font-size: 18px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.who-is-for-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.who-card {
    background: #FCFAEB;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 250px;
    border: 1px solid rgba(255,255,255,0.08);
}
.who-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    transition: all 0.3s ease;
    background-color: linear-gradient(135deg, #4a0080, #0080ff);;
}

.who-card h4 {
    color: #2d2c28;
    font-size: 1rem;
    margin: 0;
}

.who-card p {
    color: #6f6d5f;
    font-size: 0.85rem;
    margin: 4px 0 0;
}

.who-card .icon {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #4a0080, #0080ff);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
}
.who-card:hover .icon {
    background: linear-gradient(135deg, #4a0080, #0080ff);
    color: #0080ff;
    transition: all 0.3s ease;
}



/* Wrapper section */
.solutions-wrapper {
  /* padding: 60px 0; */
  background-color: #fffef3;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.solution-card {
  background: #FCFAEB;
  border-radius: 14px;
  padding: 26px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Icon */
.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4a0080, #0080ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* Text */
.solution-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}

.solution-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
/*------------------contact-us-form ---------------------*/

.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 50px;
  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: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 5vh 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;
}

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

.cloud-compute-form-contact-info {
  margin-bottom: 1rem;
}

.cloud-compute-form-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.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;
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  /* .cloud-compute-form-container, */
  .became-our-partner-container,
  .products-container {
    max-width: 100%;
  }
  
  .cloud-compute-hero-title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 992px) {
  .cloud-compute-hero-title {
    font-size: 2.5rem;
  }
  
  .became-our-partner-title {
    font-size: 18px;
  }
  
  #products h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .cloud-compute-hero-section {
    padding: 6rem 1.5rem 4rem;
  }
  
  .cloud-compute-hero-title {
    font-size: 2.2rem;
  }
  
  .cloud-compute-hero-subtitle {
    font-size: 1rem;
  }
  
  .became-our-partner-title {
    font-size: 18px;
  }
  
  .cloud-compute-form-container {
    flex-direction: column;
    padding: 2rem;
  }
  
  .cloud-compute-form-left {
    padding-right: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .became-our-partner-card {
    padding: 30px 25px;
  }
  
  .product-feature {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 576px) {
  .cloud-compute-hero-title {
    font-size: 1.9rem;
  }
  
  .became-our-partner-title,
  #products h2,
  .cloud-compute-form-title {
    font-size: 18px;
  }
  
  .became-our-partner-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .became-our-partner-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .became-our-partner-container-main {
    padding: 80px 0 60px;
  }
  
  #products {
    padding: 70px 20px;
  }
  
  .cloud-compute-form-container-main {
    padding: 60px 0;
  }
  
  .cloud-compute-form-container {
    padding: 1.5rem;
  }
  
  .cloud-compute-form-right {
    padding: 1.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cloud-compute-hero-content,
.became-our-partner-card,
.product-feature {
  animation: fadeIn 0.8s ease-out forwards;
}

.became-our-partner-card:nth-child(2) {
  animation-delay: 0.2s;
}

.became-our-partner-card:nth-child(3) {
  animation-delay: 0.4s;
}

.became-our-partner-card:nth-child(4) {
  animation-delay: 0.6s;
}

.product-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.product-feature:nth-child(3) {
  animation-delay: 0.4s;
}

.product-feature:nth-child(4) {
  animation-delay: 0.6s;
}
/* 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%;
  }
}



.partner-section {
  padding: 70px 0;
  background: #fffef3;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  margin-bottom: 40px;
}

/* Left card */
.partner-left,
.partner-right {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.partner-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-info p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Pricing */
.pricing-box {
  margin-top: 20px;
}

.pricing-tabs {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.price-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9fafb;
  cursor: pointer;
  font-size: 0.85rem;
}

.price-btn.active {
  background: #111827;
  color: #ffffff;
}

.pricing-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
}

.badge.popular {
  background: #fde68a;
  font-weight: 600;
}

/* Right side */
.steps {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.step {
  font-size: 0.85rem;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
}

.trust-badge {
  display: inline-block;
  background: #111827;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.partner-success {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-success span {
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* CTA */
.partner-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-radius: 16px;
  background: linear-gradient(90deg, #e6a15b, #f3b26a);
}

.partner-cta p {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
}

.apply-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.partner-success-section {
  padding: 40px 20px;
  background: #fffdf2;
}

/* ONE LINE ROW */
.partner-success-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 0;
}

/* Heading */
.partner-success-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #6b5e46;
  white-space: nowrap;
  margin: 0;
}

/* Pills container */
.partner-success-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Individual pill */
.success-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 280px;
  max-width: 100%;
  padding: 12px 26px;

  border-radius: 14px;
  border: 1px solid #e6e3d8;
  background: #FCFAEB;

  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;

  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

/* Orange dot */
.success-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f5a524;
}

/* Hover effect */
.success-tag:hover {
  transform: translateY(-2px);
  border-color: #f5a524;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* Media Queries */

/* Small devices - mobile phones (max-width: 480px) */
@media (max-width: 480px) {
  .partner-success-row {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 20px;
  }

  .partner-success-title {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 12px;
    white-space: normal;
  }

  .partner-success-tags {
    gap: 16px;
    justify-content: center;
  }

  .success-tag {
    min-width: 100%;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Medium devices - tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .partner-success-row {
    justify-content: center;
    gap: 20px;
  }

  .partner-success-title {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .partner-success-tags {
    gap: 16px;
    justify-content: center;
  }

  .success-tag {
    min-width: 45%;
    font-size: 0.9rem;
  }
}

/* Large devices - desktops (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  .partner-success-row {
    justify-content: space-around;
    gap: 20px;
  }

  .partner-success-tags {
    gap: 20px;
  }

  .success-tag {
    min-width: 250px;
  }
}

/* Extra large devices - wide screens (1201px and above) */
@media (min-width: 1201px) {
  .partner-success-row {
    justify-content: space-between;
    padding: 60px 0;
  }

  .partner-success-tags {
    gap: 24px;
  }

  .success-tag {
    min-width: 320px;
  }
}


/* Container (your global container) */
.cta-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 clamp(1rem, 4vw, 2.75rem); */
  box-sizing: border-box;
}

/* CTA Section */
.cta-bar-section {
  padding: 30px 0;
  background: transparent;
}

/* CTA Bar */
.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;

  gap: 14px;                /* 👈 controls spacing */

  background: linear-gradient(90deg, #e19a55, #d7863e);
  padding: 16px 22px;       /* 👈 slightly tighter */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Text */
.cta-text {
     margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    /* letter-spacing: 3px; */
}

/* Button */
.cta-btn {
  background: #0b1f1a;
  color: #ffffff;

  min-width: 200px;        /* balanced CTA width */
  padding: 10px 26px;      /* better horizontal presence */

  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;

  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}



.cta-btn:hover {
  background: #10352d;
  transform: translateY(-1px);
}

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

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
/* =========================
   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%;
  }
}
