h1, h2, h3, h4 {


    font-family: "Lato", sans-serif;
    font-weight: 800 !important;
}

p, small, li, ul, a, button {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300;
}

.footer {
      background:#000;
      text-align: center;
      color: white;
      margin-bottom: -50px;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', system-ui, sans-serif;
    }

    .footer-content {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      text-align: center;
      gap: 40px;
      justify-content: space-between;
    }

    .footer-logo-section {
      flex: 1;
      min-width: 250px;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 16px;
    }

    .footer-description {
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 20px;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .social-icon {
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #FFB81C; /* Gold accent */
      color: #000;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      background: #e0a000;
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
    }

    .footer-copyright {
      max-width: 1000px;
      margin: 30px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.15);
      text-align: center;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    @media (max-width: 600px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-socials {
        justify-content: center;
      }
    }


     .whatsapp-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9990;
    }

    .whatsapp-btn {
      background: #25D366; /* WhatsApp green */
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      font-size: 28px;
      transition: all 0.3s ease, transform 0.2s;
      animation: pulse 2s infinite;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1) rotate(12deg);
      box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
      animation: none;
    }

    .whatsapp-btn:active {
      transform: scale(0.95);
    }

    /* Pulse animation for attention */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
      70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* Tooltip (optional) */
    .whatsapp-tooltip {
      position: absolute;
      bottom: 72px;
      right: 0;
      background: #333;
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 14px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .whatsapp-cta:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateY(0);
    }

    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      right: 18px;
      border-width: 6px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
    }


    
    .faq-section {
      max-width: 1200px;
      font-family: "Poppins", sans-serif !important;
      margin: 60px auto;
     
      padding: 0 20px;
    }

    .faq-container {
      display: flex;
       border: 1px dotted #000;
      flex-wrap: wrap;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .faq-content {
      flex: 1;
      min-width: 300px;
      padding: 50px 40px;
    }

    .faq-header {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 32px;
      color: var(--blue);
      position: relative;
    }

    .faq-header::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--gold);
      border-radius: 2px;
    }

    .faq-item {
      margin-bottom: 20px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .faq-question {
      padding: 18px 24px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #c6def7;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: #edf2ff;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--red);
      font-weight: bold;
    }

    .faq-item.active .faq-question::after {
      content: '−';
    }

    .faq-answer {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      background: white;
      transition: max-height 0.35s ease, padding 0.35s ease;
      color: #4b5563;
    }

    .faq-item.active .faq-answer {
      padding: 0 24px 20px;
      max-height: 500px;
    }

    .faq-image {
      flex: 1;
      min-width: 300px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .faq-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .faq-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(236, 205, 204, 0.15), rgba(171, 186, 235, 0.15));
    }

    /* Responsive */
    @media (max-width: 992px) {
      .faq-container {
        flex-direction: column;
      }
      .faq-content,
      .faq-image {
        width: 100%;
      }
      .faq-content {
        padding: 40px 24px;
      }
      .faq-image {
        min-height: 300px;
      }
    }

        .btn-about {
      background: linear-gradient(90deg, var(--red), var(--blue));
      color: white;
    }

    .btn-contact {
      background: var(--gold);
      color: var(--dark);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Modal Base */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);

      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }

    .modal.show {
      opacity: 1;
      visibility: visible;
      z-index: 9999 !important;
    }

    .modal-content {
      position: relative;
      background: white;
      width: 90%;
      max-width: 600px;
      margin: 40px auto;
      border-radius: 16px;
      overflow: hidden;
      transform: translateY(20px);
      transition: transform 0.4s ease;
       z-index: 9999 !important;
    }

    .modal.show .modal-content {
      transform: translateY(0);
    }

    .modal-header {
      background: linear-gradient(90deg, var(--red), var(--blue));
      color: white;
      padding: 20px 24px;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .modal-body {
      padding: 28px;
      max-height: 70vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.2);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-close:hover {
      background: rgba(255,255,255,0.3);
    }

    /* About Us Content */
    .about-text {
      line-height: 1.7;
      color: var(--dark);
    }

    .about-text p {
      margin-bottom: 16px;
    }

    /* Contact Form */
    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: var(--dark);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
    }

    .btn-submit {
      background: var(--gold);
      color: var(--dark);
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      font-size: 1rem;
    }

    .btn-submit:hover {
      background: #e0a000;
    }

    @media (max-width: 600px) {
      .modal-content {
        width: 95%;
        margin: 20px auto;
      }
      .modal-body {
        padding: 20px;
      }
    }





        .modal-btn i {
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .modal-btn:hover i {
      transform: scale(1.2);
    }

    /* Modal Overlay (BackDrop) */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.315);
      backdrop-filter: blur(8px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Modal Content */
    .modal-content {
      background: #fdfeff;
      color: #070c0e;
      width: 90%;
      max-width: 900px;
      max-height: 90vh;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
      transform: scale(0.95) translateY(20px);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    /* Modal Header */
    .modal-header {
      padding: 24px 30px;
      background: #2F9FCB;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-header h3 {
      font-size: 29px;
      font-weight: 600;
      color: white;
    }

    .modal-close {
      background: none;
      border: none;
      color: white;
      font-size: 30px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(90deg);
    }

    /* Modal Body */
    .modal-body {
      padding: 30px;
      color: #1A1F26;
      font-size: 16px;
      line-height: 1.8;
      flex: 1;
      overflow-y: auto;
    }

    .modal-body h4 {
      color: #2F9FCB;
      margin: 20px 0 12px;
      font-size: 19px;
    }

    .modal-body ul {
      padding-left: 20px;
      margin: 12px 0;
    }

    .modal-body li {
      margin-bottom: 8px;
    }

    .highlight {
      color: #2F9FCB;
      font-weight: 600;
    }

    /* Modal Footer */
    .modal-footer {
      padding: 20px 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: right;
    }

    .modal-footer a {
      background: #2F9FCB;
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .modal-footer a:hover {
      background: #258aae;
    }

    /* Full-Screen on Large Screens */
    @media (min-width: 1024px) {
      .modal-content {
        width: 95%;
        max-width: none;
        height: 90vh;
        border-radius: 0;
        border-radius: 20px;
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
     .modal-content  h1 {
        font-size: 28px;
      }
     
   
      .modal-header h3 {
        font-size: 20px;
      }
      .modal-body {
        font-size: 15px;
        padding: 20px;
      }
      .modal-footer {
        padding: 15px 20px;
      }
    }

    @media (max-width: 480px) {
      .modal-content {
        width: 95%;
        border-radius: 16px;
      }
      .modal-close {
        font-size: 26px;
      }
    }


    

        .contact-container {
            max-width: 600px;
            width: 100%;
            background-color: #fff; /* White background for the form container */
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

      
        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            color: #000; /* Black */
            font-weight: 500;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus,
        select:focus {
            border-color: #007749; /* Green */
            outline: none;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-container button {
            background-color: #007749; /* Primary Green */
            color: white;
            padding: 14px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

       .contact-container button:hover {
            background-color: #005f3a; /* Darker Green on hover */
        }

       .contact-container button:active {
            transform: scale(0.98); /* Slight scale down on click */
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .popup-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.3s ease-out;
        }

        .popup-content h2 {
            color: #007749; /* Green */
            margin-top: 0;
        }

        .popup-content p {
            color: #000; /* Black */
        }

        .close-popup {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007749; /* Green */
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Animation for form elements */
        .form-group {
            animation: slideInUp 0.4s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group:nth-child(2) { animation-delay: 0.1s; }
        .form-group:nth-child(3) { animation-delay: 0.2s; }
        .form-group:nth-child(4) { animation-delay: 0.3s; }
        .form-group:nth-child(5) { animation-delay: 0.4s; }
        .form-group:nth-child(6) { animation-delay: 0.5s; }
