:root {
  --primary-blue: #1d8884;
  /* --dark-green: #04552c; */
  --mint: #9fd4c0;
  --white: #ffffff;
  --light-bg: #f5faf7;
  --text-dark: #222222;
  --border-color: #e5e5e5;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
 
/* RESET */

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

body {
  font-family: "Poppins",sans-serif;
  padding-top: 100px;
}
/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
}
/* TOP HEADER */
.top-header {
  background:#1d8884;
  border-top: 2px solid var(--primary-red);
  padding: 8px 0;
  font-family: 'Poppins', sans-serif;
}
.top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.left-top,
.right-top {
  display: flex;
  align-items: center;
  gap: 25px;
}
/* BUTTON */
.announcement-btn {
  background: rgb(228, 37, 37);
  color: #f2eeee;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.top-link,
.right-top a {
 color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.right-top a:hover {
  color: var(--mint);
}
/* NAVBAR */
.custom-navbar {
  background: #fff;
  padding: 8px 0;
  height: 70px;
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* LOGO */
.navbar-brand img {
  height: 75px;
  padding: 2px;
}
/* NAV */
.navbar-nav {
  gap: 2px;
}
.nav-link {
  color: #111;
  font-size:14px;
  /* font-weight: 650 !important; */
  position: relative;
  padding: 10px 12px !important;
  /* font-weight: 700; */
  font-family: "Poppins", sans-serif;
}
.nav-link:hover {
  color: #04552c;
}
.active-link {
  color: #04552c !important;
}
.active-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 0;
  width: 50px;
  height: 3px;
  background:#53f3ee;
}


/* ===================================
   MOBILE TOP HEADER
=================================== */

@media (max-width:576px){

    .top-header{
        padding:5px 0;
    }

    .top-wrapper{
        display:flex;
        align-items:center;
        gap:12px;
    }

    /* Announcement Button */

    .left-top{
        flex-shrink:0;
    }

    .announcement-btn{
        padding:5px 10px;
        font-size:10px;
        font-weight:600;
        border-radius:4px;
        white-space:nowrap;
    }

    /* Right Side Links */

    .right-top{
        display:flex;
        align-items:center;
        gap:20px;               /* Gap between all links */
        overflow-x:auto;
        flex-wrap:nowrap;
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .right-top::-webkit-scrollbar{
        display:none;
    }

    .top-link,
    .right-top a{
        font-size:10px;
        font-weight:600;
        white-space:nowrap;
        flex-shrink:0;
        text-decoration:none;
    }

    /* Extra space after Admission Enquiry */

    .top-link{
        margin-right:10px;
    }

    /* Extra space between AICTE and FEEDBACK
       (only if they are separate links) */

    .right-top a:nth-child(2){
        margin-right:8px;
    }
}


/* DROPDOWN */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}
.dropdown-item:hover {
  background:#1d8884;
  color: #fff;
}
/* RIGHT */
.right-navbar {
  display: flex;
  align-items: center;
  gap: 25px;
}
/* APPLY BUTTON */
/* .apply-btn {
  background: var(--primary-red);
  color: #fff;
  font-size: 12px;
  border: none;
  padding: 14px 35px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
} */
 .apply-btn {
  background: var(--primary-blue) !important;
  color: #fff;
  font-size: 13px;
  border: none;
  width: 150px;      /* Equal width */
  height: 46px;      /* Equal height */
  border-radius: 5px;
  /* font-weight: 700; */
  cursor: pointer;
  transition: 0.3s;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  /* line-height: 1.2; */
}

.apply-btn:hover {
  color: #E42525;
}
/* .apply-btn:hover {
  background: var(--light-red);
} */

.button-group {
  display: flex;
  gap: 8px;
  align-items: center;
  /* margin-left:40px; */
}
/* HERO */
.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}
.hero-section h1 {
  font-size: 60px;
  font-weight: 800;
}
.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:9998;
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}
/* RESPONSIVE */
/* =========================================
   LARGE DEVICES
========================================= */
/* =========================================
   TABLET & MOBILE NAVBAR
========================================= */

