body {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
  }
  
  .contact-info {
    max-width: 1500px;
    gap:20px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .info-item {
    flex: 1 1 22%;
    gap: 10px;
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #333;
    font-size: 15px;
    min-width: 250px;
  }
  
  .info-item i {
    margin-right: 10px;
    color: #007BFF;
    font-size: 18px;
    min-width: 20px;
  }
  



/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004080;
    padding: 15px 40px;
    color: white;
    flex-wrap: wrap;
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  .logo-img {
    height: 40px; /* adjust size as needed */
    margin-right: 8px;
  }
  
  
 
  
  .navbar ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  .navbar a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    padding-bottom: 4px;
  }
  
  /* Underline element (hidden by default) */
  .navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #FFD700;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hover - underline expands */
  .navbar a:hover::after {
    width: 100%;
  }
  
  /* Hover - color change + glow */
  .navbar a:hover {
    color: #FFD700;
  
  }
  
  
  .login-btn {
    background-color: #FFD700;
    color: #004080 !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 500;
  }
  
  .login-btn:hover {
    background-color: #e6c200;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .main-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 15px;
    }
  }




  
.slider-container {
    width: 100vw;
    max-width: 100%;
    height: 600px;
    margin:  0;
    position: relative;
    user-select: none;
    overflow: hidden;
  }
  
  /* Full image visible initially */
  .full-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 1;
  }
  
  /* Puzzle grid container */
  .puzzle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0; /* Hidden initially */
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
  
  /* Each piece */
  .puzzle-piece {
    background-size: 400% 300%;
    background-repeat: no-repeat;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Text overlay *//* Add an overlay behind the text */
.slider-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;           /* Overlay height */
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
    z-index: 4;
  }
  
  /* Slide text style */.slide-texts {
  position: absolute;
  width: 100%;
  bottom: 300px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 0, 0, 0.6);
  padding: 0 15px;
  z-index: 5;
  user-select: none;
}

.slide-text {
  display: none;
}

.slide-text.active {
  display: block;
}

