/* ------------------------------For FACULTY - Departments - Programs - Hostellers - Students - Alumni section ----------------------------*/
.stats-section 
{ 
  background-image: url("../img/hero/CounterBg.jpg");
 background-size: auto 325PX;
        /* -webkit-filter: grayscale(100%);  Safari 6.0 - 9.0 
        filter: grayscale(100%);*/
        border-top: solid 0px #999;
        border-bottom: solid 1px #999;
}

.stats-overlay {
  padding: 20px 20px;
}

.stats-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  text-align: center;
 
}

.stat-box {
  color: #ffffff;
}

.stat-icon {
  font-size: 42px;          /* BIG ICON */
  color: #ffffff;           /* WHITE ICON */
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.stat-box p {
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 2px;
  opacity: 0.95;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-icon {
    font-size: 34px;
  }

  .stat-box h2 {
    font-size: 28px;
  }
}

.counter-area1 {
 background-image: url("../img/hero/CounterBg.jpg");
 background-size: auto 280PX;
       
        border-top: solid 1px #999;
        border-bottom: solid 1px #999;
}

/* Dark overlay for readability */
.counter-area1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Bring content above overlay */
.counter-area1 .container {
  position: relative;
  z-index: 1;
}


/*  ---------------------------------Naack---------------------------------------*/
.naac-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

/* Main badge – SINGLE ROW */
.naac-accreditation {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
}

/* A+ */
.naac-grade {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 900;
    color: #ff2b2b;
    line-height: 1;
}

/* ACCREDITED BY NAAC */
.naac-text {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.naac-text1 {
     font-size: 25px;
    font-weight: 900;
    color: #ff2b2b;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.naac-accreditation {
    overflow: hidden;
}

/* ----------------------------Banner  Logo &  Text --------------------*/
 
    /* LOGO BANNER CONTAINER */
.logo-banner{
    position: absolute;          /* overlay on banner */
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 100%;
    pointer-events: none;
}

/* LOGO IMAGE */
.logo-banner img{
                   /* desktop size */
    max-width: 80%;
    height: auto;
    margin-bottom: 12px;
}

/* LOGO TEXT */
.logo-title{
    font-size: 6vw;
    color: #ffffff;
    margin: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif; 
    font-weight: 700; 
    line-height: 1;
    
}

/* RESPONSIVE */
@media (max-width: 768px){
    .logo-banner img{
        width: 140px;
    }

    .logo-title{
        font-size: 28px;
    }
}

@media (max-width: 480px){
    .logo-banner img{
        width: 130px;
    }

    .logo-title{
        font-size: 45px;
    }
}

/*------------------------------------------why-choose (Academic Section)-------------------------------*/

.integral-1-why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    font-family: 'Inter', sans-serif;
}

.integral-1-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.integral-1-section-header {
    text-align: center;
    margin-bottom: 45px;
}

.integral-1-sub-title {
    color: #ff5a00;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.integral-1-section-header h2 {
    font-size: 36px;
    margin-top: 10px;
    font-weight: 700;
}

/* TABS */
.integral-1-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.integral-1-tab-btn {
    padding: 14px 26px;
    border: none;
   
    cursor: pointer;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.integral-1-tab-btn:hover {
    transform: translateY(-3px);
}

.integral-1-tab-btn.active {
    background: linear-gradient(135deg, #ab2626, #ab2626);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255,90,0,0.35);
}

/* TAB CONTENT CARD */
.integral-1-tab-content {
    display: none;
}

.integral-1-tab-content.active {
    display: block;
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.integral-1-grid {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE HIGHLIGHT */
.integral-1-grid img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 5px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #ab2626, #ff9a6a) border-box;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.integral-1-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(255,90,0,0.35);
}

/* CONTENT */
.integral-1-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.integral-1-content p {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.integral-1-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.integral-1-content ul li {
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 22px;
}

.integral-1-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ab2626;
}

/* BUTTON */
.integral-1-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #ab2626, #ab2626);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,90,0,0.35);
}

.integral-1-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,90,0,0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .integral-1-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integral-1-section-header h2 {
        font-size: 28px;
    }
}

/* ----------------------------NOTICE BOARD Card-wise accent color -------------------------------- */

.notice-card:nth-child(1) .notice-item {
  border-left-color: #fff; /* Red */
}

.notice-card:nth-child(2) .notice-item {
  border-left-color: #0d6efd; /* Blue */
}

.notice-card:nth-child(3) .notice-item {
  border-left-color: #198754; /* Green */
}
 
/* Custom scrollbar (optional but premium) */
.notice-scroll::-webkit-scrollbar {
  width: 5px;
}
.notice-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
}

/* ===== Each Notice as a Section Card ===== */
.notice-item {
  background: #ffffff;
  border-radius: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 4px solid #dc3545;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Hover Highlight */
.notice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #fff, #fff5f5);
}

/* Remove extra margins inside */
.notice-item h6 {
  margin-bottom: 6px;
}

/* Calendar row alignment */
.notice-item p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  
}

