* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif;
}

body {
  color: #222;
  padding-top: 110px; /* adjust to match navbar height */
}

/* HEADER */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;   /* was 1200px */
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 900px) {
  .main-header {
    height: 110px;
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;  
  font-weight: bold;
}

/* Logo image */
.logo-img {
  height: 70px; /* adjust as needed */
  width: auto;
}

/* Main logo text */
.logo-text {
  color: #ffffff;        /* Meghna Saree text color */  /* Main text */
  font-size: 18px;
  line-height: 1.2;
}

/* Subtitle text */
.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #ffcc00;        /* NBFC Services color */  /* Subtitle */
}

@media (max-width: 992px) {
  .logo-img {
    height: 60px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .logo {
    gap: 8px;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text {
    font-size: 15px;
  }

  .logo-text span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }

  .logo-text {
    font-size: 14px;
  }

  .logo-text span {
    font-size: 9px;
  }
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}


.profile-menu {
  position: relative;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}

.profile-name {
  padding: 6px 12px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Username */
.dropdown-btn {
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  cursor: pointer;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;               /* Directly below name */
  right: 0;
  background: #111;
  min-width: 150px;
  display: none;
  z-index: 999;
  border-radius: 4px;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #333;
}

/* ⭐ IMPORTANT FIX ⭐ */
/* Keep dropdown open when hovering ANYWHERE inside */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* =========================
   HERO SECTION
========================= */

.finbank-hero {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
}

/* HERO BACKGROUND IMAGE */
.finbank-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* DARK / GLASS OVERLAY */
.finbank-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.25)
    );
    display: flex;
    align-items: center;
}

/* =========================
   CONTENT (NEW ANIMATION)
========================= */
.finbank-hero-content {
    max-width: 680px;
    color: #fff;
    padding: clamp(40px, 8vw, 80px) 0;

    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    animation: heroReveal 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}

/* HEADLINE */
.finbank-hero-content h1 {
    font-size: clamp(28px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

/* Accent line animation */
.finbank-hero-content h1::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #b30000;
    margin-top: 16px;
    animation: lineReveal 0.8s ease forwards;
    animation-delay: 0.9s;
}

/* SUBTEXT */
.finbank-hero-content p {
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 540px;

    opacity: 0;
    animation: softFade 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* BUTTON GROUP */
.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    opacity: 0;
    transform: scale(0.95);
    animation: buttonPop 0.6s ease forwards;
    animation-delay: 1s;
}

/* PRIMARY BUTTON */
.hero-buttons .btn-primary {
    background: #b30000;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    min-width: 180px;
    text-align: center;
}

.hero-buttons .btn-primary:hover {
    background: #8f0000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* OUTLINE BUTTON */
.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    min-width: 180px;
    text-align: center;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #111;
}

/* =========================
   KEYFRAMES (NEW)
========================= */
@keyframes heroReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes softFade {
    to {
        opacity: 1;
    }
}

@keyframes buttonPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineReveal {
    to {
        width: 90px;
    }
}

/* =========================
   LARGE SCREENS (≥1400px)
========================= */
@media (min-width: 1400px) {
    .finbank-hero-content {
        max-width: 750px;
    }
}

/* =========================
   TABLETS (≤1024px)
========================= */
@media (max-width: 1024px) {
    .finbank-hero {
        min-height: 90vh;
    }

    .finbank-hero-content {
        max-width: 600px;
    }
}

/* =========================
   TABLETS & MOBILES (≤900px)
========================= */
@media (max-width: 900px) {
    .finbank-hero {
        min-height: 85vh;
    }

    .finbank-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .finbank-hero-content h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .finbank-hero-overlay {
        background: linear-gradient(
            rgba(0,0,0,.7),
            rgba(0,0,0,.6)
        );
    }
}

/* =========================
   SMALL MOBILES (≤480px)
========================= */
@media (max-width: 480px) {
    .finbank-hero {
        min-height: 75vh;
    }

    .hero-buttons a {
        width: 100%;
    }
}

/* =========================
   EXTRA SMALL DEVICES (≤360px)
========================= */
@media (max-width: 360px) {
    .finbank-hero-content h1 {
        font-size: 26px;
    }
}



/* ==================================================
   LOAN & FINANCIAL SERVICES SECTION
================================================== */

.loan-services {
  padding: 80px 20px;
  background: #f7f7f7;
}

.loan-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.loan-services-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.loan-services-sub {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* ==================================================
   SWIPER CORE FIX (VERY IMPORTANT)
================================================== */

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto;
}

/* ==================================================
   SLIDER CONTAINER
================================================== */

.loanServicesSlider {
  padding: 10px 10px 60px;
}

/* ==================================================
   SERVICE CARD
================================================== */

.loan-service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.loan-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.25);
}