.highlight {
  color: #ff6f61;
}

  
  
  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    color: #222;
    font-size: 40px;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
  
  .nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
  }
  
  .nav-prev {
    left: 20px;
  }
  
  .nav-next {
    right: 20px;
  }

  .glow-button {
    position: relative;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    z-index: 1;
  }
  
  .glow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #ffffff55 10%, transparent 70%);
    animation: rotateGlow 4s linear infinite;
    z-index: 0;
    opacity: 0.4;
  }
  
  .glow-button:hover {
    box-shadow: 0 8px 20px rgba(78, 84, 200, 0.6);
    transform: scale(1.05);
  }
  
  .glow-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    border-radius: 50px;
  }
  
  .glow-button:hover::after {
    opacity: 1;
  }
  
  @keyframes rotateGlow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  


  .about-fullwidth {
    width: 100%;
    background: white;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.1);
    overflow: hidden;
  }
  
  .about-wrapper {
    display: flex;
    min-height: 450px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Image Section */
  .about-image {
    flex: 1 1 50%;
    overflow: hidden;
  }
  .about-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  /* Text Section */
  .about-text {
    flex: 1 1 50%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }
  .about-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #222;
  }
  .about-text h2 span {
    color: #f50057;
  }
  .about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* Accordion */
  .features-accordion {
    margin-top: 1.5rem;
  }
  .features-accordion details {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.05);
    transition: background 0.3s ease;
  }
  .features-accordion details[open] {
    background: #ffe6f0;
    box-shadow: 0 6px 14px rgb(245 0 87 / 0.3);
  }
  .features-accordion summary {
    font-weight: 600;
    font-size: 1.15rem;
    outline: none;
    list-style: none;
  }
  .features-accordion details p {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: #444;
  }
  
  /* Call to action button */
  .cta-btn {
    margin-top: 10px;
    align-self: start;
    padding: 0.85rem 2rem;
    background: linear-gradient(45deg, #f50057, #ab47bc);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgb(171 71 188 / 0.7);
    transition: background 0.4s ease;
  }
  .cta-btn:hover {
    background: linear-gradient(45deg, #ab47bc, #f50057);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-wrapper {
      flex-direction: column;
      min-height: auto;
    }
    .about-image,
    .about-text {
      flex: 1 1 100%;
      padding: 2rem 3rem;
    }
    .about-text h2 {
      font-size: 2.4rem;
    }
    .cta-btn {
      width: 100%;
      text-align: center;
      padding: 1rem;
    }
  }



  .stats-section {
    background: #3483dd;
    color: white;
    padding: 10px 10px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .stats-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 1 1 200px;
  }
  
  .stat-item .count {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
    min-width: 80px;
  }
  
  .stat-item p {
    font-size: 1.2rem;
    margin-top: 0.3rem;
    font-weight: 600;
  }
  

  .testimonial-section {
    max-width: 1600px;
    margin: 20px auto;
    
     max-height: 1000px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
  }
  
  .testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    left: 10%;
    font-weight: 700;
    text-align: center;
  }
  
  .testimonial-slider {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px 60px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
  }
  
  .testimonial-card {
    flex: 0 0 calc(33.333% - 13.33px); /* 3 cards per view */
    background: white;
    height: 300px;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  
  .testimonial-content p {
    font-style: italic;
    margin: 0 0 10px 0;
  }
  
  .testimonial-content h4 {
    font-weight: 600;
    color: #007bff;
    margin: 0;
    font-size: 0.95rem;
  }
  
  .prev-btn,
  .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    color: white;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 22px;
    user-select: none;
    transition: background-color 0.3s ease;
    z-index: 10;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    background: #0056b3;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
  
  /* Responsive */
  
  @media (max-width: 900px) {
    .testimonial-card {
      flex: 0 0 calc(50% - 10px); /* 2 cards per view */
    }
  }
  
  @media (max-width: 600px) {
    .testimonial-card {
      flex: 0 0 100%; /* 1 card per view */
    }
    .testimonial-slider {
      padding: 20px 40px;
    }
    .prev-btn, .next-btn {
      padding: 10px 14px;
      font-size: 18px;
    }
    .testimonial-section h2 {
      text-align: center;
    }
  }
  





.loan-plans-section {
  padding: 80px 40px;
  background: #f9fbff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.loan-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.loan-card {
  position: relative;
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  z-index: 0;
  overflow: hidden;
}

.loan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #007bff44;
}

.loan-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.loan-card:hover::before {
  opacity: 1;
}

.loan-card i {
  font-size: 2.5rem;
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-block;
}

.loan-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.loan-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.loan-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.loan-btn:hover {
  background: #0056b3;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff5722;
  color: white;
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: bold;
}




.consult-section {
  position: relative;
  background-image: url('./image/blue-bg.png'); /* 🟦 Full section background */
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.consult-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.6); /* Blue tint */
  z-index: 1;
}

.consult-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
  z-index: 2;
  flex-wrap: wrap;
}

.consult-content {
  flex: 1;
  max-width: 600px;
}

.consult-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.consult-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.consult-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #ffffff;
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.consult-btn:hover {
  background-color: #f0f0f0;
}

.consult-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .consult-container {
    flex-direction: column;
    text-align: center;
  }

  .consult-content {
    max-width: 100%;
  }

  .consult-image-side {
    margin-top: 20px;
  }

  .consult-image-side img {
    width: 80%;
  }
}




.how-it-works-line {
  max-width: 1500px;
  background-color: white;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}


.how-it-works-image {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.how-it-works-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}




.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #ff6f00;  /* strong orange */
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 500;
}

.steps-wrapper {
  position: relative;
  overflow-x: auto;
  padding: 30px 10px 10px 10px;
}

/* The horizontal line behind the circles */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 50px; /* vertically aligned with circles */
  left: 10px;
  right: 10px;
  height: 2px;
  background:rgb(255, 153, 0);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.4), 0 0 6px rgba(255, 127, 0, 0.4);
  z-index: 0;
}

.steps-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 10px;
  margin-bottom: 40px;
  min-width: 700px;
  z-index: 1;
}

.circle {
  background: #fff;
  border: 3px solid #ff7f00; /* brighter orange border */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #ff7f00; /* warm orange */
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.3);
}

.circle:hover {
  background-color: #0099ff; /* bright blue hover */
  color: #fff;
  border-color: #0099ff;
  box-shadow: 0 0 20px #0099ffcc;
}