/* ===== NEW Badge ===== */
.new-blink {
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* ----------------------------News Section-----------------------------------------*/

        /* NIRAJ PREFIXED CSS */
        .niraj-container{
        max-width:1200px;
        margin:auto;
        padding:40px 20px;
        }

        .niraj-title-area h1{
            text-align:center;
            font-size:40px;
            font-weight:700;
        }

        .niraj-subtitle{
            text-align:center;
            font-size:18px;
            margin:10px 0 40px;
            color:#333;
        }

        /* GRID */
        .niraj-news-grid{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            grid-auto-rows:302px;
            gap:24px;
        }

        /* CARD */
        .niraj-news-card{
            position:relative;
            background:#fff;
            overflow:hidden;
            box-shadow:0 4px 12px rgba(0,0,0,.12);
            display:flex;
            flex-direction:column;
        }

        /* IMAGE AREA */
        .niraj-news-card img{
            width:100%;
            height:300px;
            object-fit:cover;
            display:block;
        }

        .niraj-news-card.wide img,
        .niraj-news-card.featured img{
            height:100%;
        }

        .niraj-content{
            padding:16px;
            background:#fff;
            flex:1;
        }

        /* SIZES */
        .niraj-featured{
            grid-column:span 2;
            grid-row:span 2;
        }

        .niraj-wide{
            grid-column:span 2;
        }

        /* TEXT OVER IMAGE */
        .niraj-overlay{
            position:absolute;
            left:0;
            right:0;
            bottom:0;
            padding:20px;
            background:linear-gradient(transparent,rgba(88, 83, 83, 0.75));
            color:#fff;
        }

        .niraj-overlay h2{
            font-size:24px;
            font-weight:700;
            color: white;
        }

        .niraj-content .niraj-tag{
            font-size:12px;
            font-weight:700;
            letter-spacing:.5px;
            margin-bottom:5px;
            display:block;
            color: #b30000;
        }

    .niraj-content h3{
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.15;
}
/* ================= RESPONSIVE ================= */

        @media(max-width:992px){
            .niraj-news-grid{
                grid-template-columns:repeat(2,1fr);
            }
            .niraj-featured,.niraj-wide{
                grid-column:span 2;
            }
        }

        @media(max-width:576px){
            .niraj-title-area h1{ font-size:28px; }
            .niraj-subtitle{ font-size:16px; }

            .niraj-news-grid{
                grid-template-columns:1fr;
                grid-auto-rows:240px;
            }
            .niraj-featured,.niraj-wide{
                grid-column:span 1;
                grid-row:span 1;
            }
        }

        /* CARD HIGHLIGHT */
.niraj-news-card{
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
    transition: 
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

/* HOVER EFFECT */
.niraj-news-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
    border-color: #b30000;   /* highlight color */
}

/* IMAGE SMOOTH ZOOM */
.niraj-news-card img{
    transition: transform .4s ease;
}

.niraj-news-card:hover img{
    transform: scale(1.06);
}

/*------------------INSPIRES EXCELLENCE--------------------*/

            body {
                margin: 0;
                padding: 0;
                font-family: 'Poppins', sans-serif;
                background-color: #f5f5f5;
                /* Optional page background */
            }

            .banner {
                background-color: #2f2d30;
                /* Dark background */
                color: white;
                display: flex;
                align-items: center;
                /* Vertically center items */
                justify-content: center;
                /* Horizontally center content */
                text-align: left;
                padding: 20px 20px;
                flex-wrap: wrap;
                /* Allow wrapping on small screens */
                gap: 30px;
                /* Space between image & text */
            }

            .banner img {
                height: 100px;
                width: auto;
           
               /* padding-right: 200px;*/
            }

            .banner-text h2 {
                margin: 0;
                font-size: 32px;
                font-weight: 700;
                color: #fff;
            }

            .banner-text p {
                margin-top: 5px;
                font-size: 18px;
                color: #ccc;
                letter-spacing: 1px;
            }

            /* Responsive for mobile */
            @media (max-width: 768px) {
                .banner {
                    flex-direction: column;
                    /* Stack on mobile */
                    text-align: center;
                }

                .banner img {
                    height: 35px;
                    padding-right: 0;   /* ✅ hide/remove padding on mobile */
                }

                .banner-text h2 {
                    font-size: 24px;
                }

                .banner-text p {
                    font-size: 16px;
                }
            }
/*------------------------------notice-card---------------------------------*/
   
            .notice-board-section {
                background: linear-gradient(to bottom, #ffffff, #f9f9f9);
            }

            .notice-card {
                transition: all 0.3s ease;
            }

            .notice-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 10px 25px rgba(210, 4, 45, 0.25);
            }

            .notice-item {
                border-left: 3px solid #355375;
                padding-left: 10px;
                transition: all 0.3s ease;
            }

            .notice-item:hover {
                transform: translateX(5px);
                background: #fff7f8;
                border-left-color: #081933;
            }

            .btn-danger {
                background-color: #355375;
                border: none;
            }

            .btn-danger:hover {
                background-color: #081933;
            }

            .new-blink {
                background: #de1414;
                color: white;
                font-size: 10px;
                font-weight: bold;

                border-radius: 3px;
                margin-left: 5px;
                animation: blinker 1s linear infinite;
                box-shadow: 0 0 8px #de1414;
            }

            @keyframes blinker {
                50% {
                    opacity: 0;
                }
            }
            /* NOTICE CARD BODY SCROLL */
.notice-card .card-body {
    max-height: 450px;
    overflow-y: auto;
    position: relative;
}
/* SMOOTH SCROLLBAR (Modern Browsers) */
.notice-card .card-body::-webkit-scrollbar{
    width: 6px;
}

.notice-card .card-body::-webkit-scrollbar-track{
    background: #f1f1f1;
    border-radius: 10px;
}

.notice-card .card-body::-webkit-scrollbar-thumb{
    background: #355375;
    border-radius: 10px;
}

.notice-card .card-body::-webkit-scrollbar-thumb:hover{
    background: #081933;
}
@media (max-width: 768px){
    .notice-card .card-body{
        max-height: 260px;
    }
  }/*
.notice-card .card-body {
    scroll-behavior: smooth;  smooth manual + auto scroll 
}*/

 /* ================= MOBILE NOTICE ONLY ================= */
.mobile-notice-wrapper {
  display: none;
  
}

@media (max-width: 1000px) {

  /* Hide existing 3 cards */
  #notice-sec .row.g-4 {
    display: none;
  }

  /* Show mobile notice */
  .mobile-notice-wrapper {
    display: block;
    padding: 0 12px;
  }

  .mobile-notice-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
  }

  .mobile-header {
    background: linear-gradient(135deg, #fff, #2f4db8);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-tabs {
    display: flex;
    background: #355375;
  }

  .mobile-tabs button {
    flex: 1;
    border: none;
    background: none;
    padding: 12px;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
  }

  .mobile-tabs .active {
    background: #fff;
    color: #355375;
    font-weight: 600;
    border-bottom: 3px solid #2f4db8;
  }
/* Default icon color */
.m-tab i {
    color: #ffffff;
    transition: color 0.3s; /* smooth transition */
}

/* Active tab icon color */
.m-tab.active i {
    color: #355375;
}

  .mobile-body {
    max-height: 380px;
    overflow-y: auto;
    padding: 14px;
  }

  .m-item {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  }

  .m-item h6 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .m-item span {
    font-size: 12px;
    color: #666;
  }

  .mobile-footer {
    padding: 14px;
    text-align: center;
    background: #f1f3f8;
  }

  .mobile-footer a {
    background: #355375;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
  }

  .m-group {
    display: none;
  }

  .m-group.active {
    display: block;
  }
}

