        :root {
            --primary: #1E3A8A;
            --secondary: #0F172A;
            --accent: #3B82F6;
            --light: #DBEAFE;
            --white: #FFFFFF;
            --text: #1E293B;
            --gold: #F59E0B;
            --success: #10B981;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary);
            color: var(--white);
            padding: 0.7rem 5%;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .top-bar-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .top-bar-links a {
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.3s;
            font-weight: 500;
        }

        .top-bar-links a:hover {
            opacity: 0.8;
        }

        /* Main Navigation */
        header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 2.5rem;
            margin-right: 0.5rem;
        }

        .logo-text {
            font-family: 'Lora', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: color 0.3s;
        }

        .nav-menu > li > a:hover {
            color: var(--primary);
        }

        .dropdown-icon {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .nav-menu > li:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 0.5rem 0;
            margin-top: 1rem;
        }

        .nav-menu > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .dropdown a:hover {
            background: var(--light);
            color: var(--primary);
            padding-left: 2rem;
        }

        /* Sub-dropdown (third level) */
        .dropdown-item {
            position: relative;
        }

        .sub-dropdown {
            position: absolute;
            left: 100%;
            top: 0;
            background: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            border-radius: 8px;
            padding: 0.5rem 0;
        }

        .dropdown-item:hover .sub-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .dropdown-item > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-item > a::after {
            content: '▶';
            font-size: 0.6rem;
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }

        .dropdown-item:hover > a::after {
            transform: translateX(3px);
        }

        .sub-dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .sub-dropdown a:hover {
            background: var(--light);
            color: var(--primary);
            padding-left: 2rem;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 12px;
            background: transparent;
            border: none;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .hero-content .subtitle {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .hero-content .description {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        .hero-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-placeholder {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border: 2px solid rgba(255,255,255,0.3);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }

        /* Approach Section */
        .approach-section {
            background: var(--white);
            padding: 5rem 5%;
        }

        .approach-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .approach-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .advisor-showcase {
            position: relative;
        }

        .advisor-image-frame {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .advisor-display {
            background: linear-gradient(135deg, #1e3a8a, var(--accent));
            border-radius: 20px;
            aspect-ratio: 3/4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .approach-intro {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 2.5rem;
        }

        .results-list {
            margin-bottom: 2.5rem;
        }

        .result-item {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .result-label {
            color: var(--text);
            font-weight: 500;
        }

        .result-value {
            color: var(--accent);
            font-weight: 800;
            font-size: 1.5rem;
            margin: 0 0.3rem;
        }

        .know-more-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
        }

        .know-more-btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
        }

        /* Process Section */
        .process-section {
            background: var(--light);
            padding: 5rem 5%;
        }

        .process-container {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .process-subtitle {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .process-item {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .process-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .process-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .process-item h3 {
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .process-item p {
            font-size: 0.95rem;
            color: var(--text);
            opacity: 0.8;
        }

        .process-footer {
            font-size: 1.1rem;
            color: var(--text);
        }

        .inline-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--primary);
            transition: all 0.3s;
        }

        .inline-link:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

        /* Stats Section */
        .stats-section {
            background: var(--white);
            padding: 5rem 5%;
        }

        .stats-container {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            padding: 2rem;
            background: linear-gradient(135deg, var(--light), var(--white));
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .stat-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-family: 'Lora', serif;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text);
            font-weight: 500;
        }

        /* Partner Colleges Section - NEW */
        .colleges-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
        }

        .colleges-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .colleges-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .colleges-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .colleges-intro p {
            font-size: 1.15rem;
            color: var(--text);
            line-height: 1.8;
            opacity: 0.9;
            margin-top: 1rem;
        }

        .colleges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .college-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .college-card:visited {
            color: inherit;
        }

        .college-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .college-card:hover::before {
            transform: scaleX(1);
        }

        .college-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
            border-color: var(--accent);
        }

        .college-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 4px 12px rgba(30, 58, 138, 0.2));
            animation: floatCollege 3s ease-in-out infinite;
        }

        @keyframes floatCollege {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .college-card:hover .college-icon {
            animation: none;
            transform: scale(1.15) rotate(5deg);
            transition: transform 0.3s ease;
        }

        .college-name {
            font-size: 1.25rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .college-location {
            font-size: 0.95rem;
            color: var(--text);
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        .college-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: linear-gradient(135deg, var(--light), #bfdbfe);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        .colleges-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .colleges-cta-text {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        /* Services Carousel Section */
        .services-carousel {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
            padding: 6rem 5%;
            overflow: hidden;
            position: relative;
        }

        .services-carousel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: backgroundPulse 15s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .services-carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-carousel .section-title {
            color: var(--white) !important;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .services-subtitle {
            text-align: center;
            font-size: 1.4rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .carousel-wrapper {
            position: relative;
            padding: 0 80px;
        }

        .services-slider {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 3rem;
        }

        .service-slide {
            min-width: calc(33.333% - 2rem);
            background: var(--white);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30,58,138,0.05), rgba(59,130,246,0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-slide:hover::before {
            opacity: 1;
        }

        .service-slide:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }

        .service-slide-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-slide-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: imageGlow 4s ease-in-out infinite;
        }

        @keyframes imageGlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10%, 10%); }
        }

        .service-slide-icon {
            font-size: 6rem;
            z-index: 1;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .service-slide:hover .service-slide-icon {
            animation: spinPulse 0.6s ease-in-out;
        }

        @keyframes spinPulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(5deg); }
        }

        .service-slide-content {
            padding: 2.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-slide h3 {
            font-size: 1.7rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding-bottom: 1rem;
        }

        .service-slide h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            border-radius: 2px;
        }

        .service-slide-list {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .service-slide-list li {
            padding: 0.9rem 0;
            padding-left: 2.2rem;
            position: relative;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .service-slide-list li:hover {
            padding-left: 2.7rem;
            opacity: 1;
            color: var(--primary);
        }

        .service-slide-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--white);
            font-weight: bold;
            font-size: 0.9rem;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(30,58,138,0.3);
        }

        .service-slide-list li:hover::before {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 4px 12px rgba(30,58,138,0.5);
        }

        .service-slide-btn {
            display: block;
            width: 100%;
            padding: 1.3rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            text-align: center;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .service-slide-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .service-slide-btn:hover::before {
            width: 400px;
            height: 400px;
        }

        .service-slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
            border-color: var(--gold);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            color: var(--primary);
            border: 3px solid var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 2.2rem;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            line-height: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.5);
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-top: 3.5rem;
        }

        .dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: var(--white);
            width: 50px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(255,255,255,0.5);
        }

        .dot:hover {
            background: var(--white);
            transform: scale(1.3);
            box-shadow: 0 4px 15px rgba(255,255,255,0.3);
        }

        /* Consultation Section */
        .consultation-section {
            background: var(--white);
            padding: 5rem 5%;
        }

        .consultation-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .consultation-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .consultation-subtitle {
            font-size: 1.3rem;
            color: var(--text);
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .consultation-description {
            font-size: 1.05rem;
            color: var(--text);
            line-height: 1.8;
            opacity: 0.9;
        }

        .consultation-form-wrapper {
            background: var(--white);
            border: 2px solid var(--light);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .consultation-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-field-full {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5rem;
        }

        .form-field label,
        .form-field-full label {
            font-size: 0.95rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .required {
            color: #B91C1C;
        }

        .form-field input,
        .form-field select,
        .form-field-full textarea {
            padding: 1rem;
            border: 1px solid #D1D5DB;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field-full textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-field input::placeholder,
        .form-field-full textarea::placeholder {
            color: #9CA3AF;
        }

        .form-disclaimer {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .send-message-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .send-message-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
        }

        /* Footer Styles */
        .main-footer {
            background: var(--secondary);
            color: var(--white);
            padding-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--white);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 5%;
            text-align: center;
            font-size: 0.9rem;
        }

        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 998;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .top-bar {
                font-size: 0.8rem;
                padding: 0.5rem 4%;
            }

            .top-bar-content {
                justify-content: center;
            }

            .top-bar-links {
                gap: 1rem;
                font-size: 0.75rem;
            }

            nav {
                padding: 0 4%;
                min-height: 70px;
            }

            .logo-text {
                font-size: 1.4rem;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--white);
                width: 85%;
                max-width: 350px;
                height: calc(100vh - 70px);
                padding: 2rem 0;
                gap: 0;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                align-items: stretch;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu > li {
                border-bottom: 1px solid var(--light);
            }

            .nav-menu > li > a {
                padding: 1.2rem 2rem;
                font-size: 1.05rem;
                width: 100%;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                box-shadow: none;
                margin-top: 0;
                padding: 0;
                background: var(--light);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-menu > li.dropdown-active .dropdown {
                max-height: 500px;
            }

            .dropdown a {
                padding: 1rem 3rem;
                font-size: 0.95rem;
            }

            .dropdown a:hover {
                padding-left: 3.5rem;
            }

            .sub-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                box-shadow: none;
                padding: 0;
                background: rgba(30, 58, 138, 0.05);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown-item.dropdown-active .sub-dropdown {
                max-height: 500px;
            }

            .dropdown-item > a::after {
                transition: transform 0.3s;
            }

            .dropdown-item.dropdown-active > a::after {
                transform: rotate(90deg);
            }

            .sub-dropdown a {
                padding: 0.8rem 4rem;
                font-size: 0.9rem;
            }

            .sub-dropdown a:hover {
                padding-left: 4.5rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 3rem 4%;
            }

            .hero-image {
                order: -1;
            }

            .hero-placeholder {
                max-width: 350px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                max-width: 350px;
            }

            .approach-section {
                padding: 3rem 4%;
            }

            .approach-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .advisor-display {
                font-size: 5rem;
            }

            .process-section {
                padding: 3rem 4%;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .process-item {
                padding: 1.5rem 1rem;
            }

            .process-icon {
                font-size: 2.5rem;
            }

            .stats-section {
                padding: 3rem 4%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .colleges-section {
                padding: 4rem 4%;
            }

            .colleges-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .services-carousel {
                padding: 4rem 4%;
            }

            .carousel-wrapper {
                padding: 0 50px;
            }

            .service-slide {
                min-width: 100%;
            }

            .consultation-section {
                padding: 3rem 4%;
            }

            .consultation-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .consultation-form .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }

            .scroll-top {
                bottom: 85px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-placeholder {
                max-width: 280px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .colleges-grid {
                grid-template-columns: 1fr;
            }

            .carousel-wrapper {
                padding: 0 45px;
            }

            .service-slide-icon {
                font-size: 4.5rem;
            }
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }