        /* CSS Variables for Theme Colors */
        :root {
            --theme-blue: #0072BC;
            --theme-orange: #ff8f00;
            --header-dark: #002147;
            --btn-hover-blue: #005a9c;
            --btn-hover-orange: #e67e00;
        }

        /* General & Navbar CSS (Skipped for brevity) */
        .top-header a { transition: color 0.3s; }
        .top-header a:hover { color: var(--theme-orange) !important; }
        .navbar-nav .nav-link { color: #212529; transition: color 0.3s; }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--theme-orange) !important; }
        .navbar-nav .nav-link i { color: var(--theme-blue); transition: color 0.3s; }
        .navbar-nav .nav-link:hover i { color: var(--theme-orange); }
        
        /* Theme Utility Classes */
        .theme-blue { color: var(--theme-blue) !important; } 
        .border-theme-blue { border-color: var(--theme-blue) !important; }
        .theme-orange { color: var(--theme-orange) !important; }
        .border-theme-orange { border-color: var(--theme-orange) !important; }
        
        /* Buttons */
        .btn-custom { background-color: var(--theme-orange); border-color: var(--theme-orange); color: white; transition: all 0.3s; }
        .btn-custom:hover { background-color: var(--btn-hover-orange); border-color: var(--btn-hover-orange); color: white; }
        .btn-custom-blue { background-color: var(--theme-blue); border-color: var(--theme-blue); color: white; transition: all 0.3s; font-weight: 600; }
        .btn-custom-blue:hover { background-color: var(--btn-hover-blue); border-color: var(--btn-hover-blue); color: white; }
        .card:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.1); transform: translateY(-2px); transition: all 0.3s ease-in-out; }

        /* Carousel Specific Styles */
		.carousel-caption { 
            position: absolute; bottom: -10%; transform: translateY(-50%); 
            left: 0; right: 0; 
            padding: 30px 50px; 
            text-align: center; z-index: 10;
            
            /* KEY FIX: Black Background with 60% Opacity */
            background-color: rgba(0, 0, 0, 0.6); 
            max-width: 70%; 
            margin: auto; 
            border-radius: 10px;
        }
        .carousel-item { height: 500px; background-color: var(--header-dark); color: white; position: relative; overflow: hidden; }
        .carousel-control-prev, .carousel-control-next { z-index: 20; }
        .animated-icons i { pointer-events: none; z-index: 5; } /* Final Fix */

        /* What We Offer Card Styles (Skipped for brevity) */
        .offer-card { transition: all 0.3s; cursor: pointer; overflow: hidden; border-radius: 8px !important; }
        
        /* --- REFINED COURSE CARD SLIDER CSS (Section 5) --- */
		
        .course-scroll-container { 
            padding-bottom: 20px; 
            position: relative; 
            padding-left: 50px; 
            padding-right: 50px; 
            overflow: visible; 
        }
        .course-slider-wrapper {
            display: flex; gap: 30px; 
            overflow-x: scroll; /* KEY FIX: This container allows native scroll */
            scroll-behavior: smooth; 
            -webkit-overflow-scrolling: touch; 
            padding:25px 30px;
            position: relative;
        }
        .course-slider-wrapper::-webkit-scrollbar { display: none; }
        .course-slider-wrapper { -ms-overflow-style: none; scrollbar-width: none; }
        
        .course-card-premium {
            flex-shrink: 0; width: 300px; min-width: 300px; background-color: #FFF; border-radius: 25px; 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease-in-out; 
            z-index: 10;
        }
        .course-card-premium:hover { 
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); 
            transform: translateY(-5px); 
            z-index: 15;
        }
        .card-top-content {
            display: flex; flex-direction: column; align-items: center; padding: 25px 0 35px 0;
            position: relative; row-gap: 5px; 
            background-color: var(--theme-blue); /* Default: Blue Top */
            border-radius: 25px 25px 0 25px; color: white;
            transition: all 0.3s ease-in-out; 
        }
        .card-top-content::before { 
            content: ''; position: absolute; right: 0; bottom: -40px; height: 40px; width: 40px; background-color: var(--theme-blue); 
        }
        .card-top-content::after { 
            content: ''; position: absolute; right: 0; bottom: -40px; border-radius: 0 25px 0 0; background-color: #FFF; height: 40px; width: 40px; 
        }
        /* --- ICON STYLING (CLEANED) --- */
        .card-icon-circle { 
            position: relative; height: 120px; width: 120px; border-radius: 50%; padding: 3px; box-shadow: 0 0 5px rgba(0,0,0,0.2); z-index: 20; 
            display: flex; align-items: center; justify-content: center;
        }
        .card-icon-circle i {
            font-size: 3rem; /* Icon Color: Blue */
        }
        /* --- TECHNICAL SECTION OVERRIDE --- */
        #technicalCourseSliderWrapper .card-top-content { background-color: var(--theme-orange); }
        #technicalCourseSliderWrapper .card-top-content::before { background-color: var(--theme-orange); }
        #technicalCourseSliderWrapper .card-icon-circle { } /* Swap colors for contrast */
        #technicalCourseSliderWrapper .card-icon-circle i {  } /* Icon Color: Orange */


        .card-top-content h6 { color: white; font-size: 1.1rem; font-weight: 600; margin-top: 5px; text-shadow: 1px 1px 2px rgba(0,0,0,0.4); }
        .course-card-footer { padding: 25px 35px; text-align: center; }
        
        /* Navigation Button Styles */
        .course-nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%); background-color: white;
            border: 1px solid #ddd; border-radius: 50%; width: 45px; height: 45px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); color: var(--theme-blue); font-size: 1.5rem;
            z-index: 30; cursor: pointer; transition: all 0.3s;
        }
        .course-nav-btn:hover { background-color: var(--theme-blue); color: white; border-color: var(--theme-blue); }
        .course-nav-btn.prev { left: 5px; }
        .course-nav-btn.next { right: 5px; }
		
		/* --- Floating Icons CSS Logic (Base for JS Movement) --- */

