   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section{
  background: #ffffff;
  padding-bottom: 90px;
}

/* ===============================
   HERO / HEADER
================================ */
.contact-hero{
  background: linear-gradient(180deg, #3562c9 0%, #1f4fb3 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.contact-title{
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-title span{
  color: #ff8c00;
}

.contact-subtitle{
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  color: #e6edff;
  line-height: 1.6;
}

/* ===============================
   CARDS GRID
================================ */
.contact-cards{
  max-width: 1200px;
  margin: -70px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===============================
   CARD
================================ */
.contact-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.contact-card:hover{
  transform: scale(1.05);
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

/* ===============================
   ICON
================================ */
/* ICON CONTAINER */
.contact-icon{
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* ICON IMAGE */
.contact-icon img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ===============================
   TEXT
================================ */
.contact-card h4{
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-card .highlight{
  color: #ff8c00;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-card span{
  font-size: 13px;
  color: #64748b;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px){
  .contact-cards{
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
  }
}


@media (max-width: 640px){
  .contact-title{
    font-size: 28px;
  }

  .contact-cards{
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

  .contact-card{
    padding: 26px 20px;
  }
}

/* ===============================
   SECTION
================================ */
.contact-form-section{
  background: #f8fafc;
  padding: 80px 20px;
}

/* ===============================
   CONTAINER
================================ */
.contact-form-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

/* ===============================
   FORM CARD
================================ */
.contact-form-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.form-badge{
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-title span{
  color: #f97316;
}

.form-subtitle{
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

/* ===============================
   FORM
================================ */
.contact-form{
  width: 100%;
}

.form-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-group{
  display: flex;
  flex-direction: column;
}

.form-group.full{
  margin-bottom: 20px;
}

.form-group label{
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea{
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color: #2563eb;
}

/* ===============================
   BUTTON
================================ */
.submit-btn{
  width: 100%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.submit-btn:hover{
  background: #1e40af;
}

/* ===============================
   INFO COLUMN
================================ */
.contact-info-column{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* INFO CARDS */
.contact-info-card{
  border-radius: 18px;
  padding: 30px;
}

.contact-info-card.blue{
  background: linear-gradient(180deg, #3562c9 0%, #1f4fb3 100%);
  color: #ffffff;
}

.contact-info-card.white{
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.contact-info-card h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-card p{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-block{
  margin-bottom: 12px;
}

.info-block strong{
  display: block;
  font-size: 13px;
  opacity: .9;
}

.info-block span{
  font-size: 14px;
  font-weight: 600;
}

.business-hours{
  background: #f1f5f9;
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 1024px){
  .contact-form-container{
    grid-template-columns: 1fr;
  }
}

@media(max-width: 640px){
  .contact-form-card{
    padding: 28px 20px;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .form-title{
    font-size: 26px;
  }
}
/* ICON HOLDER */
.info-icon{
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Icon image */
.contact-info-card.white .info-icon{
  background: #eef2ff;
}

.info-icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ===============================
   MAP SECTION
================================ */
.map-section{
  width: 100%;
  background: #ffffff;
}

/* Responsive iframe container */
.map-wrapper{
  position: relative;
  width: 100%;
  height: 420px;          /* Desktop height */
  overflow: hidden;
}

/* Google Map iframe */
.map-wrapper iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);  /* Matches your screenshot look */
}

/* Tablet */
@media(max-width: 1024px){
  .map-wrapper{
    height: 360px;
  }
}

/* Mobile */
@media(max-width: 640px){
  .map-wrapper{
    height: 300px;
  }
}

/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}
