/* css for the header*/

p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}

.footer{
  font-family: "Lato", sans-serif !Important;
}

.recovery-box h4{
  font-family: "Open Sans", sans-serif;
}

/* TOP BAR */
.top-bar{
    background:#eef3f5;
    text-align:center;
    padding:8px;
    font-size:14px;
}

/* HEADER */
.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 40px;
}
.logo img{width:180px;}

.header-center{text-align:center;}
.phone{
    font-size:28px;
    font-weight:600;
    color:#1b1b3a;
}
.availability{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:5px;
    font-size:15px;
}
.whatsapp-icon{width:18px;}

/* SEARCH */
.search-box{position:relative;}
.search-box input{
    width:260px;
    padding:12px 40px 12px 15px;
    border-radius:8px;
    border:none;
    background:#f3f3f3;
}
.search-icon{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
}

/* NAVBAR */
.navbar{
    background:#1b1b3a;
    position:relative;
    overflow:visible; /* FIX: prevents cropping */
}

.nav-menu{
    display:flex;
    justify-content:center;
    gap:60px;
    list-style:none;
}

/* MENU LINK */
.menu-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:20px 0;
    color:#fff;
    position:relative;
    transition:0.3s;
}

/* UNDERLINE */
.menu-link::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    width:0;
    height:4px;
    background:#d7a352;
    transform:translateX(-50%);
    transition:0.3s;
}

/* ARROW */
.arrow{
    font-size:12px;
    transition:0.3s;
}

/* HOVER */
.has-mega:hover .menu-link{
    color:#daa85a;
}
.has-mega:hover .menu-link::after{
    width:70%;
}
.has-mega:hover .arrow{
    transform:rotate(180deg);
}

/* ================= MEGA MENU ================= */

.navbar{
    position:relative; /* anchor for ALL dropdowns */
}

/* FULL WIDTH */
.mega-menu{
   position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    width:1100px;          /* FIXED WIDTH */
    max-width:90%;         /* responsive */
    background:#f5f5f5;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
    opacity:0;
    visibility:hidden;
    transition:all 0.25s ease;
    z-index:999;

}

/* CONTAINER */
.mega-container{
     
    display:flex;
    justify-content:space-between;
    gap:80px;
    padding:50px 20px;
}
.navbar{
    position:relative;
    z-index:1000;
}
.has-mega::after{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.25);
    opacity:0;
    pointer-events:none;
    transition:0.3s;
    z-index:998;
}

.has-mega:hover::after{
    opacity:1;
}
.has-mega:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(10px);
}
/* COLUMN */
.mega-col{flex:1;}

.mega-col h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    color:#1b1b3a;
}

.mega-col a{
    display:block;
    color:#555;
    text-decoration:none;
    margin-bottom:12px;
    font-size:15px;
}
.mega-col a:hover{color:#2bb673;}

/* SHOW */
.has-mega:hover .mega-menu,
.mega-menu:hover{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}
/* css for the code of the the main section */


/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:"Poppins",sans-serif;
  background:#f5f6f7;
}


.mobile-toggle{
  display:none;
}

@media(max-width:768px){
  .mobile-toggle{
    display:block;
  }

  .search-box{
    display:none; /* optional like reference */
  }
}
@media(max-width:768px){

  .navbar{
    display:none;   /* 🔥 THIS IS THE MAIN FIX */
  }

}
@media(max-width:768px){

  .header{
    flex-direction:row;
    justify-content:space-between;
    padding:10px 15px;
  }


.header-center{
  display:block;
  text-align:center;
}

  .search-box{
    display:none;
  }

}].mobile-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}

@media(max-width:768px){
  .mobile-toggle{
    display:block;
    color:#1b1b3a;
    font-weight:600;
  }
}
/* ========================= */
/* MOBILE ONLY (<=768px) */
/* ========================= */
@media (max-width:768px){

  /* 🔥 1. HIDE DESKTOP NAV COMPLETELY */
  .navbar{
    display:none;
  }
  .section-wrapper{
      margin-top:100px;
  }
  .athena-footer-bottom{
      margin-bottom:0px !Important;
  }

  /* 🔥 2. HEADER CLEANUP */
  .header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 15px;
  }

  .header-center{
    display:none; /* hide phone text */
  }

  .search-box{
    display:none; /* optional */
  }

  /* 🔥 3. SHOW HAMBURGER */
  .mobile-toggle{
    display:block;
    font-size:24px;
    cursor:pointer;
    color:#1b1b3a;
  }

  /* 🔥 4. MOBILE MENU (FULL SCREEN OVERLAY) */
  .mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    z-index:9999;

    display:none;
    flex-direction:column;
  }

  .mobile-menu.active{
    display:flex;
  }

  /* HEADER (TOP BAR INSIDE MENU) */
  .mobile-header{
    background:#1b1b3a;
    color:#fff;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
  }

  /* SEARCH */
  .mobile-search{
    padding:15px;
  }

  .mobile-search input{
    width:100%;
    padding:12px;
    border-radius:6px;
    border:1px solid #ddd;
  }

  /* LINKS */
  .mobile-links{
    padding:10px 15px;
  }

  .mobile-item{
    padding:14px 0;
    border-bottom:1px solid #eee;
    font-weight:500;
    cursor:pointer;
  }

  /* FOOTER */
  .mobile-footer{
    margin-top:auto;
    padding:20px;
    text-align:center;
    font-size:14px;
  }

}
.mobile-menu{
  display:none;   /* 🔥 ALWAYS hidden by default */
}