.carousel-item {
    position: relative; 
}
.animated-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    pointer-events: none; 
    z-index: 2; 
}
.animated-icons i {
    /* Set base style, transition is key for smooth JS movement */
    position: absolute;
    font-size: 35px;
    opacity: 1; /* <-- Change: Default opacity to 1 (fully visible) */
    transition: all 8s ease-in-out; /* Smooth position/scale/rotation transition handled by JS loop */
    visibility: hidden; /* <-- New: Icons are hidden by default */
}

/* --- Base Positioning for ALL 6 SLIDES --- */

/* Slide 1 Icons (Computer Franchise - All White) */
#slide-1-icons i:nth-child(1) { top: 10%; left: 15%; font-size: 40px; color: rgba(255, 255, 255, 0.9); } /* Opacity increased */
#slide-1-icons i:nth-child(2) { top: 35%; left: 80%; font-size: 50px; color: rgba(255, 255, 255, 0.9); }
#slide-1-icons i:nth-child(3) { top: 60%; left: 45%; font-size: 35px; color: rgba(255, 255, 255, 0.8); }
#slide-1-icons i:nth-child(4) { top: 85%; left: 20%; font-size: 60px; color: rgba(255, 255, 255, 0.9); }
#slide-1-icons i:nth-child(5) { top: 10%; left: 70%; font-size: 45px; color: rgba(255, 255, 255, 0.8); }
#slide-1-icons i:nth-child(6) { top: 75%; left: 90%; font-size: 40px; color: rgba(255, 255, 255, 0.9); }

/* Slide 2 Icons (Computer Courses - Blue/White) */
#slide-2-icons i:nth-child(1) { top: 5%; left: 5%; font-size: 38px; color: rgba(0, 123, 255, 0.9); }
#slide-2-icons i:nth-child(2) { top: 45%; left: 25%; font-size: 55px; color: rgba(255, 255, 255, 0.8); } /* White */
#slide-2-icons i:nth-child(3) { top: 20%; left: 70%; font-size: 42px; color: rgba(0, 123, 255, 0.9); }
#slide-2-icons i:nth-child(4) { top: 70%; left: 5%; font-size: 65px; color: rgba(255, 255, 255, 0.9); } /* White */
#slide-2-icons i:nth-child(5) { top: 75%; left: 85%; font-size: 48px; color: rgba(0, 123, 255, 0.9); }
#slide-2-icons i:nth-child(6) { top: 90%; left: 40%; font-size: 30px; color: rgba(255, 255, 255, 0.8); } /* White */

