:root {
  --navy: #0F1F4B;
  --blue: #1E3A8A;
  --indigo: #3B5BDB;
  --sky: #60A5FA;
  --orange: #F97316;
  --orange-dark: #EA6B10;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-light: #EEF2FF;
  --gray: #6B7280;
  --gray-dark: #374151;
  --card-bg: #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: var(--gray-dark);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
}

/* ================= HEADER ================= */

#header {
  width: 100%;
}

/* NAVBAR */

 nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(30, 58, 138, 0.08);
      transition: box-shadow 0.3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 32px rgba(15, 31, 75, 0.10);
    }

    .logo {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--navy);
      text-decoration: none;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--gray-dark);
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--blue);
      background: var(--gray-light);
    }

    /* ─── DROPDOWN STYLES ─── */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 250px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 10px 0;
      z-index: 1001;
      border: 1px solid rgba(30, 58, 138, 0.08);
    }

    .dropdown:hover .dropdown-content {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dropdown-content li {
      list-style: none;
    }

    .dropdown-content a {
      color: var(--gray-dark);
      padding: 10px 20px;
      text-decoration: none;
      display: block;
      font-size: 0.88rem;
      transition: all 0.2s;
      border-radius: 0;
      text-align: left;
    }

    .dropdown-content a:hover {
      background-color: var(--gray-light);
      color: var(--blue);
      padding-left: 25px;
    }




/* Mobile Dropdown */
.dropdown-mobile {
  width: 100%;
}

.dropdown-content-mobile {
  display: none;
  flex-direction: column;
  padding-left: 30px;
  gap: 5px;
  width: 100%;
  margin-top: 5px;
  list-style: none;
}

.dropdown-mobile.active .dropdown-content-mobile {
  display: flex;
}

.dropdown-mobile .dropbtn-mobile i.fa-chevron-down {
  margin-left: auto;
  transition: transform 0.3s;
}

.dropdown-mobile.active .dropbtn-mobile i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-content-mobile a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--gray) !important;
  border-bottom: none !important;
  padding: 8px 0 !important;
  display: block;
}

.dropdown-content-mobile a:hover {
  color: var(--blue) !important;
}

/* Enquiry Button - Desktop */
.enquiry-btn {
  background-color: var(--sky);
  color: white;
  border: 1px solid var(--navy);
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(197, 162, 103, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  margin-left: 8px;
}

.enquiry-btn i {
  font-size: 1rem;
}

.enquiry-btn:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  color: white;
}

.enquiry-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: rgba(15, 31, 75, 0.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 280px;
  height: calc(100vh - 72px);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 25px;
}

.mobile-header span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2540;
}

.close-menu {
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  color: black;
}

.close-menu:hover {
  background: #007BFF;
  color: white;
  transform: rotate(90deg);
}

.nav-links-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.nav-links-mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a2540;
  text-decoration: none;
  padding: 8px 0;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links-mobile a i {
  width: 24px;
  color: var(--sky);
}

.nav-links-mobile a:hover {
  color: #007BFF;
  border-bottom-color: #007BFF;
}

/* Mobile Enquiry Button - Updated styling */
.btn-cta-mobile {
  display: inline-block;
  padding: 14px 30px;
  background-color: #F97316;
  /* Orange color to match desktop hover */
  color: white;
  text-decoration: none;
  border-radius: 40px;
  /* Rounded like desktop */
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  letter-spacing: 0.5px;
}

.btn-cta-mobile i {
  margin-right: 8px;
}

.btn-cta-mobile:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 31, 75, 0.2);
}

.btn-cta-mobile:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(15, 31, 75, 0.2);
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
  .nav-links a {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
}

@media screen and (max-width: 900px) {
  .nav-links {
    display: none;
    /* Hide desktop menu */
  }

  .menu-toggle {
    display: block;
    /* Show hamburger */
  }

  body {
    padding-top: 72px;
  }
}

@media screen and (min-width: 901px) {
  .mobile-menu {
    display: none;
    /* Hide mobile menu on desktop */
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}

/* ===== MODAL BOX ===== */
.modal-content {
  background: #ffffff;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn .35s ease;
}

/* ===== CLOSE BUTTON ===== */
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  color: #777;
  cursor: pointer;
}

.close-modal:hover {
  color: #000;
}
 .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            cursor: pointer;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            color: white;
            transition: all 0.2s;
            animation: bounce 3s ease-in-out infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-6px)
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1) !important;
            animation: none;
        }