/* ==================================================
   IMAGE
================================================== */

.loan-service-image {
  width: 100%;
  height: 160px; /* IMPORTANT: card image height */
  overflow: hidden;
}

.loan-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.loan-service-card:hover img {
  transform: scale(1.1);
}

/* ==================================================
   TEXT
================================================== */

.loan-service-card h4 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.loan-service-card p {
  font-size: 14px;
  color: #666;
  padding: 0 16px;
  margin-top: 8px;
  line-height: 1.6;
}

/* ==================================================
   SWIPER CONTROLS
================================================== */

.swiper-button-next,
.swiper-button-prev {
  color: #c8102e;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #c8102e;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 992px) {
  .loan-services-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .loan-services-title {
    font-size: 28px;
  }

  .loan-services-sub {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .loan-services {
    padding: 60px 15px;
  }

  .loan-services-title {
    font-size: 24px;
  }
}
/* ===============================
   SERVICES HERO
================================ */

.services-hero {
    position: relative;
    min-height: clamp(260px, 45vh, 520px);
    background: url("../images/services.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Background animation */
    animation: heroBgZoom 1.4s ease forwards;
}

/* Overlay */
.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.55)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

/* Heading animation */
.services-hero-content h1 {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 12px;

    opacity: 0;
    transform: translateY(30px);
    animation: heroTextUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

/* Subtitle animation */
.services-hero-content p {
    font-size: clamp(14px, 2.5vw, 18px);
    opacity: 0;
    line-height: 1.6;

    transform: translateY(20px);
    animation: heroTextUp 0.9s ease forwards;
    animation-delay: 0.6s;
}

/* ===============================
   KEYFRAMES
================================ */

@keyframes heroTextUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBgZoom {
    from {
        background-size: 108%;
    }
    to {
        background-size: 100%;
    }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
    .services-hero {
        animation: none; /* cleaner on mobile */
    }
}


/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.services-container {
  max-width: 1320px;
  margin: auto;
}

/* ================= GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

/* ================= CARD ================= */

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

/* ================= IMAGE ================= */

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* ================= CONTENT ================= */

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
  text-align: center;
  background: #ffffff;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-content {
  transform: translateY(-10px);
}

.service-card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 10px;
}

.service-card-content p {
  font-size: 15px;
  color: #5a6473;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ================= BUTTON ================= */

.service-btn {
  padding: 12px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.service-btn:hover {
  background: linear-gradient(135deg, #084298, #0d6efd);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .service-card img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 70px 16px;
  }

  .service-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .service-card img {
    height: 180px;
  }

  .service-btn {
    width: 100%;
  }
}


/* =========================
   CAREER SECTION
========================= */

.career-section {
    padding: clamp(70px, 8vw, 100px) 20px;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    overflow: hidden;
}

.career-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

/* =========================
   SCROLL ANIMATION BASE
========================= */

.animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-40px);
}

.animate-right {
    transform: translateX(40px);
}

.animate-up {
    transform: translateY(25px);
}

/* When section is visible */
.animate.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* =========================
   LEFT CONTENT
========================= */

.career-content .career-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #b30000;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.career-content h2 {
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.25;
    margin-bottom: 18px;
    color: #222;
}

.career-content h2 span {
    color: #b30000;
}

.career-content p {
    font-size: clamp(14px, 2.2vw, 16px);
    color: #555;
    line-height: 1.8;
    max-width: 560px;
}

/* =========================
   BUTTONS
========================= */

.career-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    transition: all .3s ease;
}

.btn-primary {
    background: #b30000;
    color: #fff;
}

.btn-primary:hover {
    background: #8f0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.btn-outline {
    border: 2px solid #b30000;
    color: #b30000;
}

.btn-outline:hover {
    background: #b30000;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   RIGHT VISUAL
========================= */

.career-visual {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
}

.img-main {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
}

.img-float {
    position: absolute;
    width: clamp(140px, 40%, 220px);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    animation: floatSoft 6s ease-in-out infinite;
}

.img-float.top {
    top: -25px;
    right: -25px;
}

.img-float.bottom {
    bottom: -25px;
    left: -25px;
}

/* Float animation */
@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .career-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .career-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .career-actions {
        justify-content: center;
    }

    .img-float {
        display: none;
    }
}

