* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
  background: #1a1a2e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative; /* not fixed so it scrolls with the page */
  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;
    }
}
/* Scrollbar Styling */
/* ============= ROOT + RESET ============= */
:root {
  --bg-body: #f8fafc;
  --bg-soft: #e9fff3;
  --bg-card: #ffffff;
  --bg-hero-start: #0f172a;
  --bg-hero-end: #1d3557;
  --primary: #10b981; /* Stackly emerald */
  --primary-soft: #d1fae5;
  --primary-dark: #047857;
  --text-main: #0f172a;
  --text-soft: #64748b;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-full: 999px;
  --transition-fast: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-top: 0; /* navbar is not fixed on this page */
}

/* Utility */
img {
  max-width: 100%;
  display: block;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    transform 0.08s ease;
}

.btn.full {
  width: 100%;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.18);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #065f47);
}

.btn.ghost {
  background-color: #ffffff;
  border-color: var(--border-soft);
  color: var(--text-main);
}

.btn.ghost:hover {
  background-color: var(--primary-soft);
  border-color: var(--primary);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  /* Emerald background */
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
}

.hero::before {
  /* remove background image overlay on contact page to keep solid color */
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16,185,129,0.28), transparent 60%);
  filter: blur(8px);
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 1;
  text-align: center; /* center hero text */
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0 auto;
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
}

/* ============= CONTACT CARDS (TOP 4 BOXES) ============= */
.contact-cards {
  margin-top: 0.75rem;
  padding-bottom: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.info-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), background-color var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(16, 185, 129, 0.5);
}

.info-card-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1.1rem;
  margin: 0 auto 0.9rem;
  background-color: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--primary);
}

.info-card-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.info-card-line {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.info-card-sub {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* ============= MAIN SECTION (FORM + BRANCHES) ============= */
.main-section {
  padding: 2rem 0 3.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
}

.card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.card .subtext {
  margin: 0 0 1.6rem;
  font-size: 0.98rem;
  color: var(--text-soft);
}

/* Form layout */
.form .grid-2 {
  gap: 1.3rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast);
  background-color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(16,185,129,0.08);
  background-color: #fbfdfb;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Success state */
.success-box {
  border-radius: var(--radius-lg);
  background-color: #ecfdf3;
  border: 1px solid #bbf7d0;
  padding: 2.2rem 1.8rem;
  text-align: center;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  background-color: #22c55e1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: #16a34a;
}

.success-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.success-box p {
  margin: 0 0 1.3rem;
  font-size: 0.94rem;
  color: var(--text-soft);
}

/* Branch cards */
.branches {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.branch-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 0.85rem 0.95rem;
  background-color: #f9fafb;
  transition: border-color var(--transition-fast), background-color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.branch-card:hover {
  border-color: var(--primary);
  background-color: #f0fff6;
  box-shadow: 0 12px 30px rgba(16,185,129,0.06);
  transform: translateY(-2px);
}

.branch-city {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.branch-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.87rem;
  color: var(--text-soft);
}

.branch-line svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--primary);
}



/* ============= FAQ SECTION ============= */
.faq {
  padding: 3rem 0 4rem;
}

.faq-title {
  text-align: center;
  margin: 0 0 2rem;
  font-size: 1.8rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background-color: #ffffff;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
}

.faq-question {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  cursor: pointer;
  text-align: left;
  gap: 0.8rem;
}

.faq-question-text {
  font-weight: 600;
  font-size: 0.98rem;
  color: #0f172a;
}

.faq-toggle-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
  background-color: var(--primary);
  border-color: var(--primary-dark);
  color: #ffffff;
}

/* Card header helper used across pages */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* small accent at top of info-cards */
.info-card::before {
  content: "";
  display: block;
  height: 6px;
  width: 48px;
  margin: 0 auto 0.9rem;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

/* Slightly larger submit button */
.btn.primary.full {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

/* ============= MAP STYLES ============= */
.map {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(16,185,129,0.06), rgba(16,185,129,0.03));
  margin: 1rem 0 1.25rem;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map .map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  height: 100%;
  font-size: 0.95rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease, opacity 0.22s ease, margin-top 0.22s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  margin-top: 0.5rem;
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* Footer styles removed (user will provide their own footer). */

/* ============= ADDITIONAL RESPONSIVE TWEAKS ============= */
/* Improve layout on small and medium screens */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    padding: 1.25rem;
  }

  .hero {
    padding: 3.2rem 0 3.8rem;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .contact-cards {
    margin-top: -2rem;
    padding-bottom: 0.8rem;
  }

  .nav-menu {
    top: 64px;
  }
}

/* ============= RESPONSIVE TWEAKS ============= */
@media (max-width: 480px) {
  .card {
    padding: 1.6rem 1.3rem;
  }

  .hero-inner {
    padding-inline: 1.25rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }
}

/*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;
    }
}
