* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
     padding-top: 90px;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}
.nav-logo img {
    width: 140px;        /* bigger size for mobile */
    height: auto;
}

@media (min-width: 768px) {
    .nav-logo img {
        width: 180px;    /* normal size for tablet+ */
    }
}

@media (min-width: 1024px) {
    .nav-logo img {
        width: 200px;    /* normal size for desktop */
    }
}
/* ------------------------------ */
/* ------------------------------ */
/* GLOBAL STYLES */
/* ------------------------------ */
:root {
  --emerald: #10b981;
  --orange: #f97316;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --stone: #f8f7f5;
  --text-muted: #6b7280;
  --primary: #2563eb;
  --primary-hover: #1e4fc4;
  --white: #ffffff;
  --radius: 14px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.text-center { text-align: center; }
.white { color: white; }

/* Spacing */
.py-lg { padding: 80px 0; }
.py-md { padding: 60px 0; }

/* ------------------------------ */
/* HERO SECTION */
/* ------------------------------ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, #2563eb11, #6b5ff711);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #2563eb22 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-badge {
  padding: 8px 16px;
  background: #2563eb22;
  border-radius: 20px;
  color: var(--primary);
  font-weight: 600;
}

.hero-title {
  font-size: 48px;
  margin: 16px 0 8px;
}

.hero-sub {
  max-width: 480px;
  margin: auto;
  color: var(--text-muted);
}

/* ------------------------------ */
/* INFO GRID */
/* ------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.info-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.emerald { background: var(--emerald); }
.orange { background: var(--orange); }
.blue { background: var(--blue); }
.purple { background: var(--purple); }

.muted { color: var(--text-muted); }

/* ------------------------------ */
/* SPLIT GRID (FORM + MAP) */
/* ------------------------------ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.panel {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ------------------------------ */
/* FORM */
/* ------------------------------ */
.form .field {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.grid {
  display: grid;
}

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gap { gap: 20px; }

/* Button */
.btn.primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary:hover {
  background: var(--primary-hover);
}

.btn.outline {
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
}

/* Spinner */
.spinner {
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

.hidden { display: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Error Text */
.field-error {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
}
#formPanel {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ------------------------------ */
/* CUSTOM SELECT */
/* ------------------------------ */
.custom-select {
  position: relative;
}

.select-trigger {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.select-options {
  position: absolute;
  width: 100%;
  top: 110%;
  left: 0;
  background: white;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 6px 0;
  display: none;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.select-options li {
  padding: 10px 14px;
  cursor: pointer;
}

.select-options li:hover {
  background: #f1f5f9;
}

/* ------------------------------ */
/* SUCCESS BOX */
/* ------------------------------ */
.success-box {
  text-align: center;
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
}

.success-emoji {
  font-size: 42px;
}

/* ------------------------------ */
/* MAP PANEL */
/* ------------------------------ */
.map-box {
  height: 300px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.offices-card {
  padding: 16px;
  background: #f9fafb;
  border-radius: var(--radius);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.globe {
  font-size: 20px;
  margin-right: 6px;
}

/* ------------------------------ */
/* FAQ */
/* ------------------------------ */
.faq summary {
  padding: 14px;
  background: #f8fafc;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

.faq-body {
  padding: 12px 0 0;
}

.faq {
  margin-bottom: 16px;
}

/* ------------------------------ */
/* SOCIAL CTA */
/* ------------------------------ */
.bg-gradient {
  background: linear-gradient(135deg, #2563eb, #6b5ff7);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #1f2937;
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.2);
}

/* ------------------------------ */
/* REVEAL ANIMATION */
/* ------------------------------ */


.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */

@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 34px; }
  .cols-2 { grid-template-columns: 1fr; }
}


/*footer*/

.site-footer {
    background: linear-gradient(135deg, #0a0f24, #111b3b);
    color: #d9e4ff;
    padding: 70px 20px 35px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* BRAND SECTION */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c7e8;
    margin-bottom: 20px;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
    margin-top: 25px;
}

.subscribe-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #39466a;
    background: #1a2547;
    color: white;
    outline: none;
    transition: 0.3s;
}

.subscribe-input:focus {
    border-color: #6c92ff;
}

.subscribe-button {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5e2bff, #3d94ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #3a20ff, #2d7aff);
}

.subscribe-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #93a3c7;
}

/* LINKS SECTION */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #3b82ff;
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b5c6e4;
    text-decoration: none;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    color: #92a3ca;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.footer-legal a {
    color: #b7cbff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b2647;
    padding: 10px;
    transition: 0.3s;
    filter: grayscale(30%);
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3b82ff;
    filter: grayscale(0%);
    box-shadow: 0px 0px 12px rgba(59, 130, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-columns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