/* Slide 3 Icons (ITI & Technical Course Apps - Orange/White) */
#slide-3-icons i:nth-child(1) { top: 30%; left: 10%; font-size: 50px; color: rgba(255, 165, 0, 0.9); } /* Orange */
#slide-3-icons i:nth-child(2) { top: 15%; left: 50%; font-size: 40px; color: rgba(255, 255, 255, 0.8); } /* White */
#slide-3-icons i:nth-child(3) { top: 65%; left: 85%; font-size: 55px; color: rgba(255, 165, 0, 0.9); } /* Orange */
#slide-3-icons i:nth-child(4) { top: 50%; left: 35%; font-size: 35px; color: rgba(255, 255, 255, 0.8); } /* White */
#slide-3-icons i:nth-child(5) { top: 5%; left: 80%; font-size: 45px; color: rgba(255, 165, 0, 0.9); } /* Orange */
#slide-3-icons i:nth-child(6) { top: 80%; left: 60%; font-size: 60px; color: rgba(255, 255, 255, 0.8); } /* White */

/* Slide 4 Icons (Competitive Exam Preparation - All White) */
#slide-4-icons i:nth-child(1) { top: 10%; left: 85%; font-size: 48px; color: rgba(255, 255, 255, 0.9); }
#slide-4-icons i:nth-child(2) { top: 55%; left: 15%; font-size: 38px; color: rgba(255, 255, 255, 0.8); }
#slide-4-icons i:nth-child(3) { top: 30%; left: 40%; font-size: 60px; color: rgba(255, 255, 255, 0.9); }
#slide-4-icons i:nth-child(4) { top: 75%; left: 65%; font-size: 45px; color: rgba(255, 255, 255, 0.8); }
#slide-4-icons i:nth-child(5) { top: 5%; left: 20%; font-size: 52px; color: rgba(255, 255, 255, 0.9); }
#slide-4-icons i:nth-child(6) { top: 80%; left: 90%; font-size: 35px; color: rgba(255, 255, 255, 0.8); }

/* Slide 5 Icons (School ERP System - Purple/White) */
#slide-5-icons i:nth-child(1) { top: 25%; left: 5%; font-size: 55px; color: rgba(128, 0, 128, 0.9); } /* Purple */
#slide-5-icons i:nth-child(2) { top: 50%; left: 75%; font-size: 40px; color: rgba(255, 255, 255, 0.8); } /* White */
#slide-5-icons i:nth-child(3) { top: 75%; left: 30%; font-size: 48px; color: rgba(128, 0, 128, 0.9); } /* Purple */
#slide-5-icons i:nth-child(4) { top: 15%; left: 55%; font-size: 60px; color: rgba(255, 255, 255, 0.9); } /* White */
#slide-5-icons i:nth-child(5) { top: 40%; left: 10%; font-size: 35px; color: rgba(128, 0, 128, 0.8); } /* Purple */
#slide-5-icons i:nth-child(6) { top: 90%; left: 90%; font-size: 50px; color: rgba(255, 255, 255, 0.8); } /* White */

/* Slide 6 Icons (Library App - Green/White) */
#slide-6-icons i:nth-child(1) { top: 10%; left: 50%; font-size: 42px; color: rgba(0, 128, 0, 0.9); } /* Green */
#slide-6-icons i:nth-child(2) { top: 40%; left: 5%; font-size: 58px; color: rgba(255, 255, 255, 0.9); } /* White */
#slide-6-icons i:nth-child(3) { top: 70%; left: 75%; font-size: 35px; color: rgba(0, 128, 0, 0.8); } /* Green */
#slide-6-icons i:nth-child(4) { top: 25%; left: 90%; font-size: 50px; color: rgba(255, 255, 255, 0.9); } /* White */
#slide-6-icons i:nth-child(5) { top: 85%; left: 20%; font-size: 45px; color: rgba(0, 128, 0, 0.9); } /* Green */
#slide-6-icons i:nth-child(6) { top: 55%; left: 35%; font-size: 65px; color: rgba(255, 255, 255, 0.8); } /* White */

/* --- What We Offer Card Styles (FADED IMAGE FIX, TINT, TEXT FIX) --- */
        .offer-card { transition: all 0.3s; cursor: pointer; overflow: hidden; border-radius: 8px !important; position: relative; }
        .offer-card:hover { transform: scale(1.03); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }
        .offer-card .card-body { 
            min-height: 200px; 
            /* Tint Increased for better text visibility */
            background-color: rgba(0, 0, 0, 0.7) !important; 
            transition: background-color 0.3s;
            position: absolute; 
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex; 
            justify-content: center; /* Center horizontally */
            align-items: center; /* Center vertically */
            text-align: center; /* Ensure text itself is centered */
            padding: 20px; /* Add some padding */
        }
        .offer-card:hover .card-body { 
            background-color: rgba(0, 0, 0, 0.4) !important; /* Orange hover, slightly darker */
        } 
        .offer-card h5 { 
            margin-bottom: 0; font-size: 1.3rem; font-weight: bold; 
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text Shadow for Readability */
        }