/* Hide on desktop */
.mobile-contact-strip {
  display: none;
}

/* Hide on desktop */
.mobile-contact-strip {
  display: none;
}

@media (max-width: 768px) {
  #none {
    display: none !important;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .mobile-contact-strip {
    display: block;
    background: #eef3f5;
    padding: 12px 12px;
    text-align: center;
  }

  /* Phone number */
  .mobile-phone {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c3a;
    margin-bottom: 6px;
  }

  /* Availability row */
  .mobile-availability {
    display: inline-flex;          /* 👈 key fix */
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }

  /* Icon */
  .whatsapp-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;               /* 👈 prevents shifting */
    margin-top: -16px;              /* 👈 slight vertical alignment */
  }

  /* Text */
  .mobile-availability span {
    text-align: left;
  }
  .mobile-menu a, .mobile-menu span{
      color:#fff !important;
  }
}


/* ================= EXPAND FIX ================= */



/* ========================= */
/* 🔥 CLEAN MOBILE FIX (FINAL) */
/* ========================= */

@media (max-width: 768px){

.help-form{
    width:100% !important;
}
  /* GLOBAL FIX */
  body{
    overflow-x:hidden;
  }

  .navbar{
    display:none !important;
  }

  .header{
    padding:10px 15px;
  }

  .search-box{
    display:none;
  }

  .header-center{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  /* ================= CHAT ================= */

  .ai-chat-box{
    width:90%;
    right:5%;
  }

}

.mega-title {
  font-size:18px;
  font-weight:700;
  color:#0b1a3a;
  text-align:center;
  margin-bottom:18px;
  letter-spacing:0.3px;
}

.program-flex {
  display:flex;
  gap:30px;
}

.program-col {
  flex:1;
}

.program-block {
  margin-bottom:20px;
}

.program-heading {
  font-weight:600;
  color:#2f5fa7;
  margin-bottom:10px;
  font-size:15px;
}

.program-link {
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#4b5563;
  text-decoration:none;
  line-height:1.5;
}

.space-sm {
  margin-bottom:8px;
}

.program-sub {
  margin-left:10px;
  border-left:2px solid #e5e7eb;
  padding-left:10px;
  margin-top:4px;
}

.program-sub a {
  display:block;
  font-size:13.5px;
  margin-bottom:5px;
  color:#6b7280;
  text-decoration:none;
}

.program-divider {
  width:1px;
  background:#e5e7eb;
}




/* 🔥 CENTER ONLY THIS PART */
.bottom-center{
  text-align:center;
  max-width:520px;
  margin-top:20px;
}

/* NETWORK TEXT */
.network-text{
  font-size:15px;
  color:#414141;
  margin-bottom:18px;
}

/* LOGOS */
.logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.logos img{
  height:50px;
}


/* css for the header ends here */




/* css for the footer */

/* ================= FOOTER ================= */
.athena-footer{
  background:#171745;
  color:#e5e7eb;
  font-family:"Lato", sans-serif;
  padding:50px 40px 20px;
}

/* CONTAINER */
.footer-container{
  display:flex;
  justify-content:space-between;
  gap:60px;
}

/* LEFT */
.footer-left{
  width:260px;
}

.footer-logo{
  width:200px;
  margin-bottom:25px;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:14px;
  margin-bottom:20px;
}

.social-icons a{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1c1f4a;
  color:#fff;
  border-radius:50%;
  font-size:14px;
  text-decoration:none;
}

/* CONTACT */
.footer-contact p{
  display:flex;
  gap:10px;
  font-size:14px;
  margin-bottom:8px;
}

.footer-contact a{
  color:#fff;
  text-decoration:none;
}

/* RIGHT */
.footer-right{
  flex:1;
}

.footer-title{
  font-size:22px;
  margin-bottom:25px;
}

/* COLUMNS */
.footer-columns{
  display:flex;
  gap:60px;
}

.footer-col{
  min-width:220px;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:15px;
  border-bottom:1px solid rgba(255,255,255,0.3);
  padding-bottom:10px;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col li{
  font-size:14px;
  margin-bottom:10px;
}

/* SERVICES */
.footer-services{
  min-width:380px;
}

.services-wrapper{
  display:flex;
  gap:40px;
}

.services-col{
  flex:1;
}

.service-title{
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.footer-services ul{
  padding-left:16px;
}

.footer-services li{
  font-size:13px;
  list-style:disc;
}

/* ================= BOTTOM (SEPARATE PROPERLY) ================= */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.3);
  margin-top:40px;
  padding-top:20px;

  display:flex;
  justify-content:space-between;
  align-items:flex-start; /* IMPORTANT */
}

.footer-bottom-left{
  max-width:60%;
  font-size:14px;
  line-height:1.6;
}

.footer-bottom-right{
  font-size:14px;
  text-align:right;
}

/* MOBILE */
@media(max-width:768px){

  .footer-container{
    flex-direction:column;
  }

  .footer-columns{
    flex-direction:column;
  }

  .services-wrapper{
    flex-direction:column;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
  }

  .footer-bottom-right{
    text-align:left;
  }

}

/* css ends here for the footer */