﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}


body {
  background-color: #fff; 
  color: #000;
  text-align: center;
  animation: fadeIn 1s ease-in; /* Added fade-in animation */
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}




/* WhatsApp Floating Button Styles */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-float img {
            width: 40px;
            height: 40px;
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-float img {
                width: 30px;
                height: 30px;
            }
        }


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, white, white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo {
  height: 45px; /* Fixed height for logo container */
  display: flex;
  align-items: center;
}


.logo img {
  height: 100px; /* Image will fill the container height */
  width: auto; /* Maintain aspect ratio */
  max-width: 180px; /* Prevent logo from being too wide */
  object-fit: contain; /* Ensure full logo visibility */
}


/* Dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
 
}
.dropdown-toggle {
  /* padding: 10px 15px; */
  /* padding: 10px 30px; */
  padding: 10px 15px;
  font-size: 18px;
  background: #1a73e8;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 114px;
  cursor: pointer; 
  margin-left: 40px;


}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%; /* right below the button */
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  min-width: 250px;
  z-index: 1;
}


.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}
.dropdown-item:hover {
  background: #f0f0f0;
}
.custom-dropdown:hover .dropdown-menu {
  display: block;
}
.custom-dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Arial', sans-serif;
}


.dropdown-toggle {
  /* padding: 10px px; */
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer; 
  margin-right: 10px;
}


.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  min-width: 250px;
  z-index: 1;
}


.dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}


.dropdown-item:hover {
  background: #f0f0f0;
}


.custom-dropdown:hover .dropdown-menu {
  display: block;
}


.badge {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  white-space: nowrap;
}


.badge.new {
  background-color: #1a73e8;
  color: white;
}


.badge.recommended {
  display: flex;
  align-items: center;
  background-color: #fbbc04;
  color: #000;
  font-weight: bold;
}


.badge.recommended .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}


/* Selected state (persists across page reloads) */
.dropdown-item.selected {
    background: #e8f0fe !important;
    color: #1a73e8 !important;
    position: relative;
    font-weight: 600;
}


/* Left accent bar for selected item */
.dropdown-item.selected::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1a73e8;
    border-radius: 0 4px 4px 0;
}


/* Click feedback (temporary effect) */
.dropdown-item:active {
    transform: scale(0.98);
    background: #d2e3fc !important;
    transition: all 0.1s ease;
}


 /* Add these styles to your existing CSS */


/* Active state when item is clicked/selected */
.dropdown-item:active {
  transform: scale(0.98); /* Slight "pressed" effect */
  background: #e0e0e0 !important; /* Darker background on click */
}


/* Selected state (persists after click) */
.dropdown-item.selected {
  background: #e8f0fe !important; /* Light blue background */
  color: #1a73e8 !important; /* Blue text */
  position: relative;
}


/* Optional: Add a left border to highlight selected item */
.dropdown-item.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #1a73e8;
}


.dropdown-toggle .arrow {
  margin-left: 8px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Rotate arrow on hover (dropdown active) */
.custom-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: #fbbc04; /* Optional: highlight on hover */
}






/* Navigation Links */
/* Navigation Links - Desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}


.nav-links li {
  display: inline;
}


.nav-links li a {
  text-decoration: none;
  color: rgb(59, 69, 207); /* Blue color for desktop */
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}


.nav-links li a:hover {
  color: #ffcc00; /* Yellow hover for desktop */
}


/* Login Button */
.nav-buttons {
  margin-left: 20px;
}


.login-btn {
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #007bff;
  color: white;
  transition: all 0.3s ease;
}


.login-btn:hover {
  background: #ffcc00;
  color: black;
}


/* Hamburger Icon (for mobile) */
.hamburger {
  display: none;
  font-size: 30px;
  color: blue;
  cursor: pointer;
}