@media (max-width: 480px) {
    .career-section {
        padding: 60px 15px;
    }

    .btn {
        width: 100%;
        min-width: unset;
    }
}

/* =========================
   ABOUT SECTION – NBFC STYLE
========================= */

.about-section {
  background: #ffffff;
  padding: 120px 80px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  overflow: hidden;
}

/* =========================
   SCROLL ANIMATION SYSTEM
========================= */

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* =========================
   TYPOGRAPHY
========================= */

.about-section h1 {
  font-size: 46px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.about-section .lead {
  font-size: 18px;
  max-width: 850px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 70px;
}

/* =========================
   GRID
========================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* =========================
   CONTENT BOX
========================= */

.about-box {
  padding-top: 25px;
  border-top: 2px solid #e5e7eb;
}

.about-box hr {
  display: none;
}

.about-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}

.about-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: #f4b41a;
  border-radius: 2px;
}

.about-box p {
  color: #4b5563;
  line-height: 1.75;
  font-size: 15.5px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .about-section {
    padding: 90px 50px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 25px;
  }

  .about-section h1 {
    font-size: 36px;
  }

  .about-section .lead {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* =========================
   CONTACT HERO SECTION
========================= */

.contact-hero {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 380px;
  margin-top: 80px;
  width: 100%;
}

/* LEFT DARK PANEL */
.contact-left {
  background: linear-gradient(90deg, #0b1518, #1c2b2f);
  display: flex;
  align-items: center;
  padding-left: 90px;
}

.contact-left h1 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 500;
  margin: 0;
}

/* RIGHT IMAGE */
.contact-right {
  background: url("../images/contact.png") center/cover no-repeat;
}


/* =========================
   OFFICES SECTION
========================= */

.offices {
  background: #ffffff;
  padding: 120px 80px;
}

.offices-wrap {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 80px;
}

/* TITLE */
.offices-title h2 {
  font-size: 42px;
  color: #a45c46;
  font-weight: 500;
  margin: 0;
}

/* DETAILS */
.office {
  margin-bottom: 50px;
}

.office h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.office p {
  color: #444;
  line-height: 1.8;
  margin: 4px 0;
}

/* Prevent unwanted overlay image */
.contact-hero-overlay img {
  display: none;
}


/* =========================
   RESPONSIVE – TABLET
========================= */

@media (max-width: 992px) {
  .contact-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .contact-left {
    padding: 60px 40px;
    justify-content: center;
    text-align: center;
  }

  .contact-left h1 {
    font-size: 40px;
  }

  .contact-right {
    height: 260px;
  }

  .offices {
    padding: 90px 40px;
  }

  .offices-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .offices-title h2 {
    font-size: 36px;
  }
}


/* =========================
   RESPONSIVE – MOBILE
========================= */

@media (max-width: 600px) {
  .contact-left {
    padding: 50px 20px;
  }

  .contact-left h1 {
    font-size: 32px;
  }

  .contact-right {
    height: 220px;
  }

  .offices {
    padding: 70px 20px;
  }

  .offices-title h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .office h4 {
    font-size: 16px;
  }

  .office p {
    font-size: 14px;
  }
}


/* =========================
   FOOTER
========================= */
.footer {
  background: #1f2a2a;
  color: #ffffff;
  padding: 80px 80px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #dcdcdc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #dcdcdc;
}

.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* FORM */
.footer-form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
}

.footer-form button {
  width: 100%;
  padding: 10px;
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
}

.footer-form button:hover {
  background: #ffffff;
  color: #1f2a2a;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #cccccc;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer {
    padding: 60px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}


/* =========================
   NAVBAR MOBILE FIX
========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile navbar */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
    display: none;
    z-index: 2000;
  }

  .nav-links a,
  .dropdown-btn {
    width: 100%;
    margin: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #111;
  }
}


/* CONTACT POPUP */
.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.popup-box {
  position: relative; /* REQUIRED for close button */
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}


@keyframes popupScale {
  from { transform: scale(.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-box h3 {
  margin-bottom: 5px;
}

.popup-box p {
  font-size: 14px;
  color: #666;
}

.popup-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.popup-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.popup-btn.call {
  background: #0d6efd;
}

.popup-btn.whatsapp {
  background: #25d366;
}

.popup-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 22px;
  cursor: pointer;
}


.service-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.service-btn:hover {
  background: #084298;
}

