body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x:hidden;
  word-break:break-word;
}

/* PRIMARY HELPERS */
.bg-primary{background-color:var(--bs-primary)!important;}
.text-primary{
  color:#06763B !important;
}


/* AKTU-style header */
.top-header {
  background: linear-gradient(to right, #006B3C, #006B3C) !important;
  font-size: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #0a7c3d;
  word-break: break-word;
}

/* FOOTER MAIN */
footer h6 {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
   border: 2px solid #ffc107;   /* ✅ FULL YELLOW BOX */
  color: #0b6b3a;
  border-radius: 4px;
  display: inline-block;
}

footer ul li a {
  position: relative;
  padding-left: 18px;
  display: inline-block;
  color: #000;
}

footer ul li a::before {
  
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc107;
  font-size: 12px;
}

footer ul li a:hover {
  color: #ffc107;
}

footer p,
footer ul li {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

footer .btn-outline-light:hover {
  background-color: #fff;
  color: #006B3C;
}





/* Main Header */
.main-header{
    position: relative;
    background:#fff;
    padding-top:20px;
    padding-bottom:0px;
    overflow:hidden;
}
/* SVG size */
.shape-divider-top svg{
    display:block;
    width:calc(100% + 1.3px);
    height:20px;
}

/* Wave color */
.shape-divider-top path{
    fill:#e8f1fb;
}

/* Header content ABOVE wave */
.main-header .container,
.main-header img{
    position:relative;
    z-index:5;
}

.logo-container {
  display: flex;
  align-items: center;
}

.college-name {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.college-tagline {
  font-size: 14px;
  color: #666;
}

/* Navbar */
.navbar-aktu {
  background: linear-gradient(180deg, #06763B, #055f2f);
  padding: 0;
  position: relative;
  z-index: 9999;
}

/* Main menu links */
.navbar-aktu .navbar-nav .nav-link {
  color: #fff !important;
  padding: 12px 17px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

/* ✅ Hover effect (color also change now) */
.navbar-aktu .navbar-nav .nav-link:hover {
  background: rgba(0, 0, 0, 0.25);
  color: #ffc107 !important;
}

/* ✅ Active / open dropdown state */
.navbar-aktu .navbar-nav .nav-item.show > .nav-link,
.navbar-aktu .navbar-nav .nav-link.active {
  background: #034a26;    
  color: #ffc107 !important;
}

/* Dropdown */
.navbar-aktu .dropdown-menu {
   background: linear-gradient(180deg, #06763B, #06763B);
  border: none;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

/* Dropdown items */
.navbar-aktu .dropdown-item {
  color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}

/* Dropdown hover */
.navbar-aktu .dropdown-item:hover {
  background-color: #06763B;
  color: #000;
}


/* Responsive Container */
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 1140px;
  }
}

/* Quick Links */
.quick-links {
  background-color: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.quick-link-item {
  text-align: center;
  padding: 5px 0;
}

.quick-link-item a {
  color: var(-brand-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.quick-link-item a:hover {
  color: var(--secondary-color);
}


/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://ccdn.in:2083/.../banner1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  margin-bottom: 30px;
}
/* Cards */
.card {
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin-bottom: 20px;
}

.card-header {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px 15px;
}

.card-body {
  padding: 20px;
}

/* ================= FOOTER ================= */
.footer{
background: linear-gradient(180deg, #06763B, #045A2E) !important;
  color:#fff;
  padding:40px 0 20px;
}

.service-box {
  background:#efdda7;
  border-radius:12px;
  padding:20px 15px;
  min-width:150px;
  transition: all .3s ease;
  box-shadow:0 4px 8px rgba(0,0,0,.1);
}

.service-box:hover{
  transform:translateY(-5px);
  box-shadow:0 6px 12px rgba(0,0,0,.2);
}

/* ICONS */
.icon-box{
  background:rgba(255,255,255,.2);
  padding:15px;
  border-radius:50%;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-name{
  font-weight:600;
  font-size:14px;
}

/* -------- Footer Links ---------- */
.footer-links h5{
  color:#28a745;
  margin-bottom:0px;
  font-size:18px;
  position:relative;
  padding-bottom:0px;
}

.footer-links h5::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:40px;
  height:2px;
  background-color:#06763B; /* FIX */
}

/* Links */
.footer-links ul{
  list-style:none;
  padding-left:0;
}

.footer-links li{ margin-bottom:4px; }

.footer-links a{
  color:#ffc107;  
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
  padding-left:6px;
}

/* Copyright */
.copyright{
  border-top:1px solid rgba(255,255,255,.2);
  padding-top:15px;
  margin-top:25px;
  font-size:14px;
  text-align:center;
}

/* ================= DROPDOWN SUBMENU FIX ================= */
.dropdown-submenu{
  position:relative;
}

.dropdown-submenu > .dropdown-menu{
  top:0;
  left:100%;
  margin-top:-1px;
  display:none;
}

.dropdown-submenu:hover > .dropdown-menu{
  display:block;
}

/* ================= CAROUSEL FIX ================= */
.carousel-inner img{
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.carousel-item img{
  transition:.3s ease;
}

.carousel-item img:hover{
  transform:scale(1.05);
}

.carousel-indicators li{
  background:#06763B;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background:#06763B;
}

/* ================= SECTIONS FIX ================= */
.section-title h5{
  font-size:16px;
  font-weight:bold;
  color:#007bff;
  margin-bottom:4px;
}

/* ❌ BAD WAS: font-size:-0.7rem */
h2, h3{
  font-size:2rem;   /* ✅ FIXED */
  color:#000;
  font-weight:600;
  text-align:center;
  margin-bottom:10px;
}

.grad_bg{
  background:linear-gradient(to right, #0b6b2f, #075024);
}

/* NAV */
.nav-link{
  font-size:.9rem!important;
}

h5.sub-title{
  font-size:1.3rem;
  color:#fff;
  font-weight:600;
}

/* UTILITY */
.footer_text_color{
  text-align:justify;
  font-size:1rem;
  color:#fff;
  margin-bottom:10px;
}

ul{
  margin-left:18px;
  font-size:1rem;
  color:#fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width:991.98px){

  .navbar-aktu .navbar-nav .nav-link{
    padding:10px 15px;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.1);
    white-space:nowrap;
  }

  .quick-link-item{
    text-align:left;
    padding:5px 15px;
  }
}

@media (max-width:768px){

  h2, h3{
    font-size:1.6rem;
  }

  .container{
    padding-left:10px;
    padding-right:10px;
  }

  .section-title h5{
    font-size:14px;
  }
  
}

.facilities-row{
  display:grid;
  grid-template-columns:repeat(8,1fr); /* SYSTEM = 8 */
  gap:30px;
}

.facility-item{
  text-decoration:none;     /* 🔑 LINK LOOK REMOVE */
  color:#000;
  text-align:center;
  transition:.3s ease;
}

.facility-item:hover{
  transform:translateY(-6px);
}

.icon-box{
  width:85px;
  height:85px;
  margin:0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border-radius:18px;
  background:#fff;
  border:2px solid currentColor;
}

/* COLORS */
.orange{color:#ff7a00;}
.yellow{color:#f4b400;}
.green{color:#0f9d58;}
.pink{color:#e91e63;}
.blue{color:#3f51b5;}
.red{color:#f44336;}
.lightgreen{color:#8bc34a;}

.facility-item h6{
  font-size:15px;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .facilities-row{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:768px){
  .facilities-row{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:576px){
  .facilities-row{grid-template-columns:repeat(2,1fr);}
  .icon-box{
    width:65px;
    height:65px;
    font-size:26px;
  }
}
 /* ================= HEADER TOP ================= */
   .main-header{
   position: relative;
   background:#ffffff;
   z-index:1000;
   }
   .main-header .container{
   max-width:1320px;
   }
   .main-header img{
   max-height:80px;
   }
   /* buttons */
   .header-btns .btn{
   padding:6px 14px;
   font-size:14px;
   border-radius:4px;
   font-weight:600;
   }
  
   
   /* ================= NAVBAR ================= */
   .navbar{
   background:#0b5d1e !important;
   padding:0;
   }
   /* ✅ MENU SPACING FIX */
   .navbar-nav{
   gap:5px;                 /* menu ke beech space */
   }
   .navbar-nav .nav-link{
   color:#fff !important;
   font-weight:500;
   padding:14px 22px !important;
   font-size:15px;
   }
   .navbar-nav .nav-link:hover{
   background:#084718;
   }
   /* dropdown */
   .dropdown-menu{
   background:#ffc107;
   border-radius:0;
   border:none;
   padding:0;
   }
   .dropdown-menu .dropdown-item{
   font-weight:600;
   padding:5px 16px;
   }
   .dropdown-menu .dropdown-item:hover{
   background:#ffb300;
   }
   /* multi-level dropdown */
   .dropdown-submenu{
   position:relative;
   }
   .dropdown-submenu > .dropdown-menu{
   top:0;
   left:100%;
   margin-top:-1px;
   }
   /* MAIN MENU BAR */
.navbar {
  background: linear-gradient(90deg, #0b5d2a, #1b8a4a);
  padding: 10px 20px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Menu Items */
.navbar-nav > li > a {
  color: #fff !important;
  font-weight: 600;
  padding: 12px 18px;
  margin: 0 6px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.navbar-nav > li > a:hover {
  background: #fbc02d;
  color: #000 !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 14px;
}
.navbar {
  background: #0b5d2a;
  border-bottom: 5px solid #fbc02d;
}

/* Menu text */
.navbar-nav > li > a {
  color: #fff !important;
  font-weight: 600;
  padding: 16px 18px;
  position: relative;
}

/* Color underline on hover */
.navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 4px;
  background: #fbc02d;
  transition: all 0.3s ease;
}

.navbar-nav > li > a:hover::after {
  width: 60%;
  left: 20%;
}
/* ===== STICKY MENU ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0b5d2a, #1e88e5);
  transition: all 0.3s ease;
}

/* Shadow after scroll */
.navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