/* Responsive Navbar */
@media (max-width: 768px) {
  .logo {
      height: 35px; /* Slightly smaller logo on mobile */
  }
  .logo img {
      max-width: 150px; /* Adjust mobile logo width */
  }


  /* Hamburger icon animation */
  .hamburger {
      display: block;
      transition: transform 0.3s ease;
      z-index: 1001; /* Above the menu */
      margin-left: auto; /* Push hamburger to right */
      padding-right: 20px;
  }
  
  .hamburger.active {
      transform: rotate(90deg);
      color: blue; /* Changes color when active */
  }


  /* Mobile menu styles */
  .nav-links {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      padding: 20px 0;
      text-align: center;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
      z-index: 1000;
  }
  
  .nav-links.active {
      display: flex;
      max-height: 650px;
      padding: 20px 0;
  }


  /* Mobile link styles - black text */
  .nav-links li a {
    font-weight: bold;
      color: black; /* Black color for mobile */
      padding: 12px 20px;
      display: block;
  }


  .nav-links li a:hover {
      
      transform: scale(1.05);
  }


  /* Menu items animation */
  .nav-links li {
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      margin: 10px 0;
  }


  .nav-links.active li {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(0.1s * var(--i));
      cursor: pointer;
  }


  /* Login button in mobile */
  .nav-buttons {
      margin: 15px 0 0 0;
      padding-top: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}




/* === GENERAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}


/* === VIDEO SECTION === */
/* === VIDEO SECTION === */
/* Reset all margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Full-width video section */
.video-section {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.video-container {
  width: 100%;
  margin: 0;
  padding: 0;
}


.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}


.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Custom play button */
.custom-play-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}


.custom-play-btn:hover {
  background: rgba(0,0,0,0.8);
}


/* Video buttons below */
.video-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  padding: 20px;
  width: 100%;
}


.btn {
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  font-size: 1rem;
}


.enroll-btn {
  background: #ff5722;
  color: white;
  border: 2px solid #ff5722;
}


.enroll-btn:hover {
  background: transparent;
  color: #ff5722;
}


.brochure-btn {
  background: transparent;
  color: white;
  margin-bottom: 2px;
  border: 2px solid white;
}


.brochure-btn:hover {
  background: white;
  color: black;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .video-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 20px;
  }
  
  .custom-play-btn {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}


/* === FEATURES SECTION === */
.features-section {
  /* background: #000; */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  margin-top: -45px;
  position: relative;
  z-index: 3;
  
}


.features-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  width: 100%;
}


.feature-item {
  text-align: center;
}


.feature-item .icon {
  margin-bottom: 10px;
}


.feature-item p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}


.feature-item strong {
  color: #000;
}


/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .video-section {
    margin-top: 25px;
    padding: 20px 10px;
  }


  .video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
   
  }
  .video-overlay {
    top: 25%;
  }


  .video-overlay h1 {
    font-size: 2rem;
    
  }


  .video-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
  }


  .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
  }


  .features-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: none;
    margin-top: 5px;
  }


  .feature-item .icon svg {
    width: 28px;
    height: 28px;
  }


  .feature-item p {
    font-size: 0.85rem;
    line-height: 1.2;
  }
}




















.carousel-container {
  text-align: center;
  color: white;
  padding: 50px 20px;
  position: relative;
  background: #121212; /* Match your page background */
}


.carousel-container h1 {
  font-size: 2.5rem;
  color: #f4f4f4;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}


.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5px;
  padding: 10px 0;
  transform: translateZ(0); /* GPU boost */
}


.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  backface-visibility: hidden; /* Prevent flickering */
}


.carousel-card {
  position: relative;
  flex: 0 0 calc(25% - 15px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  background: #121212; /* Match container background */
  border: 1px solid transparent; /* Fixes anti-aliasing artifacts */
  transform: translateZ(0); /* GPU acceleration */
}


.carousel-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}


.carousel-card img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px; /* Extend image to prevent edge artifacts */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  backface-visibility: hidden;
}


.carousel-card:hover img {
  transform: scale(1.05) translateZ(0);
}


/* Gradient fade effect on edges */
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}


.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18,18,18,0.8) 0%, transparent 100%);
}


.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(18,18,18,0.8) 0%, transparent 100%);
}


/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(33.333% - 15px);
  }
  
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 60px;
  }
}


@media screen and (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(50% - 15px);
  }


  .carousel-card img {
    height: 450px;
  width: calc(100% + 2px);
  }
  
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 40px;
  }
}


@media screen and (max-width: 480px) {
  .carousel-card {
    flex: 0 0 calc(100% - 15px);
  }


  .carousel-container h1 {
    font-size: 2rem;
  }


  .carousel-card img {
    height: 450px;
    width: calc(100% + 2px);
  }
  
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 20px;
  }
}






/* Reset */
/* Reset */
/* Reset */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  /* background: #000; */
  font-family: 'Montserrat', sans-serif;
  color: white;
  padding: 40px 20px;
}


/* Layout */
.marketing-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* Left Side Text */
.marketing-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.text-outline {
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff55;
  text-align: center;
}