.mobile-tabs {
  display: flex;
  background: #355375;
  
}

.mobile-tabs button {
  flex: 1;
  border: none;
  background: none;
  padding: 9px;
  font-size: 13px;
  cursor: pointer;
  color: #fff;
  position: relative;
  
}

/* TAB SEPARATOR */
.mobile-tabs button:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.4);
}


         
/*----------------------------------Tabs Scroll-Behavior----------------------------*/
  html {
    scroll-behavior: smooth;
}

/* offset for fixed header */
#about {
    scroll-margin-top: 100px; /* adjust according to header height */
}      

/*------------------------Social Media link----------------------*/

        /* Sidebar container */
        .social-sidebar {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%) translateX(-100%);
            display: flex;
            flex-direction: column;
            z-index: 1000;
            animation: slideIn 1s ease-out forwards;
        }

        /* Slide-in animation */
        @keyframes slideIn {
            from {
                transform: translateY(-50%) translateX(-120%);
                opacity: 0;
            }

            to {
                transform: translateY(-50%) translateX(0);
                opacity: 1;
            }
        }

        /* Each social link */
        .social-sidebar a {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 35px;
            height: 35px;
            color: white;
            text-decoration: none;
            transition: all 0.4s ease;
            overflow: hidden;
            border-radius: 0 30px 30px 0;
            font-size: 20px;
            margin: 4px 0;
            box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.25);
            position: relative;
        }

        /* Icon styling */
        .social-sidebar a i {
            width: 50px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .social-sidebar a:hover i {
            transform: scale(1.2);
        }

        /* Label styling */
        .social-sidebar a span {
            display: none;
            margin-left: 10px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .social-sidebar a:hover span {
            display: inline-block;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hover expand effect */
        .social-sidebar a:hover {
            width: 180px;
            padding-left: 10px;
            border-radius: 0 40px 40px 0;
        }

        /* Gradient colors per platform */
        .whatsapp {
            background: linear-gradient(45deg, #25D366, #128C7E);
        }

        .phone {
            background: linear-gradient(45deg, #8e24aa, #ba68c8);
        }

        .facebook {
            background: linear-gradient(45deg, #3b5998, #4e73df);
        }

        .instagram {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
        }

        .twitter {
            background: linear-gradient(45deg, #1DA1F2, #0e71c8);
        }

        .youtube {
            background: linear-gradient(45deg, #FF0000, #cc0000);
        }

        .ilu {
            background: linear-gradient(45deg, #5c6bc0, #3949ab);
        }

        /* Hover glow */
        .social-sidebar a:hover {
            box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.4);
        }

        /* Mobile view */
        @media (max-width: 600px) {
            .social-sidebar {
                top: auto;
                bottom: 10px;
                left: 10px;
                transform: none;
                flex-direction: row;
                animation: none;
            }

            .social-sidebar a {
                border-radius: 50%;
                width: 45px;
                height: 45px;
                justify-content: center;
            }

            .social-sidebar a span {
                display: none !important;
            }
        }
     /*-- ---------Name on the banner ----------*/
   
        .center-text {
            padding: 220px 0 180px 0;
            font-size: 5rem;
            font-weight: 200;
            text-align: center;
            color: white;
            letter-spacing: 2px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
            line-height: 89px;
            align-items: flex-end;
            /* Push content to bottom */
            font-family: Source Serif Pro, Georgia, Times, Times New Roman, serif !important;

        }

        @media (max-width: 600px) {
            .center-text {
                font-size: 2rem;
            }
        }
 
     /* --------------------About Us Section ------------------------------------ */
     
    .about-image-grid {
  position: relative;
  
}

.big-image img {
  width: 100%;
  border-radius: 8px;
}

.small-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.small-images img {
  width: 50%;
  border-radius: 6px;
 
}

.about-badge {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  font-size: 13px;
}

.about-info-box {
  margin-top: 0px;
}

.about-info-box h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 gap: 7px;
}

.info-card {
  display: flex;
  gap: 14px;
  padding: 6px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.info-card .icon {
  width: 35px;
  height: 35px;
  background: #ffd166;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
}

.info-card h5 {
  margin: 0;
  font-size: 15px;
}

.info-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr;
   
  }

  .about-badge {
    position: static;
    margin-top: 20px;
  }
}


/*-------------------------------------- Header -----------------------------------*/

.header-button {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center (if height exists) */
}


:root{
  --iu-red:#a40000;
}

/* ===== HEADER ===== */
.top-header{
  background:var(--iu-red);
  color:#fff;
  padding:14px 24px;
}

.top-header h1{
  font-size:20px;
  margin:0;
  font-weight:500;
}

.menu-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
}

/* ===== MEGA MENU ===== */
.mega-menu{
  display:none;
  background:#fff;
  border-top:4px solid var(--iu-red);
}

.mega-menu.active{
  display:block;
}

/* MENU TOP BAR */
.menu-head{
  background:var(--iu-red);
  color:#fff;
  padding:14px 24px;
}

.menu-head span{
  font-size:18px;
}

.close-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
}

/* MENU GRID */
.menu-item{
  padding:28px 10px;
  text-align:center;
  font-size:18px;
  border:1px solid #ddd;
  cursor:pointer;
}

.menu-item:hover{
  background:#f5f5f5;
  color:var(--iu-red);
  font-weight:500;
}

/* EVENTS SINGLE ROW */
.menu-item.events{
  text-align:left;
  padding-left:40px;
}

/* INFO BAR */
.info-bar{
  background:#f2f2f2;
  padding:22px;
  text-align:center;
}

.info-bar span{
  margin:0 14px;
  font-size:15px;
}

/* ===== SMART TV ===== */
@media (min-width:1600px){
  .menu-item{
    font-size:22px;
    padding:40px;
  }
  .info-bar span{
    font-size:18px;
  }
}
:root{
  --iu-red:#a40000;
}

/* COMPACT HEADER */
.header-compact{
  display:none;
  background:var(--iu-red);
  color:#fff;
  padding:1px 0;
}
/* CALL */
.compact-right a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.compact-right {
  margin-left: auto;        /* Push to right */
  display: flex;
  align-items: center;
  gap: 10px;
}
.compact-row{
  display:flex;
  
  align-items:center;
}

.compact-menu{
  cursor:pointer;
  font-size:16px;
}

/* MEGA MENU */
.mega-menu{
  display:none;
  background:#fff;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  
  z-index:9999;
  overflow-y:auto;
}

.mega-menu.active{
  display:block;
}

.mega-top{
  background:var(--iu-red);
  color:#fff;
  padding:0px 34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mega-top button{
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
}

.mega-item{
  padding:10px;
  text-align:center;
  font-size:18px;
  border:1px solid #ddd;
  cursor:pointer;
}

.mega-item:hover,
.mega-item.active{
  background:#f5f5f5;
  color:var(--iu-red);
  font-weight:500;
}

.mega-item.events{
  text-align:center;
  
}

/* INFO BAR */
.mega-info{
  background:#f2f2f2;
  padding:22px;
  text-align:center;
}

.mega-info span{
  margin:0 14px;
}

/* RESPONSIVE */
@media (max-width:991px){
  .header-desktop{display:none;}
  .header-compact{display:block;}
}

/* SMART TV */
@media (min-width:1600px){
  .mega-item{
    font-size:22px;
    padding:40px;
  }
}

.white-nav-bar {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
}


    /* integral brand in compact header */
.compact-brand {
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
 
}

/* Compact grid already perfect */
.compact-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 2px 15px;
}


    :root {
  --integral-red: #fff;
  --black: #b1040e;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height:-50px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* =====================
   DESKTOP HEADER
===================== */

.header-desktop .utility-bar {
    background: #0b1f3a;
    color: #fff;
    font-size: 14px;
}

.util-row {
  display: flex;
  gap: 18px;
  padding: 8px 24px;
}

.util-row a {
  color: #fff;
  text-decoration: none;
}
.util-row {
  display: flex;
  align-items: center;
  padding: 8px 24px;
}

/* integral left */
.util-row .brand {
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

/* Push links to right */
.util-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 400;
   font-size: large;

}

.util-links span {
  font-weight: 800;
}

.util-links a {
  color: #fff;
  text-decoration: none;
}

.main-header {
  background: var(--integral-red);
}

.main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 24px;
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: black;
  text-decoration: none;
}

/* =====================
   COMPACT HEADER
===================== */

.header-compact {
  display: none;
  background: #b1040e;
}


.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  color: #fff;
  font-weight: 500;
}

.compact-search,
.compact-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.compact-search {
  justify-self: center;
}

.compact-menu {
  justify-self: end;
}

/* =====================
   BREAKPOINT
   (Zoom triggers this)
===================== */

@media (max-width: 1100px) {
  .header-desktop {
    display: none;
  }

  .header-compact {
    display: block;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: auto;
}
.main-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* center nav */
  padding: 7px 24px;
}

/* Logo pinned left */
.logo {
  position: absolute;
  left: 24px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Center nav perfectly */
.main-nav {
  display: flex;
  gap: 26px;
}

/*--------------------------------Footer Section Social Media --------------------------------*/


            /* ===== Footer Social Media ===== */
.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Hover effect */
.footer-social a:hover {
  background: #dc3545;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(220,53,69,0.6);
}

/* Mobile alignment */
@media (max-width: 575px) {
  .footer-social {
    justify-content: flex-start;
  }
}

    
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;          /* thin scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(200, 16, 46, 0.7);
  border-radius: 10px;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(131, 119, 121, 0.7) transparent;
}


/*===================================================== Academic Section =======================================  */

    body {
        font-family: Arial, sans-serif;
        background: #f7f7f7;
        margin: 0;
        padding: 0;
         text-align: justify;
         
    }

    .courses-section {
        max-width: 1400px;
        margin: 0px auto;
        padding: 0 20px;
    }

    .courses-heading {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        border-left: 5px solid #e6c85c;
        padding-left: 15px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .courses-heading span {
        font-size: 60px;
    }

    .courses-subtext {
        max-width: 650px;
        color: #666;
        margin-bottom: 40px;
    }

    .courses-wrapper {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    /* LEFT MENU */
    .courses-menu {
        flex: 1;
        min-width: 260px;
    }

    .course-btn {
        width: 100%;
        padding: 18px;
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        background: #1f3b63;
        color: #fff;
        border: none;
        border-bottom: 1px solid #345278;
        cursor: pointer;
        text-transform: uppercase;
    }

    .course-btn:hover {
        background: #345278;
    }

    .course-btn.active {
        background: #e6c85c;
        color: #000;
    }

    /* RIGHT CONTENT CARD */
.courses-content {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* LEFT MENU CARD */
.courses-menu {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* BUTTON SEPARATION */
.course-btn {
    position: relative;
}

.course-btn:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

/* ACTIVE BUTTON INDICATOR */
.course-btn.active {
    position: relative;
}

.course-btn.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #000;
}

/* COURSE TITLE DECORATION */
.course-title {
    position: relative;
    padding-bottom: 12px;
}

.course-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #e6c85c;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* LIST STYLE IMPROVEMENT */
.course-text ul,
.course-text {
    padding-left: 18px;
}

.course-text li {
    list-style-type: disc;
}

/* APPLY BUTTON CARD FEEL */
.apply-btn-wrap {
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px dashed #ddd;
}

/* HOVER EFFECT FOR CONTENT */
.courses-content:hover {
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* MOBILE POLISH */
@media (max-width: 900px) {
    .courses-menu,
    .courses-content {
        padding: 20px;
    }
}

   /* RIGHT CONTENT */
.courses-content {
    flex: 2;
    min-width: 300px;
}

/* NEW layout for image + text */
.course-row {
    display: flex;
    gap: 30px;
    align-items: center;
}



.course-details {
    flex: 1;
}

.course-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.course-text {
    color: #555;
    line-height: 1.7;
   
    
}
.course-text li {
    margin-bottom: 8px;
     text-align: justify;
    
}

/* Responsive */
@media (max-width: 900px) {
    .course-row {
        flex-direction: column;
        text-align: center;
    }

    .course-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}


    @media (max-width: 480px) {
        .courses-heading {
            font-size: 28px;
        }

        .courses-heading span {
            font-size: 40px;
        }
    }
    .apply-btn-wrap {
    margin-top: 25px;
}

.apply-btn-wrap {
    margin-top: 25px;
}

.apply-btn {
    display: inline-block;
    background: #b31312;
    color: #fff;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #8f0f0e;
}

@media (max-width: 900px) {
    .apply-btn-wrap {
        text-align: center;
    }
}

/* =========================
   COURSES WRAPPER ENHANCE
========================= */
.courses-wrapper {
    border-radius: 5px;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #ddd;
}

/* =========================
   LEFT MENU IMPROVEMENT
========================= */
.courses-menu {
    background: #1f3b63;
}

.course-btn {
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.course-btn:hover {
    padding-left: 26px;
}

/* Active button glow */
.course-btn.active {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15);
}

/* =========================
   RIGHT CONTENT IMPROVEMENT
========================= */
.courses-content {
    position: relative;
}

.course-details {
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   APPLY BUTTON UPGRADE
========================= */
.apply-btn {
    position: relative;
    overflow: hidden;
}

.apply-btn::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.apply-btn:hover::after {
    transform: translateX(4px);
}

/* =========================
   MOBILE POLISH
========================= */
@media (max-width: 900px) {
    .academic-box {
        padding: 30px 20px 35px;
    }

    .academic-box::before {
        left: 20px;
        width: 90px;
    }

    .courses-wrapper {
        padding: 15px;
    }
}


 /* ===============================
  Placement
================================ */

/* RESET */
.integral-2 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* SECTION */
.integral-2 .explore-section {
    padding: 80px 0;
}

.integral-2 .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* TOP HEADING */


/* CONTENT ROW */
.integral-2 .content-row {
    display: flex;
    align-items: center;
    gap: 50px;
 /*    margin-top: 30px;  */
    position: relative;
}

/* LEFT CONTENT */
.integral-2 .content-left {
    flex: 1;
}


.integral-2 .content-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* FEATURES */
.integral-2 .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    margin-bottom: 30px;
}

.integral-2 .features li {
    list-style: none;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
}

.integral-2 .features li::before {
    content: "✔";
    color: #b31312;
    position: absolute;
    left: 0;
}

/* ACTION ROW */
.integral-2 .action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.integral-2 .btn {
    border: 1px solid #081933;
    padding: 12px 28px;
    color: #081933;
    font-weight: 700;
    text-decoration: none;
}
.integral-2 .btn:hover {
    background-color: #b31312; /* red */
    color: #ffffff;
    border-color: #b31312;
    transition: all 0.3s ease;
}


.integral-2 .call-info span {
    font-weight: 700;
    color: #506172;
    display: block;
}

.integral-2 .call-info small {
    color: #555;
}

/* RIGHT IMAGE */
.integral-2 .content-right {
    flex: 1;
}

.integral-2 .content-right img {
    width: 100%;
    border-radius: 4px;
}

/* CENTER LOGO */
.integral-2 .center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.integral-2 .center-logo img {
    width: 76px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {
    .integral-2 .content-row {
        flex-direction: column;
    }

    .integral-2 .center-logo {
        position: static;
        transform: none;
        margin: 20px auto;
    }

    .integral-2 .top-heading h1 {
        font-size: 34px;
    }

    .integral-2 .content-left h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .integral-2 .top-heading h1 {
        font-size: 26px;
    }

    .integral-2 .features {
        grid-template-columns: 1fr;
    }

    .integral-2 .action-row {
        gap: 15px;
    }
}

/* ===============================
   MOBILE: HIDE IMAGE + LOGO
================================ */
@media (max-width: 1000px) {
    .integral-2 .content-right,
    .integral-2 .center-logo {
        display: none;
    }
}


/* ===============================
  Global Opportunities and Linkages
================================ */


.integral-5{
    --primary:#0b4db8;

    /* 🔧 SECTION SIZE CONTROLS */
    --section-padding-y: 80px;   /* top & bottom spacing */
    --section-min-height: 5vh;
   

}


/* Section */
.integral-5.global-section{
    position: relative;
    padding: var(--section-padding-y) 20px;
    min-height: var(--section-min-height);
    background: url('../img/bg/images.jpg') center center no-repeat;
    background-size: cover;
}


.integral-5.global-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(240, 238, 238, 0.75);
    z-index:0;
}

.integral-5 .container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:1;
}

/* Title */
.integral-5 .section-title{
    text-align:center;
    font-size:34px;
    font-weight:600;
    margin-bottom:60px;
   
}

.integral-5 .section-title::after{
    content:'';
    width:280px;
    height:3px;
    background:var(--primary);
    display:block;
    margin:12px auto 0;
}

/* Layout */
.integral-5 .content-row{
    display:flex;
    gap:40px;
    align-items:center;
}

/* Stats */
.integral-5 .stats-box{
    flex:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    position:relative;
}

.integral-5 .stat{
    padding:35px 20px;
    text-align:center;
    transition:.4s;
}

.integral-5 .stat:hover{
    transform:translateY(-6px);
}

.integral-5 .stat h2{
    font-size:46px;
    color:var(--primary);
    margin:0;
    font-weight:700;
}

.integral-5 .stat p{
    margin-top:10px;
    font-size:15px;
    letter-spacing:.3px;
    color:#0b4db8;
}

/* Dividers */
.integral-5 .divider-h,
.integral-5 .divider-v{
    position:absolute;
    background:rgba(11,77,184,.4);
}

.integral-5 .divider-h{
    height:2px;
    width:100%;
    top:50%;
}

.integral-5 .divider-v{
    width:2px;
    height:100%;
    left:50%;
}

/* Advisory Box */
.integral-5 .slider-box{
    flex:1;
    background:#fff;
    padding:35px 55px 55px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;

    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.integral-5 .slider-box h3{
    color:var(--primary);
    font-size:24px;
    margin-top:0;
}

.integral-5 .slider-box:hover{
    transform:translateY(-5px);
}

/* Button */
.integral-5 .btn-wrap{
    display: flex;
    justify-content: center;   /* ✅ horizontal center */
    align-items: center;
    margin-top: 60px;
}
.integral-5 .btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#ab2626,#063a8f);
    color:#fff;
    padding:15px 36px;
    font-size:20px;
    text-decoration:none;
    border-radius:10px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(11,77,184,.4);
}


.integral-5 .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 35px rgba(11,77,184,.55);
}

.integral-5 .btn-arrow{
    font-size:32px;
    line-height:1;
    display:inline-block;
    transition:transform .3s ease;
}

.integral-5 .btn:hover .btn-arrow{
    transform:translateX(6px);
}

/* Responsive */
@media(max-width:991px){
    .integral-5 .content-row{
        flex-direction:column;
    }
}

@media(max-width:576px){
    .integral-5 .stats-box{
        grid-template-columns:1fr;
    }

    .integral-5 .divider-h,
    .integral-5 .divider-v{
        display:none;
    }

    .integral-5 .stat h2{
        font-size:36px;
    }

    .integral-5 .slider-box{
        padding:35px 25px;
    }

    .integral-5 .section-title{
        font-size:26px;
    }
}
@media(max-width:768px){
    .integral-5{
        --section-padding-y: 60px;
        --section-min-height: auto;
    }
}


/* ===============================
   Research Section
================================ */
.research-section{
    padding:60px 0;
}

.research-heading small{
    color:#d32f2f;
    font-weight:600;
}

.research-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:opacity .4s ease;
}

/* Sidebar */
.research-sidebar{
    background:linear-gradient(180deg,#33527b,#132031);
    padding:40px 30px;
    height:100%;
    color:#fff;
}

/* List item */
.research-sidebar li{
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.25);
    cursor:pointer;
}

/* Anchor DEFAULT state */
.research-sidebar li a{
    color:#ffffff;               /* WHITE without hover */
    text-decoration:none;
    display:block;
    transition:color .3s ease;
}

/* Hover & Active */
.research-sidebar li:hover a,
.research-sidebar li.active a{
    color:#0cd0ff;
}

/* View All */
.view-all{
    margin-top:25px;
    font-weight:600;
     color:#fff;
}

.view-all span{
    background:#c62828;
    color:#fff;
    border-radius:50%;
    padding:4px 10px;
    margin-left:6px;
}

/* Mobile accordion */
.accordion-button{
    font-weight:500;
}

/* Responsive */
@media(max-width:768px){
    .desktop-only{display:none;}
}
@media(min-width:769px){
    .mobile-only{display:none;}
}



 


  

