:root {
    --primary: #052941;
    --secondary: #FFF200;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header & Navigation */
  header {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  nav {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 25px;
  }
  
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .login-btn {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .login-btn:hover {
    background-color: #e6d900;
    transform: translateY(-2px);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(5, 41, 65, 0.85), rgba(5, 41, 65, 0.95)), url('{% static "images/hero-bg.jpg" %}') center/cover no-repeat;
    color: var(--white);
    padding: 160px 0 100px;
    margin-top: 0;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .hero-badge {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow);
  }
  
  .btn-primary:hover {
    background-color: #e6d900;
    transform: translateY(-3px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    display: block;
  }
  
  .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  /* Trusted By Section */
  .trusted-by {
    padding: 50px 0;
    background-color: var(--light-gray);
    text-align: center;
  }
  
  .trusted-by h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
  }
  
  .partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .partner {
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .partner:hover {
    opacity: 1;
  }
  
  .partner img {
    height: 40px;
    width: auto;
  }
  
  /* How It Works Section */
  .how-it-works {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
  }
  
  .section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--medium-gray);
  }
  
  .step:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
  }
  
  .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(5, 41, 65, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
  }
  
  .step h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.3rem;
  }
  
  .step p {
    color: var(--dark-gray);
  }
  
  /* Services Section */
  .services {
    padding: 100px 0;
    background-color: var(--light-gray);
  }
  
  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .service-card:hover .service-image img {
    transform: scale(1.1);
  }
  
  .service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
  }
  
  .service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .service-features {
    margin-bottom: 20px;
  }
  
  .service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .service-feature i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
  }
  
  .service-link i {
    margin-left: 5px;
    transition: var(--transition);
  }
  
  .service-link:hover {
    color: var(--secondary);
  }
  
  .service-link:hover i {
    transform: translateX(5px);
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
  }
  
  .about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary);
    border-radius: 10px;
    z-index: -1;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
  }
  
  .about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 1.05rem;
  }
  
  .about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    width: calc(50% - 15px);
    margin-bottom: 15px;
  }
  
  .feature i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .about-cta {
    margin-top: 30px;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
  }
  
  .testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonials-list {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
  }
  
  .testimonial-card::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 1;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .author-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .author-location {
    font-size: 0.9rem;
    color: var(--dark-gray);
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
  }
  
  /* FAQ Section */
  .faq {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: rgba(5, 41, 65, 0.05);
  }
  
  .faq-question i {
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-question {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(5, 41, 65, 0.9), rgba(5, 41, 65, 0.95)), url('{% static "images/cta-bg.jpg" %}') center/cover no-repeat;
    color: var(--white);
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Footer */
  footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
  }
  
  .contact-info {
    list-style: none;
  }
  
  .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .contact-info i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .modal-content {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    animation: modalFadeIn 0.3s;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--primary);
  }
  
  .modal-title {
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 1.5rem;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
  }
  
  .form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 41, 65, 0.2);
  }
  
  .form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .form-submit:hover {
    background-color: #031f33;
  }
  
  /* Whatsapp Float Button */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero-stats {
      gap: 30px;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .about-content {
      flex-direction: column;
    }
    
    .about-image, .about-text {
      flex: none;
      width: 100%;
    }
    
    .about-image::after {
      display: none;
    }
    
    .feature {
      width: 100%;
    }
    
    .cta-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--primary);
      flex-direction: column;
      align-items: flex-start;
      padding: 80px 30px 30px;
      transition: var(--transition);
      z-index: 100;
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .nav-links li {
      margin: 15px 0;
      width: 100%;
    }
    
    .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    .hero {
      padding: 130px 0 80px;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
    
    .btn {
      width: 100%;
      text-align: center;
    }
    
    .section-title h2 {
      font-size: 1.8rem;
    }
    
    .steps {
      flex-direction: column;
    }
    
    .step {
      width: 100%;
    }
    .close-menu-wrapper {
display: none;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      padding: 120px 0 70px;
    }
    
    .hero h1 {
      font-size: 1.8rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .hero-badge {
      font-size: 0.8rem;
    }
    
    .stat-number {
      font-size: 1.8rem;
    }
    
    .section-title h2 {
      font-size: 1.6rem;
    }
    
    .testimonial-card {
      padding: 30px 20px;
    }
    
    .testimonial-text {
      font-size: 1rem;
    }
    
    .modal-content {
      padding: 30px 20px;
    }
    
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 24px;
      bottom: 20px;
      right: 20px;
    }
  }