.text-fill {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}


/* Right Side List */
.marketing-right ul {
  list-style: none;
  display: flex;
  font-weight: bold;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
  max-width: 350px;
}


.marketing-right li {
  display: flex;
  align-items: start;
  line-height: 1.5;
}


.marketing-right li span {
  color:#00e676;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}


.marketing-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
   /* Light background color */
}


.marketing-left {
  width: 40%;
}


.marketing-right {
  width: 50%;
}


.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px white;
  font-size: 5vw;
  font-weight: 800;
  line-height: 0.9;
  margin: 0;
}


.text-fill {
  color: white;
  font-size: 5vw;
  font-weight: 800;
  line-height: 0.9;
  margin: 10px 0;
}


.marketing-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.marketing-right ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}


.marketing-right ul li span {
  margin-right: 10px;
  color: green;
  font-weight: bold;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .marketing-section {
    flex-direction: column;
  }
  .marketing-left,
  .marketing-right {
    width: 100%;
  }
  .marketing-left {
    margin-bottom: 30px;
  }
  .marketing-right ul li {
    white-space: normal; /* Allow text wrapping on mobile */
  }
}


@media (max-width: 768px) {
  .text-outline,
  .text-fill {
    font-size: 8vw;
  }
  .marketing-right ul li {
    font-size: 14px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .text-outline,
  .text-fill {
    font-size: 2rem;
  }


  .marketing-right ul {
    font-size: 0.95rem;
    padding: 10px;
  }


  .marketing-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .marketing-right li {
    justify-content: center;
  }
}




/*  Reviews Section  */


/*  Reviews Section  */


.reviews-container {
  text-align: center;
  padding: 60px 20px;
  background-color: #121212;
  color: #fff;
  max-width: 1400px;
  margin: 0 auto;
}


.reviews-container h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}


.stars {
  font-size: 2.2rem;
  color: #DAA520;
  margin-bottom: 40px;
}


.review-slider {
  padding: 0 20px;
  margin-bottom: 30px;
}


.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin: 0 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: auto;
}


.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}


.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
  margin-right: 20px;
}


.reviewer-details {
  text-align: left;
}


.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444444;
  font-style: italic;
  position: relative;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #eeeeee;
}


.reviewer-details p {
  color: #333; /* Dark color for text */
  margin: 5px 0;
  font-size: 0.9rem;
}


.reviewer-details .author {
  font-weight: bold;
  color: #121212; /* Even darker for the name */
}


.reviewer-details .location {
  color: #666; /* Slightly lighter for location */
  font-size: 0.8rem;
}


/* Certificate Styling */
.certificate {
  margin: 20px auto 0;
  width: 90%; /* Takes up most of card width */
  max-width: 300px; /* Maximum size */
  text-align: center;
  padding-top: 15px;
  border-top: 1px dashed #d4af37;
}


.certificate img {
  width: 100%; /* Fills container width */
  height: auto;
  max-height: 180px; /* Optimal height for visibility */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}


/* Hover effect */
.certificate img:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .certificate {
      max-width: 250px;
  }
  .certificate img {
      max-height: 150px;
  }
}


@media (max-width: 480px) {
  .certificate {
      max-width: 220px;
  }
  .certificate img {
      max-height: 130px;
  }
}


.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
} 


.prev, .next {
  background: #d4af37;
  border: none;
  color: #121212;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.prev:hover, .next:hover {
  background: #ffd700;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .review-card {
      padding: 20px;
  }
  
  .reviewer-info {
      flex-direction: column;
      text-align: center;
  }
  
  .review-card img {
      margin-right: 0;
      margin-bottom: 10px;
  }
  
  .reviewer-details {
      text-align: center;
  }
}


/*  #########################Footer  ##########################       */


.footer {
  /* background-color: black; */
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}


.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  animation: fadeIn 1.5s ease-in-out;
}


.footer-columns-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}


.footer-first-column {
  flex: 1 1 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}


.footer-logo img {
  width: 200px;
  max-width: 100%;
  margin-bottom: 20px;
}


.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0;
}


.footer-social a {
  display: inline-block;
  transition: transform 0.3s ease;
}


.footer-social img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  padding: 5px;
  transition: all 0.3s ease;
  /* background: rgba(255, 255, 255, 0.1); */
}


