 .carousel-container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Wrapper */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        /* Track */
        .carousel-inner {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        /* Slide */
        .carousel-item {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            box-sizing: border-box;
        }

        /* Image – PERFECT FIT */
        .carousel-item img {
            width: 100%;
            height: auto;
            max-height: 520px;      /* Desktop perfect size */
            object-fit: contain;   /* Prevent cropping */
            display: block;
            margin: 0 auto;
        }

        /* Navigation */
        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 10px 0;
            padding: 0 16px;
        }

        .nav-arrow {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            /* background: #e5e7eb; */
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #111827;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background: #111827;
            color: white;
            transform: scale(1.05);
        }

        .dots-container {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex: 1;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #111827;
            width: 28px;
            border-radius: 6px;
        }

        /* ===================== */
        /* RESPONSIVE */
        /* ===================== */

        @media (max-width: 768px) {
            .carousel-item img {
                max-height: 300px;  /* Mobile perfect fit */
            }

            .nav-arrow {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .dot.active {
                width: 22px;
            }
        }

        @media (max-width: 480px) {
            .carousel-item img {
                max-height: 240px;  /* Small devices */
            }

            .carousel-nav {
                padding: 0 10px;
            }
        }


     
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto;
        }

        .carousel-wrapper {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 40px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            gap: 20px;
            padding: 20px;
        }

        .category-card {
            flex: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
        }

        .category-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .category-content {
            padding: 20px;
        }

        .category-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 10px;
        }

        .category-description {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
        }

        .category-btn {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .category-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #e2e8f0;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #1e3a8a;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #1e3a8a;
            color: white;
            border-color: #1e3a8a;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #1e3a8a;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .carousel-slide {
                gap: 15px;
                padding: 15px;
            }

            .category-card {
                min-width: calc(50% - 7.5px);
            }

            .carousel-slide {
                flex-wrap: wrap;
            }
        }
    
      

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 32px;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 16px;
            color: #666;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
        }

        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        .category-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            border-color: rgba(76, 175, 80, 0.2);
        }

        .card-header {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 12px;
        }

        .icon-container {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: #f5f5f5;
            flex-shrink: 0;
            overflow: hidden;
        }
        .icon-container {
            overflow: hidden;
        }

        .icon-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .arrow-icon {
            color: #260ac9;
            font-size: 20px;
            transition: all 0.3s ease;
            position: absolute;
            right: 12px;
            top: 12px;
        }

        .category-card:hover .arrow-icon {
            transform: translate(4px, -4px);
            color: #260bc0;
        }

        .category-name {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-align: center;
            margin-top: 8px;
        }

        .tuition-count {
            font-size: 14px;
            color: #320fce;
            font-weight: 600;
            text-align: center;
        }

        /* Custom icon colors */
        .icon-1 { color: #6b5fc7; }
        .icon-2 { color: #ef5350; }
        .icon-3 { color: #66bb6a; }
        .icon-4 { color: #26c6da; }
        .icon-5 { color: #ef5350; }
        .icon-6 { color: #6b5fc7; }
        .icon-7 { color: #66bb6a; }
        .icon-8 { color: #ab47bc; }
        .icon-9 { color: #66bb6a; }
        .icon-10 { color: #29b6f6; }
        .icon-11 { color: #ab47bc; }
        .icon-12 { color: #ffa726; }

