     .footer {
            background: linear-gradient(135deg, #d4af37, #b8860b);
            color: white;
            padding: 80px 8% 30px;
        }

        /* Container */
        .footer-container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            max-width: 1300px;
            margin: auto;
        }

        /* Columns */
        .footer-col {
            flex: 1;
            min-width: 0;
        }

        /* Headings */
        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            width: 40px;
            height: 2px;
            background: white;
            position: absolute;
            bottom: -8px;
            left: 0;
        }

        /* Paragraph */
        .footer-col p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Links */
        .footer-col a {
            display: block;
            text-decoration: none;
            color: white;
            margin-bottom: 10px;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .footer-col a:hover {
            color: black;
            padding-left: 5px;
        }

        /* Social Icons */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .social-links a:nth-child(1) {
            background: #1877f2;
        }

        .social-links a:nth-child(2) {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        }

        .social-links a:nth-child(3) {
            background: #1da1f2;
        }

        .social-links a:nth-child(4) {
            background: #ff0000;
        }

        .social-links a:hover {
            transform: scale(1.1);
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .contact-item i {
            font-size: 14px;
            margin-top: 4px;
            color: white;
            min-width: 18px;
        }

        .contact-item:hover {
            opacity: 0.85;
            color: black;
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            margin-top: 50px;
            border-top: 1px solid #3a2a22;
            font-size: 0.9rem;
            color: white;
        }

        /* ===== RESPONSIVE (footer only) ===== */
        @media (max-width: 992px) {
            .footer-container {
                flex-direction: column;
                gap: 40px;
            }
        }

        @media (max-width: 700px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 768px) {
            .footer {
                padding: 50px 20px 20px;
            }
            .footer-container {
                gap: 30px;
            }
            .footer-col h4 {
                font-size: 1.2rem;
            }
            .contact-item {
                font-size: 0.9rem;
            }
            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
        }

        @media screen and (max-width: 480px) {
            .footer-bottom {
                font-size: 0.8rem;
            }
        }

        
.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;
}
.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;
  }
}
    .premium-card {
      transition: transform 0.45s cubic-bezier(0.2, 0.95, 0.4, 1.05), box-shadow 0.4s ease;
      will-change: transform;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .premium-card:hover {
      transform: scale(1.05);
      box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,240,0.2);
    }
    .card-text {
      transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.5s ease;
    }
    .group:hover .card-text {
      transition-delay: 0.02s;
    }
    .heading-gradient {
      background: linear-gradient(125deg, #0B5ED7 0%, #2b7fff 70%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .card-height-custom {
      height: 440px;
    }
    @media (max-width: 768px) {
      .card-height-custom {
        height: 380px;
      }
    }
    /* modal animations */
    .modal-backdrop {
      transition: opacity 0.25s ease;
    }
    .modal-container {
      transition: opacity 0.25s ease, transform 0.2s ease;
      transform: scale(0.96);
    }
    .modal-open .modal-backdrop {
      opacity: 1;
    }
    .modal-open .modal-container {
      opacity: 1;
      transform: scale(1);
    }
    #modalRoot {
      transition: visibility 0.2s;
    }
    /* custom scrollbar */
    ::-webkit-scrollbar {
      width: 5px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: #0B5ED7;
      border-radius: 10px;
    }


    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 2px);
      left: 0;
      min-width: 220px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 0.75rem;
      box-shadow: 0 10px 35px rgba(0,0,0,0.12);
      z-index: 50;
      padding: 0.5rem 0;
    }
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    .dropdown-menu a {
      display: block;
      padding: 0.65rem 1rem;
      color: #334155;
      font-weight: 500;
      text-decoration: none;
    }
    .dropdown-menu a:hover {
      background: #eff6ff;
      color: #1d4ed8;
    }

    /* ===== MOBILE PANEL STYLES ===== */
    .mobile-nav-panel {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 320px;
      height: 100%;
      background: white;
      z-index: 1000;
      transition: left 0.3s ease;
      box-shadow: 2px 0 12px rgba(0,0,0,0.1);
      overflow-y: auto;
      padding: 1.5rem;
    }
    .mobile-nav-panel.open {
      left: 0;
    }
    .mobile-nav-panel .close-menu {
      text-align: right;
      font-size: 1.5rem;
      cursor: pointer;
      margin-bottom: 1rem;
    }
    .mobile-nav-panel a {
      display: block;
      padding: 0.75rem 0;
      color: #1f2937;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid #e5e7eb;
    }
    .mobile-nav-panel a:hover {
      color: #0B5ED7;
    }
    .mobile-dropdown .dropdown-menu {
      display: none;
      position: static;
      box-shadow: none;
      padding-left: 1rem;
      background: #f9fafb;
      border: none;
      margin-top: 0.5rem;
    }
    .mobile-dropdown .dropdown-menu a {
      border-bottom: none;
      padding: 0.5rem 0;
    }
    .mobile-dropdown.open .dropdown-menu {
      display: block;
    }
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      display: none;
    }
    .overlay.active {
      display: block;
    }
    @media (min-width: 768px) {
      .mobile-nav-panel, .overlay {
        display: none;
      }
    }

    /* ===== MODAL (ENQUIRY) 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-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-modal {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 28px;
      color: #777;
      cursor: pointer;
    }
    .modal h2 {
      font-size: 1.9rem;
      color: #1e2a38;
      margin-bottom: 6px;
      font-weight: 600;
    }
    .modal .subtitle {
      font-size: 0.95rem;
      color: #6c7a89;
      margin-bottom: 28px;
    }
    .modal .form-group {
      margin-bottom: 18px;
    }
    .modal label {
      font-size: 0.9rem;
      color: #34495e;
      font-weight: 500;
      margin-bottom: 6px;
      display: block;
    }
    .modal .required-field::after {
      content: " *";
      color: #e74c3c;
    }
    .modal input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #dfe6e9;
      border-radius: 6px;
      font-size: 0.95rem;
      transition: all .25s ease;
      background: #fafafa;
    }
    .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;
    }
    .required-note {
      font-size: 0.8rem;
      margin-top: 14px;
      color: #7f8c8d;
      text-align: right;
    }
    @keyframes modalFadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
 