.footer-social img:hover {
  transform: scale(1.1) rotate(10deg);
  /* background: rgba(255, 255, 255, 0.2); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.footer-download {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}


.footer-download img {
  width: 120px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}


.footer-download img:hover {
  transform: scale(1.05);
}


.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
  text-align: left;
  transition: transform 0.3s;
  margin-bottom: 20px;
}


.footer-column:hover {
  transform: translateY(-5px);
}


.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
}


.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: cyan;
}


.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-column ul li {
  margin: 12px 0;
}


.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}


.footer-column ul li a:hover {
  opacity: 1;
  color: cyan;
  transform: translateX(5px);
}


.footer-payment {
  margin: 30px 0 20px;
  text-align: center;
  font-size: 16px;
}


.footer-payment img {
  height: 40px;
  margin-left: 10px;
  vertical-align: middle;
}


.footer-bottom {
  margin-top: 20px;
  border-top: 3px solid #333;
  padding-top: 15px;
  font-size: 14px;
  animation: slideUp 1.5s ease-in-out;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-column {
      min-width: 180px;
  }
}


@media (max-width: 768px) {
  .footer-columns-container {
      justify-content: center;
      gap: 40px;
  }
  
  .footer-column {
      text-align: center;
      min-width: 160px;
  }
  
  .footer-column h4::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-download {
      flex-direction: column;
      align-items: center;
  }
  
  .footer-download img {
      width: 150px;
  }
}


@media (max-width: 576px) {
  .footer {
      padding: 30px 0;
  }
  
  .footer-first-column,
  .footer-column {
      flex: 1 1 100%;
      max-width: 300px;
  }
  
  .footer-social img {
      width: 36px;
      height: 36px;
  }
  
  .footer-download img {
      width: 130px;
  }
}


/* ===== POPUP FORMS ===== */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(0px);
  overflow-y: auto; /* Add scroll if content exceeds */
}


.popup-form.active {
  display: flex;
  opacity: 1;
  backdrop-filter: blur(5px);
}


.popup-content {
  background: linear-gradient(145deg, #ffffff, var(--background-light));
  padding: 1.5rem; /* Reduced from 2.5rem */
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh; /* Added height limit */
  overflow-y: auto; /* Enable scrolling */
  position: relative;
  box-shadow: var(--box-shadow);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  margin: 2rem 0; /* Added margin for better spacing */
}


.popup-form.active .popup-content {
  transform: translateY(0);
}
.popup-form form {
  padding: 0.5rem; /* Reduced inner padding */
}


.popup-content h2, 
.popup-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}


/* Form Elements */
.popup-form form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
}


.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1 rem;
  background-color: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
 
}


.popup-form textarea {
  min-height: 100px;
  resize: vertical;
}


.popup-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}


/* Buttons */
/* Button Base Styles */
.submit-btn,
.continue-btn, 
.sign-up-btn {
width: 100%;
padding: 0.8rem;
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


:root {
  --primary-color: #3498db;
  --primary-hover: #2980b9;
  --secondary-color: #2ecc71;
  --error-color: #e74c3c;
  --text-dark: #2c3e50;
  --text-medium: #34495e;
  --text-light: #7f8c8d;
  --border-color: #dfe6e9;
  --background-light: #f8f9fa;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}


/* ===== POPUP FORMS ===== */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(0px);
  overflow-y: auto; /* Add scroll if content exceeds */
}


.popup-form.active {
  display: flex;
  opacity: 1;
  backdrop-filter: blur(5px);
}


.popup-content {
  background: linear-gradient(145deg, #ffffff, var(--background-light));
  padding: 1.5rem; /* Reduced from 2.5rem */
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh; /* Added height limit */
  overflow-y: auto; /* Enable scrolling */
  position: relative;
  box-shadow: var(--box-shadow);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 2rem 0; /* Added margin for better spacing */
}


.popup-form.active .popup-content {
  transform: translateY(0);
}
.popup-form form {
  padding: 0.5rem; /* Reduced inner padding */
}


.popup-content h2, 
.popup-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}


/* Form Elements */
.popup-form form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
}


.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1 rem;
  background-color: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}


.popup-form textarea {
  min-height: 100px;
  resize: vertical;
}


.popup-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}