@media (max-width: 991px) {

  body{
    padding-top:120px;
  }

  .custom-navbar{
    height:auto;
    padding:10px 0;
  }

  .navbar-brand img{
    height:55px;
  }

  .navbar-toggler{
    border:none;
    box-shadow:none !important;
  }

  .navbar-toggler:focus{
    box-shadow:none !important;
  }

  /* OFFCANVAS MENU */

  .navbar-collapse{
    position:fixed;
    top:0;
    left:-100%;
    width:320px;
    height:100vh;
    background:#fff;
    z-index:99999;
    overflow-y:auto;
    transition:0.4s ease;
    padding:20px 0;
    margin-top:0;
    border-radius:0;
    box-shadow:0 0 30px rgba(0,0,0,.15);
  }

  .navbar-collapse.show{
    left:0;
  }

  .navbar-nav{
    width:100%;
    gap:0;
  }

  .navbar-nav .nav-item{
    width:100%;
    border-bottom:1px solid #eee;
  }

  .navbar-nav .nav-link{
    width:100%;
    padding:18px 25px !important;
    font-size:17px;
    color:#2f3945;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .navbar-nav .nav-link:hover{
    background:#f8f8f8;
  }

  .dropdown-menu{
    position:static !important;
    width:100%;
    border:none;
    border-radius:0;
    box-shadow:none;
    padding:0;
    margin:0;
  }

  .dropdown-item{
    padding:12px 40px;
    font-size:15px;
    border-bottom:1px solid #f3f3f3;
  }

  .dropdown-item:hover{
    background:#1d8884;
    color:#fff;
  }

  .right-navbar{
    width:100%;
    padding:20px;
    margin-top:0;
  }

  .apply-btn{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:576px){

  body{
    padding-top:110px;
  }

  .navbar-collapse{
    width:280px;
  }

  .navbar-brand img{
    height:48px;
  }

  .navbar-nav .nav-link{
    padding:16px 20px !important;
    font-size:16px;
  }

  .dropdown-item{
    padding:12px 30px;
    font-size:14px;
  }

  .apply-btn{
    font-size:14px;
  }
}

/* =========================================
   EXTRA SMALL
========================================= */

@media (max-width:400px){

  .navbar-collapse{
    width:260px;
  }

  .navbar-brand img{
    height:42px;
  }

  .navbar-nav .nav-link{
    font-size:15px;
  }
}
/* ============================
   MOBILE OFFCANVAS MENU
============================ */

@media (max-width:991px){

  body{
    padding-top:120px;
  }

  /* Overlay */
  .mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.4s;
  }

  .mobile-overlay.active{
    opacity:1;
    visibility:visible;
  }

  /* Sidebar Menu */
  .navbar-collapse{
    position:fixed;
    top:0;
    left:-320px;
    width:320px;
    height:100vh;
    background:#fff;
    z-index:99999;
    overflow-y:auto;
    transition:.4s ease;
    margin-top:0;
    padding-top:80px;
    box-shadow:0 0 25px rgba(0,0,0,.15);
  }

  .navbar-collapse.show{
    left:0;
  }

  /* Logo */
  .navbar-brand img{
    height:55px;
  }

  /* Menu */
  .navbar-nav{
    width:100%;
    gap:0;
  }

  .navbar-nav .nav-item{
    width:100%;
    border-bottom:1px solid #ececec;
  }

  .navbar-nav .nav-link{
    width:100%;
    padding:16px 22px !important;
    font-size:15px;
    font-weight:500;
    color:#222;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .navbar-nav .nav-link:hover{
    background:#f7f7f7;
    color:#1d8884;
  }

  /* Dropdown */
  .dropdown-menu{
    position:static !important;
    border:none;
    border-radius:0;
    box-shadow:none;
    background:#fafafa;
    padding:0;
  }

  .dropdown-item{
    padding:12px 40px;
    font-size:14px;
    color:#444;
    border-bottom:1px solid #f1f1f1;
  }

  .dropdown-item:hover{
    background:#1d8884;
    color:#fff;
  }

  /* Apply Button */
  .button-group{
    padding:20px;
    width:100%;
  }

  .apply-btn{
    width:100%;
    height:48px;
    font-size:14px;
  }

  /* Hamburger */
  .navbar-toggler{
    border:none;
    box-shadow:none !important;
  }

  .navbar-toggler:focus{
    box-shadow:none !important;
  }
}

/* Mobile */

@media (max-width:576px){

  .navbar-collapse{
    width:280px;
    left:-280px;
  }

  .navbar-brand img{
    height:48px;
  }

  .navbar-nav .nav-link{
    font-size:14px;
    padding:15px 18px !important;
  }

  .dropdown-item{
    padding:12px 30px;
    font-size:13px;
  }
}

/* Extra Small */

@media (max-width:400px){

  .navbar-collapse{
    width:260px;
    left:-260px;
  }

  .navbar-brand img{
    height:42px;
  }
}

