 
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Serif+Bengali:wght@100..900&display=swap');
        
        html {
            scroll-behavior: smooth;
        } 
        .section-title {
            color: #343a40;
            font-size: clamp(2rem, 5vw, 2.5rem); 
            font-weight: 700;
        }
        .section-subtitle {
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
        } 
        .top-bar-fixed-custom {
            z-index: 1040; 
            height: 35px; 
        } 
        .main-nav-fixed-custom {
            z-index: 1039; 
            top: 35px; 
        } 
        .language-dropdown-fix {
            z-index: 1045 !important; 
        } 
        
        .navbar-nav .nav-link {
            font-weight: 500;
            position: relative;
            
            padding-bottom: 5px !important; 
            transition: color 0.3s ease;
        } 
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--menu-text) !important; 
        } 
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff9900;
            border-radius: 2px;
            transition: width 0.3s ease-out; 
        } 
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        } 
        @media (min-width: 992px) { 
            .navbar-nav .nav-item {
                margin-right: 1.5rem; 
            } 
            .navbar-nav .dropdown-toggle::after {
                display: none !important;
            } 
            .navbar-expand-lg .dropdown .dropdown-menu {
                display: block; 
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-in-out;
                margin-top: 0;
                transform: translateY(10px);
                pointer-events: none;
                border-top: 2px solid #ff9900; 
            } 
            .navbar-expand-lg .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
        } 
        
        .custom-btn-style.rounded-pill:hover {
            border: 2px solid white !important; 
            box-shadow: 0 6px 15px rgba(255, 153, 0, 0.7), 0 0 0 2px rgba(255, 255, 255, 0.5) !important;
        }


        .carousel-item {
            height: 450px; 
            max-height: 450px;
            background-color: #343a40;
            position: relative;
        }

        #heroCarousel,
        .carousel-inner {
            border-radius: 8px; 
            overflow: hidden; 
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            opacity: 1; 
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: initial;
            text-align: center;
            padding: 0 15px;
            z-index: 2; 
        }
        
        .caption-content {
            opacity: 0;
            transform: translateY(-50px);
            transition: all 0.8s ease-out 0.5s; 
            max-width: 90%; 
            margin: auto;
        }
        
        .carousel-item.active .caption-content {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-caption h5, 
        .carousel-caption p {
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8); 
            display: inline-block; 
            padding: 8px 20px; 
            border-radius: 6px;
            background-color: rgba(0, 0, 0, 0.45); 
            box-decoration-break: clone; 
            line-height: 1.2;
        }

        .carousel-caption h5 {
            margin-bottom: 5px !important; 
            font-size: 2.25rem; 
        }
        
        .carousel-caption p {
            margin-bottom: 20px !important; 
            font-size: 1.25rem;
            display: block; 
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        
        
        .carousel-control-prev, .carousel-control-next {
            width: 45px; 
            height: 45px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.6); 
            border: 1px solid rgba(255, 255, 255, 0.5); 
            opacity: 1;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3; 
        }

        .carousel-control-prev:hover, .carousel-control-next:hover {
            background-color: #ff9900; 
            transform: translateY(-50%) scale(1.1); 
            box-shadow: 0 4px 10px rgba(255, 153, 0, 0.7); 
        }
        
        .carousel-control-prev-icon, .carousel-control-next-icon {
            width: auto; 
            height: auto;
            background: none; 
            color: white; 
            font-size: 1.2rem; 
            display: flex; 
            align-items: center;
            justify-content: center;
        }
        
        .carousel-control-prev-icon i, .carousel-control-next-icon i {
            display: block;
        }

        
        .social-icon-link {
            color: #fff !important;
            margin: 0 5px; 
            display: inline-flex;
            width: 25px; 
            height: 25px; 
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.15); 
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s, transform 0.3s;
            text-decoration: none !important; 
        }
        
        .top-bar-link {
            color: white !important; 
            text-decoration: none !important;
            transition: color 0.3s;
        }
        
        .top-bar-link:hover {
            color: #ff9900 !important; 
        }
        
        

        .social-icon-link:hover {
            background-color: #ff9900; 
            transform: scale(1.1);
            color: #fff !important;
        }
        
        .offcanvas {
            border-radius: 0 10px 10px 0; 
            box-shadow: 0 0 15px rgba(0,0,0,0.2);
        }

        .offcanvas-header {
            background-color: #ff9900; 
            color: white;
            border-bottom: 3px solid #f8f9fa; 
        }
        
        .offcanvas-header .offcanvas-title {
            color: white;
            font-weight: 700;
        }
        
        .offcanvas-header .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%); 
        }

        .offcanvas-body {
            padding: 0; 
            background-color: #fcfcfc; 
        }

        .offcanvas-body .nav-item {
            border-bottom: 1px solid #eee; 
        }
        
        .offcanvas-body .nav-link {
            padding: 1rem 1.5rem; 
            font-size: 1.1rem; 
            color: #343a40;
            transition: background-color 0.3s, color 0.3s;
            display: block; 
            width: 100%;
        }

        .offcanvas-body .nav-link:hover, .offcanvas-body .nav-link.active {
            background-color: #ffe8cc; 
            color: #ff9900;
        }
        
        .offcanvas-body .dropdown-menu {
            border: none;
            background-color: #f1f1f1;
        }
        .offcanvas-body .dropdown-item {
            padding-left: 2.5rem; 
            font-size: 1rem;
        }

        @media (max-width: 767.98px) {
            
            
            body {
                padding-top: 95px; 
            }

            .top-bar-fixed-custom {
                 height: 35px; 
                 display: flex; 
                 align-items: center;
            }

            .main-nav-fixed-custom {
                top: 35px; 
            }
            
            .top-bar-mobile {
                padding: 0 10px; 
            }

            .top-bar-mobile .contact-info {
                font-size: 0.7rem; 
                margin-bottom: 0; 
                text-align: left !important;
                white-space: nowrap; 
                overflow: hidden;
                text-overflow: ellipsis; 
            }
            
            .top-bar-mobile .contact-info span:not(:first-child) {
                display: none; 
            }

            .top-bar-mobile .right-section {
                justify-content: flex-end !important; 
                margin-top: 0; 
            }
            
            .top-bar-mobile .language-dropdown-fix {
                font-size: 0.75rem !important; 
            }
            
            .top-bar-mobile .social-icon-link {
                width: 25px; 
                height: 25px;
                font-size: 0.8rem;
                display: none; 
            }
            
            .carousel-item {
                height: 0; 
                padding-bottom: 60%; 
                max-height: none; 
            }
            .carousel-caption p {
                display: none !important; 
            }
            .carousel-control-prev, .carousel-control-next {
                display: none !important;
            }
        }

        /* নতুন হিরো সেকশন */
        .hero-section {
            background-color: #fff9f6;
            padding-top: 4rem;
            padding-bottom: 8rem; /* স্লাইডারের জন্য জায়গা */
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            position: relative;
        }
        .hero-tagline {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ff6347;
        }
        .hero-tagline i {
            margin-right: 8px;
        }
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #212529;
            margin: 1rem 0;
        }
        .hero-description {
            color: #555;
            margin-bottom: 2rem;
            max-width: 500px;
        }
        .hero-button {
            border: 2px solid #ff8c00;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .hero-button.btn-primary {
            background-color: #ff8c00;
            color: white;
        }
         .hero-button.btn-primary:hover {
            background-color: #e67e00;
            border-color: #e67e00;
        }
        .hero-button.btn-secondary {
            background-color: transparent;
            color: #ff8c00;
        }
        .hero-button.btn-secondary:hover {
            background-color: #ff8c00;
            color: white;
        }
        .hero-button i {
            margin-right: 8px;
        }
        .hero-certification {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .hero-certification img {
            height: 40px;
            margin-right: 15px;
        }
        .hero-image {
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        /* ফিচার স্লাইডার */
        .feature-slider-wrapper {
            margin-top: -6rem; /* হিরো সেকশনের উপরে ওঠানো */
            position: relative;
            z-index: 5;
            padding: 0 50px; /* অ্যারোর জন্য জায়গা */
        }
        .feature-card {
            background: #fff;
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
             transform: translateY(-10px);
             box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .feature-icon {
            height: 50px;
            margin-bottom: 1rem;
        }
        .feature-title {
            font-weight: 600;
            color: #343a40;
            font-size: 1rem;
        }
        .feature-slider .slick-arrow {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 10;
        }
        .feature-slider .slick-arrow:hover {
            background: #ff6347;
        }
        .feature-slider .slick-arrow:hover:before {
            color: #fff;
        }
        .feature-slider .slick-prev { left: 0; }
        .feature-slider .slick-next { right: 0; }

        .feature-slider .slick-arrow:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 16px;
            color: #343a40;
        }
        .feature-slider .slick-prev:before { content: '\f060'; }
        .feature-slider .slick-next:before { content: '\f061'; } 
        
        .blog-section {
            padding: 3rem 0;
            position: relative;
        }
        .blog-card {
            border: 1px solid #e9ecef;
            border-radius: 1rem;
            overflow: hidden;
            margin: 0 10px;
            background: #fff;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .blog-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        .blog-image-wrapper {
            position: relative;
            overflow: hidden;
        }
        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }
        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .blog-category-tag {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .blog-category-tag:hover {
            background-color: #ff6347;
            color: #fff;
        }
        .blog-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .blog-meta {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 0.75rem;
        }
        .blog-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #343a40;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 44px;
            flex-grow: 1;
        }
         .blog-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        .blog-title a:hover {
            color: #ff6347;
        }
        .blog-details-btn {
            background-color: #ffc107;
            color: #212529;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .blog-details-btn:hover {
            background-color: #ffca2c;
            transform: translateY(-2px);
        }
        .all-blogs-btn {
            background-color: #ff6347;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .all-blogs-btn:hover {
             background-color: #ff7f50;
             box-shadow: 0 5px 15px rgba(255, 99, 71, 0.4);
        }
         .blog-slider .slick-arrow {
            width: 40px;
            height: 40px;
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 50%;
            z-index: 5;
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            transition: all 0.2s ease;
        }
        .blog-slider .slick-arrow:hover {
             background-color: #ff6347;
             border-color: #ff6347;
        }
        .blog-slider .slick-arrow:hover:before {
             color: #fff;
        }
        .blog-slider .slick-prev { left: -20px; }
        .blog-slider .slick-next { right: -20px; }

         .blog-slider .slick-arrow:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 14px;
            color: #343a40;
        }
        .blog-slider .slick-prev:before { content: '\f060'; }
        .blog-slider .slick-next:before { content: '\f061'; }

        @media (max-width: 1200px) {
            .blog-slider .slick-prev { left: -10px; }
            .blog-slider .slick-next { right: -10px; }
        }

        @media (max-width: 767px) {
            .blog-slider .slick-arrow { display: none !important; }
        }
        
        /* ভিডিও গ্যালারি সেকশন */
        .video-gallery-section {
            background-color: #f8f9fa;
        }
        .video-thumbnail {
            position: relative;
            cursor: pointer;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .video-thumbnail img {
            width: 100%;
            transition: transform 0.3s ease;
        }
        .video-thumbnail:hover img {
            transform: scale(1.05);
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        .video-thumbnail:hover .video-overlay {
            background: rgba(0,0,0,0.5);
        }
        .video-overlay i {
            color: #fff;
            font-size: 3rem;
            background: rgba(0,0,0,0.4);
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        .video-thumbnail:hover .video-overlay i {
            transform: scale(1.1);
        }
        .video-modal .btn-close {
            position: absolute;
            top: -30px;
            right: 0;
            background-color: white;
            border-radius: 50%;
            opacity: 1;
            padding: 0.5rem;
        }
        .video-modal .modal-content {
            background: transparent;
            border: none;
        }
        .video-modal .modal-body {
            padding: 0;
        }
        .video-modal .ratio {
            border-radius: 1rem;
            overflow: hidden;
        }
        
        /* ফুটার সেকশন */
        .footer-section {
            background-color: #3d3434;
            color: #e0e0e0;
            padding: 4rem 0 0;
        }
        .footer-top {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 1px solid #5a5252;
        }
        .footer-top h2 {
            font-weight: 700;
            color: #fff;
        }
        .footer-top p {
            color: #c7c7c7;
        }
        .footer-btn {
            border: 1px solid #c7c7c7;
            color: #c7c7c7;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        .footer-btn:hover {
            background-color: #ff8c00;
            color: #fff;
            border-color: #ff8c00;
        }
        .footer-widgets {
            padding: 4rem 0;
        }
        .widget-title {
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        .footer-section ul {
            padding-left: 0;
            list-style: none;
        }
        .footer-section ul li a {
            color: #c7c7c7;
            text-decoration: none;
            line-height: 2.2;
            transition: all 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #ff8c00;
            padding-left: 5px;
        }
        .contact-info-list li {
            margin-bottom: 1rem;
            display: flex;
        }
        .contact-info-list i {
            width: 20px;
            margin-right: 10px;
            margin-top: 5px;
        }
        .footer-social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            margin: 0 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-social-icons a:hover {
            background-color: #ff8c00;
            transform: translateY(-3px);
        }

        .copyright-bar {
            background-color: #2e2828;
            padding: 1.5rem 0;
            text-align: center;
            color: #c7c7c7;
        }
        
        /* Back to Top Button */
        #backToTopBtn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            display: none;
            width: 45px;
            height: 45px;
            background-color: #ff8c00;
            color: #fff;
            border: none;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            font-size: 18px;
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        #backToTopBtn:hover {
            background-color: #e67e00;
            transform: translateY(-4px);
        }


        .employee-card {
            border: 2px solid transparent;
            border-radius: 1rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            text-align: left;
            overflow: hidden;
            background-color: #ffffff;
        }

        .employee-card:hover {
            transform: translateY(-5px);
            border-color: #007bff;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15), 0 0 0 2px #007bff;
        }

        .employee-img-container {
            width: 100%;
            height: 250px;
            overflow: hidden;
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background-color: #f8f9fa; 
            margin-bottom: 1rem; 
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

        .employee-img {
            width: calc(100% - 20px);
            height: calc(100% - 20px);
            object-fit: cover;
            border-radius: 0.75rem; 
            margin: 10px; 
            border: none; 
            transition: transform 0.5s;
        }

        .employee-card:hover .employee-img {
            transform: scale(1.03);
        }

        .employee-card-body {
            padding-left: 1.5rem; 
            padding-right: 1.5rem;
            padding-top: 0; 
            padding-bottom: 0;
            min-height: 140px;
        }

        .employee-card-body h6.text-muted {
            color: #6c757d; 
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.25rem; 
            text-transform: uppercase; 
            transition: color 0.3s ease-in-out; 
        }

        .employee-card-body h5.card-title {
            color: #343a40; 
            font-weight: 700;
            font-size: 1.25rem; 
            margin-bottom: 0.75rem; 
            transition: color 0.3s ease-in-out; 
        }

        .employee-card-body p.card-text { 
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .employee-card:hover h5.card-title,
        .employee-card:hover h6.text-muted {
            color: #e83e8c;
        }

        .employee-social-links {
            display: flex;
            justify-content: flex-start; 
            padding-left: 1.5rem; 
            padding-bottom: 1.5rem;
            margin-top: -0.5rem;
            border-top: none; 
        }

        .employee-social-links a {
            color: #e83e8c; 
            font-size: 1.1rem;
            margin-right: 10px; 
            transition: color 0.3s;
            background-color: transparent; 
            border-radius: 50%; 
            width: 30px; 
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .employee-social-links a:hover {
            color: #c2185b; 
        }

 .breadcrumb-section {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 6%;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-link {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #0056b3;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #adb5bd;
}

.student-header {
    margin-bottom: 2.5rem; 
    padding: 2rem 0;
    width: 100%; 
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.student-title-main { 
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.search-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.9rem 1.5rem;
    padding-right: 3.5rem; 
    border: 2px solid #e0e0e0;
    border-radius: 9999px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-input:focus {
    border-color: #28a745;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #28a745;
}

@keyframes arcRotateClockwise{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes arcRotateCounterClockwise{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}

.student-card{
    width:100%;
    max-width:330px;
    min-height:560px;
    border:2px solid transparent;
    border-radius:1.5rem;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
    background-color:white;
    position:relative;
    overflow:hidden;
    transition:all 0.3s ease-in-out;
    display:flex;
    flex-direction:column;
}

.student-card:hover{
    border:2px solid #007bff;
    box-shadow:0 15px 30px rgba(0,0,0,0.15), 0 0 0 3px rgba(0, 123, 255, 0.2);
    transform:translateY(-8px) scale(1.02);
    cursor:pointer;
}

.student-top-content{
    padding:2.5rem 1.5rem 1.5rem;
    text-align:center;
    flex-grow:1;
    display:flex;
    flex-direction:column;
}

.student-photo-container{
    width:140px;
    height:140px;
    margin:0 auto 1.5rem;
    position:relative;
    z-index:5;
    display:flex;
    justify-content:center;
    align-items:center;
}

.student-photo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    z-index:2;
    border:5px solid white;
}

.student-photo-container::before{
    content:'';
    position:absolute;
    width:calc(140px + 2 * 7px + 2 * 2px);
    height:calc(140px + 2 * 7px + 2 * 2px);
    border-radius:50%;
    z-index:1;
    border:2px solid #00a2ff;
    top:-9px;
    left:-9px;
    clip-path:polygon(50% 0%,45% 0%,45% 50%,55% 50%,55% 0%,100% 0%,100% 100%,55% 100%,50% 100%,45% 100%,45% 50%,55% 50%,0% 100%,0% 0%);
    animation:arcRotateClockwise 10s linear infinite;
    transition:all 0.3s ease;
}

.student-photo-container::after{
    content:'';
    position:absolute;
    width:calc(120px + 2 * 3px + 2 * 2px);
    height:calc(120px + 2 * 3px + 2 * 2px);
    border-radius:50%;
    z-index:1;
    border:2px solid #00a2ff;
    top:5px;
    left:5px;
    clip-path:polygon(50% 0%,40% 0%,40% 50%,60% 50%,60% 0%,100% 0%,100% 100%,60% 100%,50% 100%,40% 100%,40% 50%,60% 50%,0% 100%,0% 0%);
    animation:arcRotateCounterClockwise 8s linear infinite;
    transition:all 0.3s ease;
}

.student-name-link{
    text-decoration:none;
    display:block;
    position:relative;
}
.student-name-link::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1;
}

.student-name{
    font-size:1.5rem;
    font-weight:700;
    color:#1a1a1a;
    margin-top:1rem;
    letter-spacing:1px;
    transition:color 0.2s ease-in-out;
    cursor:pointer;
    position:relative;
    z-index:2;
}
.student-name-link:hover .student-name{
    color:#007bff;
}
.student-handle{
    font-size:0.9rem;
    color:#6c757d;
    margin-bottom:1.5rem;
    position:relative;
    z-index:2;
}
.student-location{
    font-size:0.8rem;
    color:#6c757d;
    margin-bottom:2rem;
    line-height:1.4;
    position:relative;
    z-index:2;
}
.student-social-icons{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    margin-bottom:2rem;
    position:relative;
    z-index:3;
}
.student-social-icon-link{
    width:35px;
    height:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #ddd;
    color:#6c757d;
    border-radius:50%;
    transition:all 0.2s;
    text-decoration:none;
    position:relative;
    z-index:3;
}
.student-social-icon-link:hover{
    background-color:#007bff;
    color:white;
    border-color:#007bff;
    text-decoration:none;
}

.student-follow-btn{
    background-image: linear-gradient(to right, #007bff, #0056b3);
    color:white;
    padding:0.9rem 4.5rem;
    border-radius:9999px;
    font-weight:700;
    border:none;
    transition:all 0.3s;
    text-transform:uppercase;
    box-shadow:0 8px 15px rgba(0, 123, 255, 0.3);
    text-decoration:none;
    display:inline-block;
    position:relative;
    z-index:5;
    margin-top:auto;
    letter-spacing: 0.5px;
}
.student-follow-btn:hover{
    background-image: linear-gradient(to right, #0056b3, #007bff);
    box-shadow:0 4px 10px rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    color:white;
}

.student-stats-box{
    background-color:#edf2f7;
    padding:1rem 1rem 1.5rem;
    border-radius:0 0 1.5rem 1.5rem;
    display:flex;
    justify-content:space-around;
    text-align:center;
    margin-top:auto;
    width:100%;
    position:relative;
    z-index:2;
}
.student-stat-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-grow:1;
}

.student-stat-number{
    font-size:1.35rem;
    font-weight:800;
    color:#1a1a1a;
}

.student-stat-label{
    font-size:0.8rem;
    color:#6c757d;
    font-weight:500;
}
       .image_with_text_right {
            background-color: #fff;
            padding: 80px 0;
            overflow: hidden; 
            position: relative; 
        }
        .image_with_text_right__content {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap; 
        }
        .image_with_text_right__left {
            position: relative;
            flex: 1;
            min-width: 300px; 
            margin-right: 50px; 
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .image_with_text_right__left img {
            max-width: 100%;
            height: auto;
            border-radius: 15px; 
            z-index: 2; 
            position: relative;
        }
        .image_with_text_right__shape-bg {
            position: absolute;
            background: linear-gradient(135deg, #ff8a00, #ffc87c);
            border-radius: 50%; 
            width: 450px; 
            height: 450px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.8;
            filter: blur(50px);
            z-index: 1; 
        }
        .image_with_text_right__right {
            flex: 1;
            min-width: 400px;
            text-align: right; 
            padding-left: 30px; 
        }
        .image_with_text_right__right h1 {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #333;
        }
        .image_with_text_right__right h1 strong {
            color: #ff8a00; 
        }
        .image_with_text_right__right p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 550px; 
            margin-left: auto;
        }
        .image_with_text_right__btn {
            background-color: #ff8a00;
            color: #fff;
            border: 2px solid transparent;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .image_with_text_right__btn:hover {
            background-color: #fff;
            color: #333;
            border: 2px solid #ff8a00;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 991px) {
            .image_with_text_right__content {
                flex-direction: column;
                text-align: center;
            }
            .image_with_text_right__left {
                margin-right: 0;
                margin-bottom: 50px;
            }
            .image_with_text_right__right {
                padding-left: 0;
                min-width: unset;
                text-align: center;
            }
            .image_with_text_right__right p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 767px) {
            .image_with_text_right {
                padding: 60px 0;
            }
            .image_with_text_right__right h1 {
                font-size: 2.5rem;
            }
            .image_with_text_right__shape-bg {
                width: 350px;
                height: 350px;
            }
            .image_with_text_right__left img {
                height: auto;
            }
        }
        @media (max-width: 576px) {
            .image_with_text_right__right h1 {
                font-size: 2rem;
            }
            .image_with_text_right__right p {
                font-size: 1rem;
            }
            .image_with_text_right__shape-bg {
                width: 280px;
                height: 280px;
                filter: blur(30px);
            }
        } 
        .image_with_text_left {
            background-color: #fff;
            padding: 80px 0;
            overflow: hidden; 
            position: relative; 
        }
        .image_with_text_left__content {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap; 
        }
        .image_with_text_left__left {
            position: relative;
            flex: 1;
            min-width: 300px; 
            margin-left: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .image_with_text_left__left img {
            max-width: 100%;
            height: auto;
            border-radius: 15px; 
            z-index: 2; 
            position: relative;
        }
        .image_with_text_left__shape-bg {
            position: absolute;
            background: linear-gradient(135deg, #ff8a00, #ffc87c);
            border-radius: 50%; 
            width: 450px; 
            height: 450px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.8;
            filter: blur(50px);
            z-index: 1; 
        }
        .image_with_text_left__right {
            flex: 1;
            min-width: 400px;
            text-align: left;
            padding-right: 30px;
        }
        .image_with_text_left__right h1 {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #333;
        }
        .image_with_text_left__right h1 strong {
            color: #ff8a00; 
        }
        .image_with_text_left__right p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 550px; 
        }
        .image_with_text_left__btn {
            background-color: #ff8a00;
            color: #fff;
            border: 2px solid transparent;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .image_with_text_left__btn:hover {
            background-color: #fff;
            color: #333;
            border: 2px solid #ff8a00;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 991px) {
            .image_with_text_left__content {
                flex-direction: column;
                text-align: center;
            }
            .image_with_text_left__left {
                margin-left: 0;
                margin-top: 50px;
                order: 2; /* Image niche show korbe */
            }
            .image_with_text_left__right {
                padding-right: 0;
                min-width: unset;
                text-align: center;
                order: 1; /* Text upore show korbe */
            }
            .image_with_text_left__right p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
        }
        @media (max-width: 767px) {
            .image_with_text_left {
                padding: 60px 0;
            }
            .image_with_text_left__right h1 {
                font-size: 2.5rem;
            }
            .image_with_text_left__shape-bg {
                width: 350px;
                height: 350px;
            }
            .image_with_text_left__left img {
                height: auto;
            }
        }
        @media (max-width: 576px) {
            .image_with_text_left__right h1 {
                font-size: 2rem;
            }
            .image_with_text_left__right p {
                font-size: 1rem;
            }
            .image_with_text_left__shape-bg {
                width: 280px;
                height: 280px;
                filter: blur(30px);
            }
        }
.course-card-img {
    height: 260px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}
.course-rounded-4 {
    border-radius: 1rem !important;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin: 0 10px;
    border: 2px solid #e9ecef;
    overflow: hidden;
    box-sizing: border-box;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-color: #0d6efd;
}
.card:hover .course-card-img {
    transform: scale(1.03);
}
.text-warning {
    color: #ffc107 !important;
}
.btn-outline-danger {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-width: 2px;
    transition: all 0.3s ease;
}
.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff !important;
    border-color: #dc3545;
}
.fw-bold {
    font-weight: 700 !important;
}
.course-card-title-fixed-height {
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    text-align:center;
}

.course-img-link,
.course-title-link {
    text-decoration: none;
    color: inherit;
}
.course-img-link:hover,
.course-title-link:hover {
    text-decoration: none;
    color: inherit;
}
.course-title-link:hover .course-card-title-fixed-height {
    color: #ffc107 !important;
}

.course-carousel-section .slick-slide {
    padding: 0 !important;
    opacity: 1 !important;
}

.course-carousel-section .slick-prev,
.course-carousel-section .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.course-carousel-section .slick-prev:hover,
.course-carousel-section .slick-next:hover {
    background-color: #0d6efd !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.course-carousel-section .slick-prev {
    left: -22px;
}
.course-carousel-section .slick-next {
    right: -22px;
}
.course-carousel-section .slick-prev::before,
.course-carousel-section .slick-next::before {
    display: none;
}
.course-carousel-section .slick-prev i,
.course-carousel-section .slick-next i {
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
}
.course-carousel-section .slick-prev:hover i,
.course-carousel-section .slick-next:hover i {
    color: #fff;
}
@media (max-width: 1200px) {
    .course-carousel-section .slick-prev,
    .course-carousel-section .slick-next {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .course-card-img {
        height: 230px;
    }
}
       .inst-registration-container .form-header h2 {
            color: #2c6e5f;
            font-weight: 700;
        }

        .inst-registration-container .form-header p {
            color: #11a280;
            font-weight: 500;
        }

        .inst-registration-container .card {
            border: none;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .inst-registration-container .card-header.custom-header {
            background-color: #eef8f5;
            color: #00796b;
            font-weight: 700;
            font-size: 1.15rem;
            text-align: center;
            border-bottom: 0;
            padding: 1rem 1.25rem;
            border-top-left-radius: 0.75rem;
            border-top-right-radius: 0.75rem;
        }

        .inst-registration-container .sub-header {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #495057;
            position: relative;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        .inst-registration-container .sub-header::before,
        .inst-registration-container .sub-header::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #dee2e6;
        }
        .inst-registration-container .sub-header::before {
            margin-right: 0.5em;
        }
        .inst-registration-container .sub-header::after {
            margin-left: 0.5em;
        }


        .inst-registration-container .form-label {
            font-weight: 500;
            color: #495057;
        }

        .inst-registration-container .form-control, 
        .inst-registration-container .form-select {
            border-radius: 0.5rem;
        }
        .inst-registration-container .form-control:focus, 
        .inst-registration-container .form-select:focus {
            border-color: #11a280;
            box-shadow: 0 0 0 0.25rem rgba(17, 162, 128, 0.25);
        }

        .inst-registration-container .btn-submit {
            background-color: #11a280;
            border-color: #11a280;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .inst-registration-container .btn-submit:hover {
            background-color: #00796b;
            border-color: #00796b;
            color: white;
        }

        .inst-registration-container .security-check-label {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .inst-registration-container .security-check-label code {
            font-size: 1.2rem;
            font-weight: 700;
            color: #d63384;
        }
      .inst-login-section {
            font-family: 'Kalpurush', sans-serif;  
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 10vh;
            min-height: 10vh; 
        }
        .inst-login-container .login-card {
            max-width: 450px;
            width: 100%;
            border: none;
            border-radius: 1.2rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            background-color: white;
        }
        .inst-login-container .login-card h2 {
            font-weight: 700;
            color: #007bff;
            margin-bottom: 0.5rem;
        }
        .inst-login-container .student-notice {
            color: #28a745; 
            font-weight: 500;
            margin-bottom: 1.5rem;
            border: 1px solid #28a745;
            padding: 0.5rem;
            border-radius: 0.5rem;
            background-color: #e6ffed;
        }
        .inst-login-container .login-card p {
            color: #6c757d;
            margin-bottom: 2rem;
        }
        .inst-login-container .google-btn {
            background-color: #4285F4;
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 0.6rem; 
            padding: 0.8rem; 
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            text-decoration: none;
        }
        .inst-login-container .google-btn:hover {
            background-color: #357ae8;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            color: white;
        }
        .inst-login-container .google-icon {
            margin-right: 10px;
            font-size: 1.1rem;
        }
        .inst-login-container .divider {
            margin: 1.5rem 0;
            position: relative;
            text-align: center;
        }
        .inst-login-container .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            border-top: 1px solid #dee2e6;
            z-index: 1;
        }
       .inst-login-container .divider span {
            background-color: white;
            padding: 0 15px;
            position: relative;
            z-index: 2;
            color: #6c757d;
        }
   .inst-faq-container * {
            box-sizing: border-box;font-family: 'Kalpurush', sans-serif;
        }
        .inst-faq-container .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(88, 101, 242, 0.25);
            border-color: #5865f2;
        }
        .inst-faq-container .accordion-button {
            background-color: #5865f2;
            color: white;
            font-weight: 600;
            border-radius: 8px !important;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        .inst-faq-container .accordion-button:not(.collapsed) {
            background-color: #4a56d1;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .inst-faq-container .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(88, 101, 242, 0.25);
        }
        .inst-faq-container .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: all 0.3s ease;
        }
        .inst-faq-container .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }
        .inst-faq-container .accordion-item {
            border: none;
            background-color: transparent;
        }
        .inst-faq-container .accordion-body {
            background-color: #f8f9fa;
            border-radius: 0 0 8px 8px;
            margin-top: -10px;
            padding: 1.5rem;
            border: 1px solid #dee2e6;
            border-top: none;
        }
        .inst-faq-container .contact-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        .inst-faq-container .btn-primary {
            background-color: #5865f2;
            border-color: #5865f2;
        }
        .inst-faq-container .btn-primary:hover {
            background-color: #4a56d1;
            border-color: #4a56d1;
        }
 .student-details-view .profile-card {box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);border-radius: 15px;overflow: hidden;margin-top: 30px;}
        .student-details-view .profile-img-container {background-color: #4f46e5;color: white;text-align: center;display: flex;flex-direction: column;align-items: center;padding: 50px 20px 30px 20px;}
        .student-details-view .profile-img-wrapper {position: relative;max-width: 300px;width: 100%;margin-bottom: 20px;border-radius: 10px;overflow: hidden;border: 6px solid rgba(255, 255, 255, 0.8);box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);}
        .student-details-view .profile-img {width: 100%;height: auto;display: block;object-fit: cover;transition: transform 0.3s ease;}
        .student-details-view .profile-img-overlay {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);opacity: 0;transition: opacity 0.5s ease;pointer-events: none;}
        .student-details-view .profile-img-wrapper:hover .profile-img-overlay {opacity: 1;}
        .student-details-view .student-name {color: white;font-weight: 700;transition: color 0.3s ease;cursor: pointer;}
        .student-details-view .student-name:hover {color: #ffc107;}
        .student-details-view .student-dept {color: #d1d5db;font-size: 1.1rem;transition: color 0.3s ease, text-shadow 0.3s ease;cursor: pointer;}
        .student-details-view .student-dept:hover {color: white;text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);}
        .student-details-view .side-info-card {background-color: rgba(255, 255, 255, 0.1);border-radius: 8px;padding: 10px;margin-bottom: 10px;width: 100%;text-align: center;position: relative;overflow: hidden;transition: background-color 0.3s ease;cursor: default;}
        .student-details-view .side-info-card:before {content: '';position: absolute;top: 0;left: -100%;width: 100%;height: 100%;background-color: rgba(255, 255, 255, 0.2);transition: left 0.4s ease;z-index: 0;}
        .student-details-view .side-info-card:hover:before {left: 0;}
        .student-details-view .side-info-card span {position: relative;z-index: 1;color: white;font-weight: 600;}
        .student-details-view .detail-item-card {background-color: #ffffff;border-left: 5px solid #0d6efd;margin-bottom: 15px;padding: 15px;border-radius: 8px;box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);position: relative;overflow: hidden;cursor: default;}
        .student-details-view .detail-item-card:before {content: '';position: absolute;top: 0;left: -100%;width: 100%;height: 100%;background-color: rgba(79, 70, 229, 0.1);transition: left 0.4s ease;z-index: 0;}
        .student-details-view .detail-item-card:hover:before {left: 0;}
        .student-details-view .detail-label, .detail-value {position: relative;z-index: 1;}
        .student-details-view .detail-label {font-weight: 700;color: #343a40;display: block;margin-bottom: 3px;font-size: 0.9rem;}
        .student-details-view .detail-value {font-size: 1rem;color: #495057;}
        .student-details-view .section-header {color: #4f46e5;border-bottom: 2px solid #e9ecef;padding-bottom: 10px;margin-bottom: 20px;font-weight: 600;}
        .student-details-view .progress-bar-lg {height: 25px;font-weight: bold;font-size: 0.9rem;}
        .student-details-view .social-share-icon {display: inline-flex;width: 45px;height: 45px;background-color: #495057;border-radius: 50%;color: white;justify-content: center;align-items: center;font-size: 1.2rem;margin: 0 5px;transition: all 0.3s ease;box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);text-decoration: none;}
        .student-details-view .social-share-icon:hover {background-color: #4f46e5;color: white;transform: translateY(-3px);box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);text-decoration: none;}
        @media (max-width: 768px) {.student-details-view .profile-img-container {border-radius: 15px 15px 0 0 !important;padding-top: 30px;}} 
 #noticeList{font-family:'Kalpurush',sans-serif;background-color:#ffffff}.inst-notice-container .notice-header h1{font-weight:700;color:#172b4d;margin-bottom:.5rem}.inst-notice-container .notice-header p{color:#6c757d}.inst-notice-container .notice-card{background-color:white;border:1px solid #dee2e6;/* Default Border */border-radius:1rem;box-shadow:0 4px 12px rgba(0,0,0,.05);margin-bottom:1.5rem;transition:all .3s ease;cursor:pointer;text-decoration:none;color:inherit}.inst-notice-container .notice-card:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(0,0,0,.1);border-color:#007bff !important;/* Hover Border Color */}.inst-notice-container .notice-title{font-size:1.4rem;font-weight:700;transition:color .3s;margin-top:.25rem}.inst-notice-container .notice-date{font-size:.9rem;color:#6c757d;font-weight:500;display:flex;align-items:center;margin-bottom:.25rem !important}.inst-notice-container .notice-date i{margin-right:5px;color:#007bff}.inst-notice-container .notice-card:hover .notice-title{color:#007bff !important;/* Title Hover Color */}.inst-notice-container .title-primary{color:#007bff}.inst-notice-container .title-danger{color:#dc3545}.inst-notice-container .title-warning{color:#ffc107}.inst-notice-container .title-success{color:#28a745}   
 .inst-course-container *{box-sizing:border-box}.inst-course-container .main-course-card{border:1px solid #e9ecef;border-radius:.75rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.05);margin-bottom:1.5rem;background-color:#fff;padding:10px}.inst-course-container .course-info-wrapper{padding-top:10px;padding-bottom:5px}.inst-course-container .course-title{color:#343a40;font-weight:700;font-size:1.5rem;line-height:1.2;margin-top:0}.inst-course-container .course-short-desc{color:#6c757d;font-size:.95rem;margin-bottom:0}.inst-course-container .course-stats-card{text-align:center;padding:15px 0;background-color:white;border-radius:.5rem;transition:transform .3s,border-color .3s,box-shadow .3s;border:1px solid #e9ecef;height:100%;cursor:pointer}.inst-course-container .course-stats-card:hover{transform:translateY(-5px);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border:2px solid #007bff}.inst-course-container .course-stats-card:hover .stats-icon{color:#dc3545!important}.inst-course-container .course-stats-card:hover .stats-value{color:#dc3545!important}.inst-course-container .course-stats-card:hover .stats-label{color:#343a40!important}.inst-course-container .stats-icon{color:#007bff;font-size:1.5rem;margin-bottom:5px;transition:color .3s}.inst-course-container .stats-value{font-size:1.3rem;font-weight:700;color:#343a40;transition:color .3s}.inst-course-container .stats-label{font-size:.85rem;color:#6c757d;transition:color .3s}.inst-course-container .course-main-img{width:100%;height:auto;object-fit:cover;border-radius:.5rem;box-shadow:0 .25rem .5rem rgba(0,0,0,.1)}@media(min-width:992px){.inst-course-container .course-main-img{height:500px}}.inst-course-container .section-heading{color:#343a40;font-weight:700;margin-bottom:1.5rem;padding-bottom:.5rem;border-bottom:2px solid #007bff}.inst-course-container .topics-list-group{margin-bottom:2rem;background:linear-gradient(145deg, #ffffff, #f1f7fe);border-radius:.75rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.05);padding:1.5rem}.inst-course-container .topic-item{display:flex;align-items:center;padding:10px 0;border-bottom:1px solid #e9ecef;transition:background-color .3s}.inst-course-container .topic-item:last-child{border-bottom:none}.inst-course-container .topic-item:hover{background-color:#e9f2ff;border-radius:5px;padding-left:10px}.inst-course-container .topic-number{font-size:1.2rem;font-weight:700;color:#007bff;min-width:35px;text-align:center}.inst-course-container .topic-text{font-size:.95rem;color:#343a40;padding-left:10px}.inst-course-container .contact-card{transition:box-shadow .3s,border-color .3s}.inst-course-container .contact-card:hover{box-shadow:0 .25rem .75rem rgba(0,0,0,.1);border-color:#007bff}.inst-course-container .contact-info a{color:#343a40;text-decoration:none;transition:color .3s}.inst-course-container .contact-info a:hover{color:#007bff}.inst-course-container .more-courses-header{font-size:1.5rem;font-weight:600;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid #007bff}.inst-course-container .more-courses-item{display:flex;align-items:center;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #e9ecef}.inst-course-container .more-courses-link{font-size:.9rem;font-weight:500;color:#343a40;text-decoration:none;transition:color .3s}.inst-course-container .more-courses-link:hover{color:#007bff}.inst-course-container .btn-enroll{background:linear-gradient(45deg,#007bff,#0056b3);border:none;font-size:1.2rem;padding:10px 20px;box-shadow:0 4px 6px rgba(0,123,255,.4)}.inst-course-container .btn-enroll:hover{background:linear-gradient(45deg,#0056b3,#003d80)}.inst-course-container .description-box{background-color:white;border:1px solid #e9ecef;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,.05);margin-bottom:2rem}.inst-course-container .sidebar-wrapper{position:sticky;top:20px}.inst-course-container .price-display-card{background-color:white;border-radius:.75rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.05);padding:1.5rem;margin-bottom:1.5rem}.inst-course-container .price-card-value{font-size:1.8rem;font-weight:700;color:#28a745}.inst-course-container .price-card-label{font-size:.9rem;color:#6c757d}.inst-course-container .more-courses-img{width:60px;height:40px;object-fit:cover;border-radius:5px;margin-right:15px;transition:transform .3s,border-color .3s;border:1px solid #dee2e6}.inst-course-container .more-courses-item:hover .more-courses-img{transform:scale(1.05);border-color:#007bff}.inst-course-container .more-courses-item:hover .more-courses-link{color:#007bff} .inst-course-container .contact-link-btn{display:flex;align-items:center;justify-content:center;padding:10px;margin-bottom:10px;border-radius:.5rem;font-weight:600;text-decoration:none;transition:all .3s ease;box-shadow:0 2px 4px rgba(0,0,0,.1)}.inst-course-container .contact-link-btn i{margin-right:10px}.inst-course-container .contact-link-btn.phone{background-color:#007bff;color:white}.inst-course-container .contact-link-btn.phone:hover{background-color:#0056b3;box-shadow:0 4px 8px rgba(0,123,255,.4)}.inst-course-container .contact-link-btn.email{background-color:#28a745;color:white}.inst-course-container .contact-link-btn.email:hover{background-color:#1e7e34;box-shadow:0 4px 8px rgba(40,167,69,.4)}@media(max-width:992px){.inst-course-container .sidebar-wrapper{position:static;top:auto}}
 .inst-blog-container *{box-sizing:border-box}.inst-blog-container .card{border:none;border-radius:.75rem;box-shadow:0 .5rem 1rem rgba(0,0,0,.05);padding:1rem}.inst-blog-container .blog-title{color:#343a40;font-weight:700;font-size:2rem}.inst-blog-container .meta-info{color:#6c757d;font-size:.9rem}.inst-blog-container .category-title{color:#343a40;font-weight:600}.inst-blog-container .list-group-item{border:none;padding:.75rem 1rem;border-radius:.5rem;margin-bottom:.5rem;transition:background-color .3s}.inst-blog-container .list-group-item:hover{background-color:#e9ecef}.inst-blog-container .list-group-item-action{display:flex;justify-content:space-between;align-items:center}.inst-blog-container .list-group-item .badge{background-color:#5865f2}.inst-blog-container .more-blog-item{display:flex;align-items:center;margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #e9ecef}.inst-blog-container .more-blog-img{width:80px;height:60px;object-fit:cover;border-radius:10px;margin-right:15px;transition:box-shadow .3s}.inst-blog-container .more-blog-img:hover{box-shadow:0 4px 8px rgba(0,0,0,.1)}.inst-blog-container .more-blog-link{font-size:.9rem;font-weight:500;color:#343a40;text-decoration:none;transition:color .3s}.inst-blog-container .more-blog-link:hover{color:#007bff}.inst-blog-container .more-blog-header{font-size:1.5rem;font-weight:600;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid #007bff}.inst-blog-container .article-description{line-height:1.8;color:#212529}.inst-blog-container .article-description h1,.inst-blog-container .article-description h2,.inst-blog-container .article-description h3,.inst-blog-container .article-description h4{margin-top:2rem;margin-bottom:1rem;font-weight:700;color:#343a40}.inst-blog-container .article-description h1{font-size:2rem;color:#007bff}.inst-blog-container .article-description h2{font-size:1.75rem}.inst-blog-container .article-description h3{font-size:1.5rem}.inst-blog-container .article-description h4{font-size:1.25rem}.inst-blog-container .article-description p{margin-bottom:1rem}.inst-blog-container .article-description img{max-width:100%;height:auto;border-radius:.5rem;margin:1.5rem 0}.inst-blog-container .article-description ul,.inst-blog-container .article-description ol{margin-left:1.5rem;margin-bottom:1rem}.inst-blog-container .article-description li{margin-bottom:.5rem}.inst-blog-container .article-description table{width:100%;margin-bottom:1.5rem;border-collapse:collapse}.inst-blog-container .article-description th,.inst-blog-container .article-description td{padding:8px;border:1px solid #dee2e6}.inst-blog-container .article-description th{background-color:#f8f9fa;text-align:left}.social-share-box{display:flex;justify-content:center;gap:15px;padding:20px 0;margin:20px 0}.social-share-box a{width:50px;height:50px;display:flex;justify-content:center;align-items:center;border-radius:50%;text-decoration:none;color:#fff;transition:transform .2s;font-size:1.2rem}.social-share-box a:hover{transform:scale(1.1)}.social-share-box .facebook{background-color:#3b5998}.social-share-box .twitter{background-color:#1da1f2}.social-share-box .linkedin{background-color:#0077b5}.social-share-box .whatsapp{background-color:#25d366}@media(max-width:768px){.inst-blog-container .blog-title{font-size:1.75rem}}
 .inst-contact-container * {
            box-sizing: border-box;
        }
        .inst-contact-container .contact-header h1 {
            color: #172b4d;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .inst-contact-container .contact-header p {
            color: #6c757d;
        }
        .inst-contact-container .card {
            border: none;
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .inst-contact-container .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        .inst-contact-container .map-container {
            height: 300px;
            background-color: #e9ecef;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .inst-contact-container .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        .inst-contact-container .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            color: #495057;
        }
        .inst-contact-container .info-icon {
            font-size: 1.5rem;
            color: #007bff;
            margin-right: 1rem;
            width: 30px;
            text-align: center;
        }
        .inst-contact-container .info-text h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #343a40;
            margin-bottom: 0;
        }
        .inst-contact-container .info-text a {
            text-decoration: none;
            color: #495057;
            transition: color 0.2s;
        }
        .inst-contact-container .info-text a:hover {
            color: #007bff;
        }
        .inst-contact-container .social-icons a {
            font-size: 1.5rem;
            margin: 0 10px;
            color: #6c757d;
            transition: color 0.3s;
        }
        .inst-contact-container .social-icons a:hover {
            color: #007bff;
        }
        .inst-contact-container .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
            font-weight: 600;
        }
        .inst-contact-container .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }

.inst-link-container{font-family:'Kalpurush',sans-serif;background-color:#ffffff}.inst-link-container *{box-sizing:border-box}.inst-link-container .link-header h1{font-weight:700;color:#007bff;margin-bottom:.5rem}.inst-link-container .link-header p{color:#6c757d}.inst-link-container .link-card{border:1px solid #dee2e6;border-radius:1rem;box-shadow:0 4px 12px rgba(0,0,0,.05);padding:1.5rem;text-decoration:none;display:block;height:100%;transition:all .3s ease}.inst-link-container .link-card:hover{transform:translateY(-5px);box-shadow:0 8px 20px rgba(0,0,0,.15);border-color:#007bff}.inst-link-container .link-card:hover .link-title{color:#007bff}.inst-link-container .link-img{width:60px;height:60px;border-radius:8px;object-fit:cover;border:2px solid #ddd;transition:border-color .3s}.inst-link-container .link-card:hover .link-img{border-color:#007bff}.inst-link-container .link-title{font-size:1.1rem;font-weight:600;color:#343a40;margin-top:.75rem;transition:color .3s}.inst-link-container .link-desc{font-size:.9rem;color:#6c757d;margin-top:.25rem}
   .gallery-title {
            color: #343a40;
        } 
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
            height: 250px;  
            background-color: #f1f1f1;  
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.3s ease-in-out;
        }
        
        .gallery-card {
            display: block; 
            text-decoration: none; 
            border-radius: 0.5rem;
            overflow: hidden;
            transition: box-shadow 0.3s ease-in-out;
            background-color: #f8f9fa; 
        }
        .gallery-card:hover {
             box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important; 
        }
        .gallery-card:hover .gallery-item img {
            transform: scale(1.05); 
        }

        .gallery-caption {
            padding: 0.75rem;
        }
        .gallery-caption p {
            color: #495057;
            font-weight: 500;
            margin-bottom: 0;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem; 
            color: white;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        .gallery-card:hover .play-icon {
            opacity: 1;
        }
        
        .lg-backdrop {
            background-color: rgba(0, 0, 0, 0.8);
        }
 .price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}
.original-price {
    font-size: 1.125rem; 
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 1.75rem; 
    font-weight: 700;
    color: #2c5282; 
}
 .course-title {
    font-size: 1.25rem;  
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 16px;
}
 .savings-text {
    font-size: 0.875rem;  
    font-weight: 700;
    margin: 0;
}
.savings-mony {
    font-size: 1.205rem; 
    color: #4CAF50; 
    font-weight: 1000; 
}