
      :root {
        --primary-blue: #1e3a8a;
        --accent-yellow: #ffc107;
        --light-bg: #f8fafc;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      body {
        font-family: "Poppins", sans-serif;
        background-color: var(--light-bg);
        color: #334155;
        scroll-behavior: smooth;
      }
      /* Blog Specific Styles */
      .card-img-top {
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .card:hover .card-img-top {
        transform: scale(1.1);
      }

      [data-bs-theme="dark"] #blog {
        background-color: #020617 !important;
      }

      [data-bs-theme="dark"] #blog .card {
        background-color: #1e293b !important;
        border: 1px solid #334155 !important;
      }

      [data-bs-theme="dark"] #blog .text-muted {
        color: #94a3b8 !important;
      }
      /* Course Section Styles */
      .course-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-color: var(--card-bg);
      }

      .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
      }

      .course-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ef4444;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .bg-soft-primary {
        background-color: rgba(30, 58, 138, 0.1);
      }
      .bg-soft-success {
        background-color: rgba(16, 185, 129, 0.1);
      }
      .bg-soft-info {
        background-color: rgba(6, 182, 212, 0.1);
      }

      [data-bs-theme="dark"] .bg-soft-primary {
        background-color: rgba(59, 130, 246, 0.2);
      }
      [data-bs-theme="dark"] .bg-soft-success {
        background-color: rgba(16, 185, 129, 0.2);
      }
      [data-bs-theme="dark"] .bg-soft-info {
        background-color: rgba(6, 182, 212, 0.2);
      }
      /* Mock Test Specific Styles */
      .mock-test-card {
        border: 1px solid #f1f5f9 !important;
        transition: 0.3s ease;
      }

      .mock-test-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1) !important;
      }

      .pulse-animation {
        animation: pulse-red 2s infinite;
      }

      @keyframes pulse-red {
        0% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
        }
        70% {
          transform: scale(1);
          box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
        }
        100% {
          transform: scale(0.95);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
        }
      }

      [data-bs-theme="dark"] .mock-test-card {
        background-color: #1e293b !important;
        border-color: #334155 !important;
      }

      [data-bs-theme="dark"] .test-meta {
        background-color: #0f172a !important;
      }

      [data-bs-theme="dark"] .test-meta .text-dark {
        color: white !important;
      }
      /* Updates Dashboard Styles */
      #updateTabs .nav-link {
        color: var(--primary-blue);
        border-radius: 12px;
        padding: 12px;
        transition: 0.3s;
      }

      #updateTabs .nav-link.active {
        background-color: var(--primary-blue) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
      }

      #updateTabs .nav-link:hover:not(.active) {
        background-color: rgba(30, 58, 138, 0.05);
      }

      .tab-content {
        background: white;
      }

      [data-bs-theme="dark"] .tab-content {
        background-color: #1e293b !important;
        border-color: #334155 !important;
      }

      [data-bs-theme="dark"] .list-group-item {
        background-color: transparent !important;
        color: #cbd5e1;
        border-color: #334155 !important;
      }

      [data-bs-theme="dark"] .bg-light {
        background-color: #0f172a !important;
      }
      /* Section BG */
      .bg-light-gradient {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      }

      /* Premium Card Design */
      .premium-course-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: 100%;
      }

      .premium-course-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      /* Image Styling */
      .card-image-wrapper {
        width: 100%;
        height: 200px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
      }

      .card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
      }

      .premium-course-card:hover img {
        transform: scale(1.1);
      }

      /* Glass Badge */
      .badge-glass {
        position: absolute;
        bottom: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 5px 12px;
        border-radius: 50px;
        color: white;
        font-size: 0.75rem;
      }

      /* Card Content */
      .card-content {
        padding: 20px 10px 10px 10px;
      }

      .category-tag {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #3b82f6;
        letter-spacing: 1px;
      }

      .rating-box {
        background: #fff9db;
        color: #f59e0b;
        padding: 2px 10px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
      }

      .course-title {
        font-weight: 800;
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 12px;
        color: #1e293b;
        min-height: 45px;
      }

      /* Featured Style */
      .premium-course-card.featured {
        border: 2px solid #3b82f6;
      }

      .featured-badge {
        position: absolute;
        top: -12px;
        right: 25px;
        background: #ef4444;
        color: white;
        padding: 4px 15px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
      }
      /* Testimonial Specific Styles */
      .testimonial-card {
        background: #ffffff;
        transition: all 0.4s ease;
        position: relative;
        border: 1px solid #f1f5f9 !important;
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1) !important;
      }

      .featured-testimonial {
        border-top: 5px solid var(--primary-blue) !important;
      }

      .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #475569;
        font-style: italic;
      }

      .user-info img {
        border: 2px solid var(--primary-blue);
        padding: 2px;
      }

    /*Message From Principle & Chairmain Section ko lagi*/
    
    .leadership-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .leadership-title h3 {
        font-weight: 800;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .leadership-title h3::after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        background: #dc3545;
        bottom: 0;
        left: 20%;
        border-radius: 2px;
    }

    .message-card {
        background: #ffffff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border: none;
        transition: all 0.4s ease;
        margin: 20px 10px;
    }

    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        height: 100%;
        min-height: 400px;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /*transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);*/
    }

    .message-card:hover .card-img-wrapper img {
        transform: scale(1.1);
    }

    .card-content-wrapper {
        padding: 50px;
        position: relative;
    }

    .quote-mark {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 80px;
        color: rgba(220, 53, 69, 0.1);
        font-family: serif;
    }

    .designation-badge {
        display: inline-block;
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
        padding: 5px 15px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-bottom: 15px;
        text-uppercase;
    }

    .leader-name {
        font-size: 2rem;
        font-weight: 800;
        color: #1a2a3a;
        margin-bottom: 20px;
    }

    .leader-message {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #5d6d7e;
        font-style: italic;
        margin-bottom: 25px;
    }


    /* Swiper Navigation Dots */
    .swiper-pagination-bullet-active {
        background: #dc3545 !important;
        width: 25px !important;
        border-radius: 5px !important;
    }

    @media (max-width: 768px) {
        .card-content-wrapper { padding: 30px; }
        .card-img-wrapper { min-height: 300px; }
        .leader-name { font-size: 1.5rem; }
    }

    /*news & update */
    :root {
            --college-red: #c8102e; /* Official University Red */
            --college-navy: #002147; /* Oxford Navy Style */
            --text-dark: #1d1d1f;
            --light-bg: #f5f5f7;
        }

        .college-news { padding: 90px 0; background: #fff; font-family: 'Inter', sans-serif; }

        /* News Card Wrapper */
        .news-card-wrapper {
            border-radius: 20px;
            background: #fff;
            border: 1px solid #e5e5e5;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Image Box with Date Ribbon */
        .news-img-container {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .news-img-container img {
            width: 100%; height: 100%; object-fit: cover;
            transition: 0.6s ease;
        }
        .date-ribbon {
            position: absolute; top: 0; left: 20px;
            background: var(--college-red); color: #fff;
            padding: 10px 15px; text-align: center;
            border-radius: 0 0 10px 10px; z-index: 2;
            font-weight: 800; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .date-ribbon span { display: block; font-size: 12px; font-weight: 400; opacity: 0.9; }

        /* Content Area */
        .news-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .news-cat { 
            font-size: 11px; font-weight: 700; color: var(--college-red); 
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; 
        }
        .news-title { 
            font-size: 1.25rem; font-weight: 700; color: var(--college-navy); 
            line-height: 1.4; margin-bottom: 15px; transition: 0.3s;
        }
        .news-excerpt { font-size: 14px; color: #636e72; line-height: 1.6; margin-bottom: 20px; }

        /* Hover Effects */
        .news-card-wrapper:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0,33,71,0.15);
            border-color: transparent;
        }
        .news-card-wrapper:hover img { transform: scale(1.1); }
        .news-card-wrapper:hover .news-title { color: var(--college-red); }

        /* Read More Button */
        .btn-read {
            margin-top: auto; font-weight: 700; font-size: 13px;
            color: var(--college-navy); text-decoration: none;
            display: flex; align-items: center; gap: 8px;
        }
        .btn-read i { transition: 0.3s; color: var(--college-red); }
        .btn-read:hover i { transform: translateX(5px); }

        /* Section Header Line */
        .title-line { width: 60px; height: 4px; background: var(--college-red); margin-top: 15px; }

        /*Academic Program*/

        :root { --p-red: #dc3545; --dark: #1a1a1a; }

        .advance-academic { padding: 100px 0; background: #fff; font-family: 'Poppins', sans-serif; }

        /* Card Container */
        .edu-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        /* Image Wrapper with Zoom Effect */
        .edu-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .edu-img-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            transition: 0.6s;
        }

        /* Floating Category Badge */
        .edu-badge {
            position: absolute; top: 20px; right: 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 5px 15px; border-radius: 50px;
            font-size: 12px; font-weight: 700; color: var(--p-red);
            z-index: 2;
        }

        /* Content Area */
        .edu-content { padding: 30px; position: relative; }
        
        .edu-title { font-weight: 800; color: var(--dark); margin-bottom: 15px; transition: 0.3s; }
        
        .edu-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }

        /* Interactive Hover Effect */
        .edu-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-color: var(--p-red);
        }
        .edu-card:hover .edu-img-wrapper img { transform: scale(1.1); }
        .edu-card:hover .edu-title { color: var(--p-red); }

        /* Bottom Decoration Line */
        .edu-card::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 5px; background: var(--p-red);
            transition: 0.4s;
        }
        .edu-card:hover::after { width: 100%; }

        /* Button Style */
        .btn-view {
            width: 40px; height: 40px; background: #f8f9fa;
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; color: var(--dark);
            transition: 0.3s; text-decoration: none;
        }
        .edu-card:hover .btn-view { background: var(--p-red); color: #fff; }

        /*About Section*/

        /* Section Styling */
        .mid-about { padding: 90px 0; background: #fff; font-family: 'Poppins', sans-serif; }
        
        /* Image Styling with Floating Badge */
        .about-img-box { position: relative; display: inline-block; }
        .about-img-box img { 
            width: 100%; border-radius: 30px; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
        }
        
        /* Floating Stats Badge */
        .floating-experience {
            position: absolute; bottom: -20px; right: -20px;
            background: #dc3545; color: white; padding: 20px;
            border-radius: 20px; text-align: center;
            box-shadow: 0 15px 30px rgba(220, 53, 69, 0.3);
            z-index: 2;
        }

        /* Text Side Styling */
        .sub-title { color: #dc3545; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 10px; }
        .main-title { font-weight: 800; color: #2c3e50; line-height: 1.3; }
        .desc-text { color: #6c757d; line-height: 1.8; margin-bottom: 30px; }

        /* Features Grid (Market Style) */
        .feature-box {
            display: flex; align-items: center; gap: 15px;
            padding: 15px; border-radius: 15px;
            background: #f8f9fa; transition: 0.3s;
            border: 1px solid transparent;
        }
        .feature-box:hover {
            background: #fff; border-color: #dc3545;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .feature-icon {
            width: 50px; height: 50px; background: #fff;
            color: #dc3545; display: flex; align-items: center;
            justify-content: center; border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 20px;
        }

        .btn-custom {
            padding: 12px 35px; border-radius: 50px;
            font-weight: 600; transition: 0.3s;
        }

        /*Academic Section*/

        :root { --p-red: #dc3545; --dark: #1a1a1a; }

        .advance-academic { padding: 100px 0; background: #fff; font-family: 'Poppins', sans-serif; }

        /* Card Container */
        .edu-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        /* Image Wrapper with Zoom Effect */
        .edu-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .edu-img-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            transition: 0.6s;
        }

        /* Floating Category Badge */
        .edu-badge {
            position: absolute; top: 20px; right: 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 5px 15px; border-radius: 50px;
            font-size: 12px; font-weight: 700; color: var(--p-red);
            z-index: 2;
        }

        /* Content Area */
        .edu-content { padding: 30px; position: relative; }
        
        .edu-title { font-weight: 800; color: var(--dark); margin-bottom: 15px; transition: 0.3s; }
        
        .edu-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }

        /* Interactive Hover Effect */
        .edu-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            border-color: var(--p-red);
        }
        .edu-card:hover .edu-img-wrapper img { transform: scale(1.1); }
        .edu-card:hover .edu-title { color: var(--p-red); }

        /* Bottom Decoration Line */
        .edu-card::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 5px; background: var(--p-red);
            transition: 0.4s;
        }
        .edu-card:hover::after { width: 100%; }

        /* Button Style */
        .btn-view {
            width: 40px; height: 40px; background: #f8f9fa;
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; color: var(--dark);
            transition: 0.3s; text-decoration: none;
        }
        .edu-card:hover .btn-view { background: var(--p-red); color: #fff; }

        /*About Section*/
        
        /* Section Styling */
        .mid-about { padding: 90px 0; background: #fff; font-family: 'Poppins', sans-serif; }
        
        /* Image Styling with Floating Badge */
        .about-img-box { position: relative; display: inline-block; }
        .about-img-box img { 
            width: 100%; border-radius: 30px; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
        }
        
        /* Floating Stats Badge */
        .floating-experience {
            position: absolute; bottom: -20px; right: -20px;
            background: #dc3545; color: white; padding: 20px;
            border-radius: 20px; text-align: center;
            box-shadow: 0 15px 30px rgba(220, 53, 69, 0.3);
            z-index: 2;
        }

        /* Text Side Styling */
        .sub-title { color: #dc3545; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 10px; }
        .main-title { font-weight: 800; color: #2c3e50; line-height: 1.3; }
        .desc-text { color: #6c757d; line-height: 1.8; margin-bottom: 30px; }

        /* Features Grid (Market Style) */
        .feature-box {
            display: flex; align-items: center; gap: 15px;
            padding: 15px; border-radius: 15px;
            background: #f8f9fa; transition: 0.3s;
            border: 1px solid transparent;
        }
        .feature-box:hover {
            background: #fff; border-color: #dc3545;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .feature-icon {
            width: 50px; height: 50px; background: #fff;
            color: #dc3545; display: flex; align-items: center;
            justify-content: center; border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 20px;
        }

        .btn-custom {
            padding: 12px 35px; border-radius: 50px;
            font-weight: 600; transition: 0.3s;
        }