  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
/* ===== DEFAULT (DESKTOP) ===== */
#nav-menu{
  display:flex;
  gap:30px;
}

/* HIDE HAMBURGER ON DESKTOP */
.hamburger{
  display:none !important;
}

/* ===== TABLET ===== */
@media(max-width:1024px){
  
  #nav-menu{
    display:flex;
    gap:20px;
  }

  .hamburger{
    display:none !important;
  }
}
/* ===== MOBILE ONLY ===== */
@media(max-width:768px){

  /* SHOW HAMBURGER */
  .hamburger{
    display:flex 
    !important;
  }

  /* HIDE MENU */
  #nav-menu{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;

    flex-direction:column;
    align-items:center;
    padding:40px 0;
  }

  /* SHOW WHEN ACTIVE */
  #nav-menu.active{
    display:flex;
  }

  #nav-menu a{
    color:#fff;
    font-size:18px;
    margin:15px 0;
  }
}



/* ===== MOBILE MENU PERFECT FIX ===== */
@media(max-width:768px){
.about-section{
  margin-top:100px;  /* 🔥 pushes section below navbar */
}
  #nav-menu{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;

    flex-direction:column;
    align-items:center;

    padding:25px 0;

    /* 🔥 IMPORTANT: LIMIT HEIGHT */
    overflow-y:auto;
  }

  #nav-menu.active{
    display:flex;
  }

  /* LINKS */
  #nav-menu a{
    color:#fff;
    font-size:16px;
    margin:12px 0;
    padding:6px 0;
  }
}



@media(max-width:768px){

  #nav-menu{
    padding:15px 0;   /* 🔥 reduce top/bottom space */
  }

  #nav-menu a{
    font-size:14px;   /* 🔥 smaller text */
    margin:0px 0;     /* 🔥 reduce gap between items */
    padding:0px 25px;    /* 🔥 reduce click area */
  }

}


@media(max-width:768px){
  .about-section{
    margin-top:20px;   /* adjust for mobile */
    padding-top:20px;  /* extra breathing space */
  }
}



/* MOBILE ONLY */
@media(max-width:768px){

  .col-md-6 img{
    margin-top:20px !important;   /* 🔥 space above image */
  }

}


.brand-banner {
  font-size: 22px;
  font-weight: bold;
  color: #0a567a;
  margin-left: 10px;
  display: flex;
}
.logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-banner {
  font-size: 20px;
  font-weight: 700;
  color: #fff; /* IMPORTANT for blue bg */
  line-height: 1.2;
}

.brand-banner {
  white-space: nowrap;
}


.hero {
  margin-top: 80px; /* adjust based on navbar height */
}


.hero {
  padding-top: 120px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0px; /* 👈 THIS ADDS SPACE BEFORE ICON */
}

.logo img {
  margin-left: 0px;
}



@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    padding: 20px 15px; /* reduce space */
    min-height: auto;   /* remove full height issue */
  }

  .hero-content {
    width: 100%;
    text-align: center;
    margin-top: 0; /* remove extra push */
  }

  .hero-content h1 {
    padding-top: 20px; /* FIX: was 140px ❌ */
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    margin: 10px 0;
  }

}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-container {
  display: flex;
  justify-content: center;   /* 🔥 CENTER ALL */
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  max-width: 300px;
}


.whatsapp-icon {
  color: #25D366;
  font-size: 22px;
  margin-right: 10px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}


.whatsapp-icon{
    color:#25D366 !important;
    font-size:24px;
    margin-right:10px;
}


.info-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.location-icon{
    color:#EA4335 !important;   /* Google Maps red */
    font-size:24px;
    width:24px;
    text-align:center;
}

.info-box span{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin:12px 0;
    color:#fff;
    font-size:15px;
}

.footer-icon{
    width:22px;
    font-size:20px;
    text-align:center;
}

.location{
    color:#EA4335;      /* Google Maps Red */
}

.email{
    color:#ffffff !important;      /* Blue */
}

.whatsapp{
    color:#25D366;      /* WhatsApp Green */
}


.footer-icon.email{
    color: #4dabff;
    font-size: 22px;
    margin-right: 10px;
    transition: .3s;
}


