
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        body {
            background: #f8fafc;
            overflow-x: hidden;
        }
        /* animated gradient background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(125deg, #f0f9ff 0%, #e6f0fa 40%, #fff5f0 100%);
            animation: slowFlow 16s ease infinite;
            background-size: 200% 200%;
        }
        @keyframes slowFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        /* floating particles */
        .floating-dots { position: fixed; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
        .dot {
            position: absolute;
            background: rgba(37, 99, 235, 0.06);
            border-radius: 50%;
            animation: floatAround 22s infinite alternate;
        }
        @keyframes floatAround {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-50px) translateX(40px); }
        }
        /* top social bar */
        .social-top {
            background: black;
            color: white;
            padding: 8px 0;
            font-size: 0.8rem;
        }
        .social-top .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            height: 35px;
        }
        .social-top .contact-info marquee {
            width: 100%;
            color: white;
            font-weight: 500;
        }
        .social-top .contact-info marquee p {
            display: inline-block;
            margin: 0;
            padding: 0;
        }
        .social-top .social-icons a {
            color: #f1f5f9;
            margin-left: 18px;
            transition: 0.25s;
            display: inline-block;
            font-size: 1.2rem;
        }
        .social-top .social-icons a:hover { color: #38bdf8; transform: translateY(-2px); }
        /* logo area */
        .logo-area {
            background: white;
            padding: 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .college-logo img {
            max-height: 90px;
            width: auto;
            transition: 0.3s;
            display: block;
        }
         .collegeName{
        font-size: 1.6rem; 
        margin-bottom: 2px; 
        line-height: 1.2; 
        margin-left: 20px;
       } 
       .college-affiliation{
        font-size: 19px; 
        margin-bottom: 0; 
        margin-left: 56px;
       }
        .college-title {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .college-title h1 {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e293b, #2563eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        .college-affiliation {
            font-size: 1.2rem;
            color: #475569;
            font-weight: 500;
            margin-bottom: 0;
        }
         .college-title p {            
            background: linear-gradient(135deg, #1e293b, #2563eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;            
        }
        /* header contact info */
        .header-contact-info {
            display: flex;
            gap: 20px;
            background: linear-gradient(135deg, #f8fafc, #eef2ff);
            padding: 12px 24px;
            border-radius: 60px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid rgba(37, 99, 235, 0.15);
        }
        .header-contact-info p {
            margin-bottom: 0;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-contact-info i {
            font-size: 1rem;
            color: #2563eb;
            background: white;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        /* main navigation */
        .main-navbar {
            background: #2563eb;
            backdrop-filter: blur(12px);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        }
        .navbar-toggler {
            border: none;
            background: black;
            color: white;
            padding: 8px 14px;
            border-radius: 12px;
        }
        .navbar-toggler i {
            font-size: 1.4rem;
            color: white;
        }
        .offcanvas {
            background: #0f172a;
            width: 280px;
            border-right: none;
        }
        .offcanvas .offcanvas-header {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .offcanvas .offcanvas-title {
            color: white;
            font-weight: 700;
        }
        .offcanvas .nav-link {
            color: #e2e8f0;
            font-weight: 500;
            padding: 12px 20px;
            margin: 4px 0;
            border-radius: 12px;
            transition: 0.2s;
        }
        .offcanvas .nav-link:hover {
            background: #2563eb;
            color: white;
            transform: translateX(6px);
        }
        .offcanvas .dropdown-menu {
            background: #1e293b;
            border: none;
        }
        .offcanvas .dropdown-item {
            color: #cbd5e1;
        }
        .offcanvas .dropdown-item:hover {
            background: #2563eb;
            color: white;
        }
        .enroll-btn {
            background: black;
            color: white;
            border-radius: 40px;
            padding: 8px 22px;
            font-weight: 600;
            white-space: nowrap;
            text-decoration: none;
        }
        .enroll-btn:hover {
            background: #1d4ed8;
            color: white;
        }
        /* swiper slider */
        .swiper {
            width: 100%;
            height: 480px;
            border-radius: 28px;
            overflow: hidden;
            margin-top: 25px;
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.15);
        }
        .swiper-slide {
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .slide-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 35px 30px;
            color: white;
        }
        /* notice board */
        .notice-board {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
            padding: 1.2rem;
            height: 100%;
        }
        .notice-title {
            background: #0f172b;
            color: white;
            padding: 12px;
            border-radius: 50px;
            font-weight: 700;
            text-align: center;
        }
        .notice-list {
            list-style: none;
            padding-left: 0;
        }
        .notice-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eef2ff;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        .date-badge {
            font-size: 0.7rem;
            background: #eef2ff;
            padding: 2px 8px;
            border-radius: 50px;
            margin-left: auto;
            white-space: nowrap;
        }
        /* leader cards */
        .leader-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
            text-align: center;
            height: 332px;
        }
        .leader-card:hover { transform: translateY(-10px); }
        .leader-img {
            width: 160px;
            height: 170px;
            border-radius: 50%;
            margin: 25px auto 15px;
            border: 4px solid #e2e8f0;
            /* object-fit: cover; */
        }
        /* stat counter */
        .stat-box {
            background: white;
            border-radius: 28px;
            padding: 1.3rem;
            transition: 0.3s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            text-align: center;
        }
        .counter { font-size: 2.5rem; font-weight: 800; color: #2563eb; }
        /* about section */
        .about-section {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
        }
        .about-img {
            border-radius: 28px;
            width: 100%;
            transition: transform 0.4s;
        }
        /* feedback */
        .feedback-card {
            background: white;
            border-radius: 2rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }
        .feedback-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #2563eb;
        }
        /* More About Section Cards */
        .more-card {
            background: white;
            border-radius: 28px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
            height: 100%;
            cursor: pointer;
        }
        .more-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 40px -12px rgba(37,99,235,0.2);
        }
        .more-card i {
            font-size: 3rem;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .more-card h3 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 20px;
        }
        .gallery-grid img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 16px;
            transition: 0.3s;
            cursor: pointer;
        }
        .gallery-grid img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        /* footer */
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.2s;
            display: inline-block;
            margin-bottom: 8px;
        }
        .footer-links a:hover { color: #38bdf8; transform: translateX(4px); }
        /* animations */
        .fade-up {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s ease;
        }
        .fade-up.appear { opacity: 1; transform: translateY(0); }
        
        /* section heading underline */
        .section-heading {
            position: relative;
            display: inline-block;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
            width: auto;
        }
        .section-heading:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        .section-heading:hover:after {
            width: 100%;
        }
        .text-center .section-heading {
            display: inline-block;
        }
        .text-center .section-heading:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Flex alignment for header */
        .logo-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .logo-name-group {
            display: flex;
            align-items: center;
            gap: 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .logo-title-wrapper {
                flex-direction: column;
                text-align: center;
            }
            .logo-name-group {
                justify-content: center;
                flex-wrap: wrap;
            }
            .header-contact-info {
                justify-content: center;
                margin-top: 15px;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .swiper { height: 280px; }
            .college-title h1 { font-size: 1rem; }
            .college-affiliation { font-size: 0.65rem; }           
            .social-top .contact-info { font-size: 0.6rem; }
            .social-top .social-icons a { margin-left: 8px; font-size: 0.7rem;}
            .stat-box { padding: 0.8rem; }
            .counter { font-size: 1.5rem; }
            .about-section { padding: 1rem; }
            .leader-img { width: 100px; height: 120px; }
            .more-card { padding: 1.2rem; }
            .more-card i { font-size: 2rem; }
            .gallery-grid img { height: 70px; }
            .header-contact-info { flex-direction: row; gap: 12px; padding: 8px 16px; }
            .header-contact-info p { font-size: 0.7rem; }
            .header-contact-info i { width: 25px; height: 25px; font-size: 0.8rem; }
        }
        @media (max-width: 550px) {
            .header-contact-info { flex-direction: column; gap: 8px; align-items: center; }
        }
        @media (max-width: 480px) {
            .college-title h1 { font-size: 0.85rem; }
            .enroll-btn { padding: 4px 10px; font-size: 0.7rem; }
            .gallery-grid { gap: 8px; }
        }
        @media (max-width: 600px) {
            .social-top .contact-info marquee { font-size: 0.65rem; }
        }
        .logo-title-wrapper .college-logo {
            flex-shrink: 0;
        }

        /* ========= SCROLL TO TOP BUTTON ========= */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
            z-index: 9999;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .scroll-top-btn:hover {
            background: #1d4ed8;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
        }
        .scroll-top-btn i {
            animation: bounceIcon 1.2s infinite;
        }
        @keyframes bounceIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        /* =================MY CSS ========================= */
        @media (max-width: 768px) {
            .scroll-top-btn {
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
                bottom: 20px;
                right: 20px;
            }
            .social-icons,.header-contact-info{
                display: none;
            }   
             .contact-info {
                width: 100% !important;  
                flex: 0 0 100%;
                max-width: 100%;
                text-align: center;
            }
            .contact-info a {
                font-size: 14px !important; 
            }
            .section-heading{
                 font-size: 19px !important; 
            } 
             .aboutUS{
                display: none;
             }
             .gall{
                 font-size: 15px !important; 
             }
             .footer-collegeName{ font-size: 21px !important; }   
             .footer-collegeName2{ font-size: 14px !important; }        
        }
 @media (max-width: 576px) {

    .logo-name-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .college-logo {
        flex: 0 0 26px;
    }

    .college-logo img {
        height: 45px;
        width: 45px;
    }

    .college-title {
        flex: 1;
        text-align: center;
        min-width: 0;
        padding: 0 2px;
    }

    .collegeName {
        font-size: 9px !important;  
        margin: 0;
        white-space: nowrap;
        line-height: 1.2;
    }

    .college-affiliation {
        font-size: 2vw !important;
        margin: 0 !important;
        white-space: nowrap;
        margin-left: 0px;
    }
}
      


     
   