/* ===== FORM TITLE ===== */
.modal h2 {
  font-size: 1.9rem;
  color: #1e2a38;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ===== SUBTITLE ===== */
.modal .subtitle {
  font-size: 0.95rem;
  color: #6c7a89;
  margin-bottom: 28px;
}

/* ===== FORM GROUP ===== */
.modal .form-group {
  margin-bottom: 18px;
}

/* ===== LABEL ===== */
.modal label {
  font-size: 0.9rem;
  color: #34495e;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* ===== REQUIRED FIELD ===== */
.modal .required-field::after {
  content: " *";
  color: #e74c3c;
}

/* ===== INPUT FIELD ===== */
.modal input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe6e9;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all .25s ease;
  background: #fafafa;
}

/* ===== INPUT FOCUS ===== */
.modal input:focus {
  outline: none;
  border-color: #007BFF;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* ===== PLACEHOLDER ===== */
.modal input::placeholder {
  color: #95a5a6;
}

/* ===== FIELD NOTE ===== */
.modal .field-note {
  font-size: 0.75rem;
  color: #7f8c8d;
  margin-top: 4px;
}

/* ===== SUBMIT BUTTON ===== */
.modal button[type="submit"] {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background: #007BFF;
  cursor: pointer;
  transition: all .25s ease;
}

.modal button[type="submit"]:hover {
  background: #0056d6;
}

/* ===== REQUIRED NOTE ===== */
.modal .required-note {
  font-size: 0.8rem;
  margin-top: 14px;
  color: #7f8c8d;
  text-align: right;
}

.modal .required-note span {
  color: #e74c3c;
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  text-align: center;
  padding: 30px 10px;
}

.success-message i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 15px;
}

.success-message h3 {
  font-size: 1.7rem;
  color: #2c3e50;
}

.success-message p {
  color: #6c7a89;
}

.success-message .btn-primary {
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

.success-message .btn-primary:hover {
  background: #0056d6;
}

/* ===== ANIMATION ===== */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .logo img {
    height: 28px;
  }

  .menu-toggle {
    font-size: 1.5rem;
  }

  .mobile-menu {
    width: 100%;
    /* Full width on very small devices */
  }

  .modal-content {
    padding: 30px 20px;
    margin: 30px auto;
  }

  .modal h2 {
    font-size: 1.6rem;
  }
}

/* ================= FOOTER ================= */

       /* footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 72px 5% 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 56px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 16px;
      display: inline-flex;
    }

    .footer-brand img {
      width: 220px;
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.65;
      max-width: 280px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 100%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      color: white;
    } */

    /* Twitter */
     /* .footer-social a:nth-child(1):hover {
            background: #1DA1F2;
        }

        .footer-social a:nth-child(2):hover {
            background: #0A66C2;
        }

        .footer-social a:nth-child(3):hover {
            background: #1877F2;
        }

        .footer-social a:nth-child(4):hover {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }

        .footer-social a:nth-child(5):hover {
            background: #FF0000;
        }
    .social-btn:hover {
      transform: translateY(-3px) scale(1.05);
      color: white;
    }

    .footer-col h4 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--sky);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      flex-wrap: wrap;
      gap: 12px;
    }

    @media (max-width: 1000px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    } */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: white;
}

/* Social Media Hover Colors */
.footer-social a:nth-child(1):hover { background: #1DA1F2; } /* Twitter */
.footer-social a:nth-child(2):hover { background: #0A66C2; } /* LinkedIn */
.footer-social a:nth-child(3):hover { background: #1877F2; } /* Facebook */
.footer-social a:nth-child(4):hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); } /* Instagram */
.footer-social a:nth-child(5):hover { background: #FF0000; } /* YouTube */

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: white;
}

.footer-col h4 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--sky);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ─── FLOATING BUTTONS ─── */
.float-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: white;
  transition: all 0.2s;
  z-index: 999;
  border: none;
  outline: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  background: #25D366;
  left: 28px;
  bottom: 28px;
  animation: bounce 3s ease-in-out infinite;
}

#scrollTop {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: rgba(30, 58, 138, 0.85); /* Semi-transparent blue */
  backdrop-filter: blur(8px); /* Glassmorphism effect */
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(15, 31, 75, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#scrollTop:hover {
  background: var(--navy);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 40px rgba(15, 31, 75, 0.25);
}

#scrollTop i {
  transition: transform 0.3s ease;
}

#scrollTop:hover i {
  transform: translateY(-2px);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-6px) }
}