/* Buttons */
/* Button Base Styles */
.submit-btn,
.continue-btn, 
.sign-up-btn {
width: 100%;
padding: 0.8rem;
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Button Hover States */
.submit-btn:hover, 
.continue-btn:hover, 
.sign-up-btn:hover {
background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Button Active State */
.submit-btn:active, 
.continue-btn:active, 
.sign-up-btn:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Close Button Styles */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  background: none;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1001; /* Ensure it's above other elements */
  padding: 0; /* Remove default padding */
  line-height: 1; /* Fix vertical alignment */
}


.close-btn:hover {
  color: var(--error-color);
  background-color: rgba(231, 76, 60, 0.1);
  transform: rotate(90deg);
  outline: none; /* Remove focus outline */
}


/* Error Message */
.error-message {
  text-align: center;
  color: var(--error-color);
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.2rem;
}


/* ===== FORM CONTAINER ===== */
/* ===== Base Styles ===== */
:root {
  --primary: #00df9a;
  --primary-dark: #00c78b;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #f5f5f5;
  --gray: #2d2d2d;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
}


/* ===== Form Container ===== */
.form-container {
  display: flex;
  min-height: auto;
  position: relative;
  overflow: hidden;
}


/* Gradient Background Effect */
.form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,223,154,0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  animation: rotate 20s linear infinite;
}


@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ===== Form Section ===== */


.form-section {
  flex: 1;
  padding: 2rem; /* Reduced from 3rem */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Changed from center */
  max-height: auto;
  overflow-y: auto; /* Enable scrolling if content exceeds */
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.form-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--primary), #00b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  position: relative;
  display: inline-block;
}


.form-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}


/* ===== Checkbox Group ===== */
.checkbox-group {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}


.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--light);
  transition: var(--transition);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}


.checkbox-group label:hover {
  background-color: rgba(0,223,154,0.1);
  border-color: rgba(0,223,154,0.3);
  transform: translateY(-2px);
}


.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}


.checkbox-group input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}


.checkbox-group input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: var(--darker);
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ===== Form Inputs ===== */
input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray);
  border-radius: 8px;
  background-color: rgba(255,255,255,0.05);
  color:skyblue;
  font-size: 1rem;
  transition: var(--transition);
}


input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,223,154,0.2);
  background-color: rgba(0,223,154,0.05);
}


select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}


/* ===== Buttons ===== */
.continue-btn,
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), #00b8ff);
  color: var(--darker);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0,223,154,0.3);
  position: relative;
  overflow: hidden;
}


.continue-btn:hover,
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,223,154,0.4);
}


.continue-btn:active,
.submit-btn:active {
  transform: translateY(0);
}


.continue-btn::after,
.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}


.continue-btn:hover::after,
.submit-btn:hover::after {
  transform: translateX(100%);
}


/* ===== Image Section ===== */
.image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}


.form-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(10deg);
  transition: var(--transition);
  border: 1px solid rgba(0,223,154,0.3);
}


.image-section:hover .form-image {
  transform: perspective(1000px) rotateY(0deg);
}


/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.main-application-form {
  animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .form-container {
    flex-direction: column;
  }
  
  .form-section {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .image-section {
    padding: 2rem;
  }
  
  .form-image {
    max-height: 300px;
    transform: none;
  }
}


@media (max-width: 576px) {
  .form-section {
    padding: 2rem 1.5rem;
  }
  
  .form-section h3 {
    font-size: 1.5rem;
  }
  
  .checkbox-group label {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
}


/* Signup Content Section */
.signup-content {
  padding: 30px;
  background-color: #1e1e1e;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}


.signup-content h2 {
  color: #4fc3f7;
  margin-bottom: 25px;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}


.signup-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #4fc3f7;
  border-radius: 3px;
}


.benefits-list {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 20px;
}


.benefits-list p {
  color: #f5f5f5;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.6;
}


.benefits-list p::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00df9a;
  font-weight: bold;
  font-size: 1.2rem;
}


.sign-up-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #4fc3f7, #3498db);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.sign-up-btn:hover {
  background: linear-gradient(135deg, #3498db, #4fc3f7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}


.sign-up-btn:active {
  transform: translateY(0);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .signup-content {
      padding: 25px;
  }
  
  .signup-content h2 {
      font-size: 1.5rem;
  }
  
  .benefits-list p {
      font-size: 0.9rem;
      padding-left: 25px;
  }
}


@media (max-width: 480px) {
  .signup-content {
      padding: 20px;
  }
  
  .benefits-list {
      padding-left: 15px;
  }
  
  .benefits-list p {
      padding-left: 20px;
      margin-bottom: 12px;
  }
  
  .sign-up-btn {
      padding: 12px;
  }
}