.circle.active {
  background: #007bff; /* deep blue active */
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 0 25px #007bffcc;
}

.steps-content {
  display: flex;
  justify-content: space-between;
  min-width: 700px;
  padding: 0 10px;
  gap: 10px;
  z-index: 2;
  position: relative;
}

.step-content {
  width: 140px;
  text-align: center;
  font-size: 1rem;
  color: #444;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.step-content.active {
  opacity: 1;
  font-weight: 700;
  color: #28a745; /* fresh green */
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #222;
}



.founder-section {
 
  position: relative;
  background: linear-gradient(135deg, #e8f0ff, #f4fff9);
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.founder-section h1{
  font-size: 2rem;

}
.founder-slider {
  display: flex;
  overflow: hidden;
  gap: 30px;
  max-width: 100%;
  scroll-behavior: smooth;
  padding: 20px 0;
  box-sizing: border-box;
}

.founder-card {
  flex: 0 0 48%; 
  height: 500px;/* Show 2 cards fully side by side */
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-card .founder-quote {
  min-height: 140px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 25px;
  color: #333;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 800px) {
  .founder-card {
    flex: 0 0 100%;
  }
}


.founder-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://svgshare.com/i/15PB.svg') no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
}

.founder-section h2 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 25px;
}

.founder-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.founder-image:hover {
  transform: scale(1.05);
}

.founder-quote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  min-height: 160px;
}

.founder-name {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #444;
}

.signature {
  bottom: 10px;
  height: 50px;
}

@media (max-width: 600px) {
  .founder-section h2 {
    font-size: 2rem;
  }

  .founder-quote {
    font-size: 1rem;
  }
}





.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #003366;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
 
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  padding: 15px 10px;
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0055aa;
}

.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Rotate the icon when active */
.faq-question.active .faq-icon {
  transform: rotate(180deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 10px 0;
  color: #333;
}







.request-callback-section {
  position: relative;
  background-image: url('./image/Gemini_Generated_Image_rn4r3rrn4r3rrn4r-min.png'); /* 👈 Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  overflow: hidden;
}

.request-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 51, 0.6); /* dark transparent blue */
  z-index: 1;
}

.request-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  color: rgb(136, 34, 34);
}

.request-left,
.request-right {
  flex: 1;
  min-width: 300px;
}

.request-right h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.request-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

.request-right a {
  color: #ffcc00;
  text-decoration: underline;
}
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255, 255, 255, 0.12);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
}

.callback-form label {
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.callback-form input,
.callback-form select {
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.callback-form input::placeholder {
  color: #070707;
}

.callback-form input:focus,
.callback-form select:focus {
  border-color: #ffcc00;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.callback-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 16 16' height='16' width='16'%3E%3Cpath d='M4.646 6.646a.5.5 0 011 0L8 9.293l2.354-2.647a.5.5 0 11.708.708l-3 3a.5.5 0 01-.708 0l-3-3a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 40px;
}

.submit-btn {
  background-color: #ff9900;
  color: #003366;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
 
  
}

.submit-btn:hover {
  background-color: #33ff81;
  transform: translateY(-2px);
}






/* Footer Styles */
.footer-bg {
  position: relative;
  background: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px 30px;
  overflow: hidden;
}

.footer-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-content .top h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #00ffe7;
}

.footer-content .top p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-content .cta {
  display: inline-block;
  background: #00ffe7;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.footer-content .cta:hover {
  background: #00c2b2;
}

/* Middle link sections */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
  text-align: left;
  gap: 20px;
}

.footer-links .box {
  flex: 1 1 250px;
}

.footer-links h3 {
  margin-bottom: 15px;
  color: #00ffe7;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links .social a {
  font-size: 20px;
  margin-right: 15px;
  color: #ccc;
  transition: 0.3s;
}

.footer-links .social a:hover {
  color: #00ffe7;
}

/* Bottom bar */
.footer-content .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.scroll-up {
  background: #00ffe7;
  border: none;
  color: #000;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.scroll-up:hover {
  background: #00c2b2;
}

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

  .footer-links .box {
    margin-bottom: 20px;
  }

  .footer-content .bottom {
    flex-direction: column;
    gap: 15px;
  }
}