.blob-one {
    width: 250px;
    height: 225px;
    background-color: #E5F8FF; /* Light Salmon */
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
    /* The first set of percentages controls horizontal radii (top-left, top-right, bottom-right, bottom-left)
       The second set controls vertical radii (top-left, top-right, bottom-right, bottom-left) */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    margin: 4px;
}
.blob-two {
    width: 235px;
    height: 225px;
    background-color: #E5F8FF; /* Sky Blue */
    border-radius: 70% 30% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    margin: 4px;
}
.blob-three {
    width: 225px;
    height: 225px; 
    background-color: #E5F8FF; /* Light Green */
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    margin: 4px;
}		
	       
        .iti-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            padding: 4rem 2rem;
            color: white;
            text-align: center;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .iti-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
            border-radius: 20px;
        }
        
        .iti-section > * {
            position: relative;
            z-index: 2;
        }
        
        .iti-section > .theme-orange {
            color: #FFD166;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .iti-section > .btn-custom {
            background: linear-gradient(45deg, #FF6B35, #FF8E53);
            border: none;
            color: white;
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
        }
        
        .iti-section > .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
            background: linear-gradient(45deg, #FF8E53, #FF6B35);
        }
        
        .iti-section > .btn-outline-success {
            border-width: 2px;
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .iti-section > .btn-outline-success:hover {
            background-color: #4CAF50;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
        }
        
        /* Floating Icons */
        .floating-icon {
            position: absolute;
            font-size: 2.5rem;
            opacity: 0.7;
            z-index: 1;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .gear-1 {
            top: 15%;
            left: 10%;
            animation: rotate 20s linear infinite;
        }
        
        .gear-2 {
            bottom: 20%;
            right: 8%;
            animation: rotate 25s linear infinite reverse;
        }
        
        .hammer {
            top: 25%;
            right: 15%;
            animation: hammerStrike 4s ease-in-out infinite;
        }
        
        .wrench {
            bottom: 15%;
            left: 15%;
            animation: wrenchTurn 6s ease-in-out infinite;
        }
        
        .ruler {
            top: 10%;
            right: 25%;
            animation: float 8s ease-in-out infinite;
        }
        
        .bolt {
            bottom: 25%;
            left: 25%;
            animation: zoom 5s ease-in-out infinite;
        }
        
        .screwdriver {
            top: 40%;
            left: 5%;
            animation: screw 7s ease-in-out infinite;
        }
        
        .pliers {
            bottom: 10%;
            right: 20%;
            animation: pliers 5s ease-in-out infinite;
        }
        
        /* Animations */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes hammerStrike {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-30deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(30deg); }
        }
        
        @keyframes wrenchTurn {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(90deg); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes zoom {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }
        
        @keyframes screw {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }
        
        @keyframes pliers {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.1) rotate(5deg); }
            50% { transform: scale(1) rotate(0deg); }
            75% { transform: scale(1.1) rotate(-5deg); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-icon {
                font-size: 1.8rem;
            }
            
            .iti-section {
                padding: 3rem 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .floating-icon {
                font-size: 1.5rem;
            }
            
            .iti-section {
                padding: 2.5rem 1rem;
            }
            var(--theme-blue)
            .btn-lg {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
		
	footer .social-icons a:hover {
            color:  !important;
            border-color: var(--theme-blue) !important;
            background-color: #fff !important;
        }
		


.fixed-quick-menu {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    padding: 10px 0;
}

.fixed-quick-menu > div {
    margin-bottom: 10px;
    width: fit-content;
    margin-left: auto;
}

.quick-action-item {
    display: flex;
    align-items: center;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
    width: 60px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#SV .quick-action-item {
    background-color: #198754;
}

#FF .quick-action-item {
    background-color: var(--theme-blue);
}

#GC .quick-action-item {
    background-color: var(--theme-orange);
}

.quick-action-item .icon {
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.quick-action-item .text {
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

/* Individual hover effects */
#SV:hover .quick-action-item {
    width: 220px;
}

#FF:hover .quick-action-item {
    width: 220px;
}

#GC:hover .quick-action-item {
    width: 250px;
}

#SV:hover .quick-action-item .text,
#FF:hover .quick-action-item .text,
#GC:hover .quick-action-item .text {
    opacity: 1;
}