        /* Global Styles */
        :root {
            --accent: #ffc107;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ff9800;
            --danger: #dc3545;
            --primary: #14213d;
            --secondary: #fca311;
            --light: #e5e5e5;
            --dark: #000000;
            --white: #ffffff;
            /* Enhanced premium palette */
            --primary-dark: #002244;
            --primary-light: #1a4d80;
            --secondary-light: #3385d6;
            --accent-dark: #e6ac00;
            --premium-gold: #d4af37;
            --premium-silver: #c0c0c0;
            --premium-gradient: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
            --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            --card-border-radius: 12px;
            --transition-timing: cubic-bezier(0.7, 0, 0.3, 1);


            --main-color: #642dde;
            --hover-color: #f6be32;
            --bg-color: #040404;
            --dark-color: #14213d;

        }

        html {
            scroll-behavior: smooth;
        }

        .aboutpage-timeline-content h3 {
            color: #000;
        }

        .aboutpage-timeline-content p {
            color: #000;
        }

        .aboutpage-animate {
            color: #000;
        }

        :root {
            /* Base colors from your palette */
            --phd-primary: #003366;
            --phd-secondary: #0066cc;
            --phd-accent: #ffc107;
            --phd-light: #f8f9fa;
            --phd-dark: #212529;
            --phd-success: #28a745;
            --phd-info: #17a2b8;
            --phd-warning: #ff9800;
            --phd-danger: #dc3545;

            /* Enhanced premium palette */
            --phd-primary-dark: #002244;
            --phd-primary-light: #1a4d80;
            --phd-secondary-light: #3385d6;
            --phd-accent-dark: #e6ac00;
            --phd-premium-gold: #d4af37;
            --phd-premium-silver: #c0c0c0;
            --phd-premium-gradient: linear-gradient(135deg, var(--phd-primary-dark), var(--phd-primary), var(--phd-secondary));
            --phd-card-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            --phd-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            --phd-card-border-radius: 12px;
            --phd-transition-timing: cubic-bezier(0.7, 0, 0.3, 1);
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .program-section.active {
            display: block;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col {
            padding: 0 15px;
            flex: 1;
        }

        .text-center {
            text-align: center;
        }

        .section {
            padding: 80px 0;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 30%;
            height: 5px;
            background-color: var(--accent);
            bottom: -10px;
            left: 35%;
            border-radius: 5px;
        }

        .section-description {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--bg-color);
        }

        /* Button base styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: #fff;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            margin-top: 25px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform-style: preserve-3d;
        }

        .btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        /* Advanced shutter effect */
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.2) 20%,
                    rgba(255, 255, 255, 0.5) 60%,
                    transparent 100%);
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Layered background for depth */
        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center,
                    rgba(255, 255, 255, 0.8) 0%,
                    rgba(255, 255, 255, 0) 70%);
            opacity: 0;
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        /* Subtle micro-interactions */
        .btn span {
            position: relative;
            z-index: 3;
            transition: transform 0.3s ease;
        }

        /* Hover animations */




        .btn:hover span {
            animation: textFloat 0.5s ease forwards;
        }

        /* Button variants */
        .btn-accent {
            background-color: var(--accent);
            color: var(--dark);
            background-image: linear-gradient(135deg, var(--accent) 0%, #ffce3a 100%);
        }

        .btn-accent:hover {
            background-image: linear-gradient(135deg, #ffce3a 0%, var(--accent) 100%);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            overflow: hidden;
        }

        .btn-outline:hover {
            color: #fff;
        }

        .btn-outline::before {
            background: var(--primary);
            opacity: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-outline:hover::before {
            transform: scaleX(1);
            opacity: 1;
            animation: none;
        }

        /* Active state */
        .btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }

        /* Keyframe animations */
        @keyframes advancedShutter {
            0% {
                left: -100%;
                transform: skewX(-20deg);
            }

            40% {
                transform: skewX(-15deg);
            }

            70% {
                transform: skewX(5deg);
            }

            100% {
                left: 150%;
                transform: skewX(0);
            }
        }

        @keyframes pulseGlow {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes textFloat {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-2px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* Additional styles for highlighting the button on hover */
        @media (prefers-reduced-motion: no-preference) {
            .btn:hover {
                background-position: right center;
                background-size: 200% auto;
            }
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo a {
            text-decoration: none;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 0;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-item {
            margin-left: 30px;
            position: relative;
        }

        .nav-link {
            color: var(--bg-color);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link i {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
        }

        /* Mega Menu Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: -50px;
            background-color: #fff;
            width: 700px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
        }

        .mega-menu-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--main-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

        .mega-menu-link {
            color: var(--dark-color);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .mega-menu-link:hover {
            color: var(--hover-color);
            transform: translateX(5px);
        }

        .mega-menu-link i {
            margin-right: 8px;
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .mega-menu-featured {
            grid-column: span 3;
            background-color: rgba(0, 51, 102, 0.05);
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 15px;
        }

        .featured-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 1.5rem;
        }

        .featured-text h3 {
            font-size: 1.1rem;
            color: var(--primary);
            margin: 0 0 5px;
        }

        .featured-text p {
            font-size: 0.9rem;
            color: #555;
            margin: 0;
        }

        .enroll-btn {
            background-color: var(--main-color);
            color: white;
            padding: 8px;
            border-radius: 15px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            margin-left: 30px;
            box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
            height: 40px;
            font-size: 15px;
        }

        .enroll-btn i {
            margin-right: 8px;
        }

        .enroll-btn:hover {
            background-color: var(--hover-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(255, 193, 7, 0.4);
        }

        .programs {
            position: relative;
            left: -60px;
            background-color: var(--main-color);
            color: #fff;
            padding: 10px 20px;
            border-radius: 15px;
            font-weight: bold;
        }

        /* .nav-menu li.nav-item:last-child {
            margin-left: 0;
        } */


        .programs:hover {
            background-color: #e6ac00;
        }








        :root {
            --primary: #14213d;
            --secondary: #fca311;
            --white: #ffffff;
            --light: #f8f9fa;
            --dark: #0a0a0a;
        }



        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            padding: 0 50px;
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 33, 61, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%);
        }

        .video-container video {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            width: 100%;
            padding: 2rem;
            gap: 3rem;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-form-wrapper {
            flex: 0 0 550px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .badge {
            display: inline-block;
            background-color: #5950d4;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.2s;
        }

        .program-section {
            display: none;
        }

        .title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.4s;
        }

        .subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            color: #e7e7e7;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.6s;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.8s;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .primary-btn {

            color: white;
            border: 2px solid var(--main-color);
        }

        .secondary-btn {
            background-color: var(--main-color);
            color: #ffff;
        }

        .primary-btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            border: 2px solid var(--hover-color);
        }

        .secondary-btn:hover {
            background-color: var(--hover-color);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Form Styles */
        .form-title {
            color: var(--primary);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            text-align: center;
        }

        .form-subtitle {
            color: #666;
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-row-triple {
            display: flex;
            gap: 0.8rem;
        }

        .form-row-triple .form-group {
            flex: 1;
        }

        .form-label {
            display: block;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.85rem;
        }



        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.1);
        }

        .form-submit {
            width: 100%;
            background-color: var(--dark-color);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            margin-top: 0.8rem;
            z-index: 99;
        }

        .form-submit:hover {
            background: linear-gradient(65deg, var(--main-color));
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: fadeIn 1s forwards 1.2s;
        }

        .scroll-text {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .scroll-arrow {
            width: 30px;
            height: 30px;
            border: 2px solid var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 2s infinite;
        }

        .scroll-arrow svg {
            width: 15px;
            fill: var(--light);
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .hero-form-wrapper {
                flex: none;
                width: 100%;
                max-width: 600px;
            }

            .title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                padding: 1.5rem;
            }

            .hero-form-wrapper {
                padding: 1.5rem;
            }

            .form-row,
            .form-row-triple {
                flex-direction: column;
                gap: 0;
            }

            .title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 200px;
                text-align: center;
            }
        }





        /* Mobile Menu Styles */
        .nav-menu {
            display: flex;
            align-items: center;
        }

        /* Mobile Toggle Button */
        .mobile-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {

            /* Show mobile toggle button */
            .mobile-toggle {
                display: block;
                position: absolute;
                right: 45px;
                z-index: 1000;
            }

            /* Hide nav menu by default on mobile */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #fff;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 80px 20px 30px;
                transition: all 0.4s ease-in-out;
                z-index: 999;
            }

            /* Show nav menu when active */
            .nav-menu.active {
                right: 0;
                top: 0;
                height: 85vh;
            }

            /* Style nav items for mobile */
            .nav-item {
                width: 100%;
                margin: 10px 0;
            }

            .nav-link {
                display: block;
                padding: 10px 0;
                font-size: 1.1rem;
            }

            /* Style enroll button for mobile */
            .enroll-btn {
                margin-top: 20px;
                width: 100%;
                text-align: center;
            }

            /* Handle mega menu on mobile */
            .mega-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                display: none;
                padding: 10px;
            }

            .mega-menu.mobile-active {
                display: block;
            }

            .mega-menu-column {
                width: 100%;
                padding: 10px 0;
            }

            /* Rotate chevron when menu is open */
            .programs i {
                transition: transform 0.3s ease;
            }

            .mega-menu.mobile-active+.nav-link .programs i {
                transform: rotate(180deg);
            }

            /* Style for active toggle button */
            .mobile-toggle.active {
                color: #0056b3;
                position: fixed;
                /* Change to your primary color */
            }
        }


        @media screen and (min-width: 1200px) {
            .container {
                max-width: 1170px;
            }
        }

        /* Medium-sized screens */
        @media screen and (max-width: 1199px) {
            .container {
                max-width: 960px;
            }

            .mega-menu {
                width: 600px;
            }

            .title {
                font-size: 3rem;
            }
        }

        /* Tablets */
        @media screen and (max-width: 991px) {
            .container {
                max-width: 720px;
            }

            .section {
                padding: 60px 0;
            }

            .row {
                flex-wrap: wrap;
            }

            .col {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 20px;
            }

            .nav-item {
                margin-left: 20px;
            }

            .mega-menu {
                width: 500px;
                left: -100px;
                grid-template-columns: repeat(2, 1fr);
            }

            .mega-menu-featured {
                grid-column: span 2;
            }

            .title {
                font-size: 2.7rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .enroll-btn {
                padding: 20px;
            }
        }

        /* Mobile devices */
        @media screen and (max-width: 767px) {
            .container {
                max-width: 540px;
            }

            .section {
                padding: 40px 0;
            }

            .col {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .section-title::after {
                width: 60%;
                left: 20%;
            }

            .section-description {
                font-size: 1rem;
            }

            /* Mobile navigation */
            .navbar {
                height: 60px;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                height: calc(100vh - 60px);
                padding: 20px;
                transition: all 0.3s ease;
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
                width: 100%;
            }

            .nav-link {
                width: 100%;
                display: block;
                padding: 10px 0;
            }

            .mega-menu {
                position: static;
                width: 100%;
                padding: 15px;
                box-shadow: none;
                display: none;
                grid-template-columns: 1fr;
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            .nav-item.active .mega-menu {
                display: grid;
            }

            .mega-menu-column {
                margin-bottom: 15px;
            }

            .mega-menu-featured {
                grid-column: 1;
                flex-direction: column;
                text-align: center;
            }

            .enroll-btn {
                margin-left: 0;
                margin-top: 20px;
                display: inline-flex;
            }

            /* Hero section adjustments */
            .hero-section {
                height: 100vh;
            }

            .content-wrapper {
                padding: 1rem;
            }

            .title {
                font-size: 2.2rem;
            }

            .subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-button {
                width: 100%;
                text-align: center;
                padding: 0.8rem 1.5rem;
            }

            .badge {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }
        }

        /* Small mobile devices */
        @media screen and (max-width: 575px) {
            .container {
                max-width: 100%;
            }

            .logo h1 {
                font-size: 1.5rem;
            }

            .btn {
                padding: 10px 20px;
            }

            .title {
                font-size: 1.8rem;
            }

            .scroll-indicator {
                bottom: 1rem;
            }
        }

        /* Button adjustments for touch devices */
        @media (hover: none) {

            .btn:hover,
            .cta-button:hover,
            .nav-link:hover {
                transform: none;
                box-shadow: none;
            }

            .btn:active,
            .cta-button:active {
                transform: scale(0.98);
            }
        }

        /* Landscape orientation adjustments */
        @media screen and (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                height: 150vh;
            }

            .scroll-indicator {
                display: none;
            }
        }

        /* High-resolution screens */
        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
            body {
                font-weight: 300;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            :root {
                --white: #14213d;
                --dark: #e5e5e5;
                --light: #555;
            }

            body {
                /* background-color: #121212; */
                color: #e5e5e5;
            }

            header {
                background-color: #ECFAE5;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

            }

            .mega-menu {
                background-color: #EAEFEF
            }
        }

        /* Print styles */
        @media print {

            header,
            .scroll-indicator,
            .cta-buttons {
                display: none;
            }

            body {
                font-size: 12pt;
                line-height: 1.5;
            }

            .container {
                max-width: 100%;
                width: 100%;
            }

            .hero-section {
                height: auto;
                color: #000;
            }

            .video-container {
                display: none;
            }

            .content-wrapper {
                transform: none;
                opacity: 1;
            }

            .title {
                color: #000;
                -webkit-text-fill-color: #000;
            }
        }





        /* About Section */
        .about {
            background-color: #f9f9f9;
            padding: 40px 0;
        }

        .about-cards {
            display: flex;
            gap: 25px;
            margin-top: 50px;
        }

        .about-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-card i {
            font-size: 2.5rem;
            color: var(--main-color);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .about-card i::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background-color: rgba(0, 102, 204, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .about-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .about-card p {
            font-size: 1rem;
            color: #666;
        }

        .about-card .btn {
            margin-top: 20px;
            padding: 8px 20px;
        }

        /* Why Choose Section */
        .why-choose {
            background-color: #fff;
            padding: 40px 0;
        }

        .why-choose-tabs {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 50px;

        }

        .why-choose-tab {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .why-choose-tab:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .tab-header {
            padding: 20px 30px;
            background-color: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            cursor: pointer;
            border-radius: 15px;
        }

        .tab-header i {
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .tab-header h3 {
            font-size: 1.3rem;
            margin: 0;
            flex: 1;
        }

        .tab-header .tab-toggle {
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .tab-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .tab-content-inner {
            padding: 30px;
            display: flex;
            gap: 30px;
        }

        .tab-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }

        .tab-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }

        .tab-text {
            flex: 2;
        }

        .tab-text p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .tab-active .tab-toggle {
            transform: rotate(180deg);
        }

        .tab-active .tab-content {
            max-height: 1000px;
        }

        @media (max-width: 992px) {
            .why-choose {
                padding: 30px 0;
            }

            .tab-header h3 {
                font-size: 1.1rem;
            }

            .tab-content-inner {
                padding: 20px;
                gap: 20px;
            }
        }

        /* Mobile Landscape */
        @media (max-width: 768px) {
            .why-choose {
                padding: 25px 0;
            }

            .why-choose-tabs {
                margin-top: 30px;
            }

            .tab-header {
                padding: 15px 20px;
            }

            .tab-header i {
                font-size: 1.2rem;
                margin-right: 10px;
            }

            .tab-content-inner {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .tab-img {
                flex: none;
                width: 100%;
            }

            .tab-text {
                flex: none;
                width: 100%;
            }
        }

        /* Mobile Portrait */
        @media (max-width: 576px) {
            .why-choose {
                padding: 20px 0;
            }

            .why-choose-tabs {
                gap: 15px;
                margin-top: 25px;
            }

            .tab-header {
                padding: 12px 15px;
            }

            .tab-header h3 {
                font-size: 1rem;
            }

            .tab-header i {
                font-size: 1rem;
                margin-right: 8px;
            }

            .tab-content-inner {
                padding: 15px;
                gap: 15px;
            }

            .tab-text p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .tab-active .tab-content {
                max-height: 1500px;
                /* Increased for mobile since content stacks */
            }
        }

        /* Very Small Devices */
        @media (max-width: 375px) {
            .tab-header {
                padding: 10px;
            }

            .tab-header h3 {
                font-size: 0.9rem;
            }

            .tab-content-inner {
                padding: 12px;
            }
        }

        /* Process Section */
        .process {
            background-color: #fff;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #e9ecef;
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 180px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--hover-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
        }

        .step-icon {
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background-color: var(--main-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: var(--dark);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--bg-color);
            margin-bottom: 10px;
        }

        .step-desc {
            font-size: 0.9rem;
            color: #666;
        }

        /* Timing Section */
        .timing {
            background-color: #f9f9f9;
        }

        .timing-content {
            display: flex;
            gap: 50px;
        }

        .timing-img {
            flex: 1;
            position: relative;
            top: 50px;
        }

        .timing-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .timing-img img:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .timing-calendar {
            position: absolute;
            top: -30px;
            right: -30px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            animation: float 3s ease-in-out infinite;
        }

        .timing-calendar i {
            font-size: 2.5rem;
            color: var(--danger);
            margin-bottom: 10px;
        }

        .timing-calendar h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin: 0;
        }

        .timing-text {
            flex: 1;
            position: relative;
            top: 15px;
        }

        .timing-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .timing-text h2 i {
            color: var(--accent);
            margin-left: 10px;
        }

        .timing-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
        }

        .timing-seasons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .timing-season {
            background-color: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1 0 45%;
            transition: all 0.3s ease;
        }

        .timing-season:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .season-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 102, 204, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .season-text h4 {
            font-size: 1rem;
            color: var(--primary);
            margin: 0 0 5px;
        }

        .season-text p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        /* Benefits Section */
        .benefits {
            background-color: #fff;
        }

        .section {
            padding: 0 0 50px 0;
        }

        .benefits-table {
            padding: 20px 0;
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 15px;
        }

        .benefits-table-row {
            background-color: #642dde24;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .benefits-table-row:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .benefits-table-row td {
            padding: 20px;
        }

        .benefits-table-row td:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .benefits-table-row td:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            color: var(--main-color);
        }

        .benefit-title {
            width: 30%;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary);
        }

        .benefit-desc {
            width: 50%;
            font-size: 1rem;
            color: #666;
        }

        .benefit-btn {
            width: 20%;
            text-align: right;
        }




        /* Responsive styles */
        @media screen and (max-width: 992px) {
            .benefits-table {
                margin-top: 30px;
            }

            .benefit-title {
                font-size: 1.1rem;
            }

            .benefit-desc {
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 768px) {
            .benefits {
                padding: 15px;
            }

            .benefits-table {
                border-spacing: 0 10px;
            }

            .benefits-table-row td {
                padding: 15px;
            }

            .benefit-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .benefit-title {
                width: 100%;
                font-size: 1rem;
            }

            .benefit-desc {
                width: 100%;
                font-size: 0.9rem;
            }

            .benefit-btn {
                width: 100%;
                text-align: center;
                margin-top: 10px;
            }

            .timing-text h2 {
                font-size: 1.95rem;
            }
        }

        @media screen and (max-width: 576px) {
            .benefits-table {
                margin-top: 20px;
                border-spacing: 0;
            }

            .benefits-table,
            .benefits-table tbody,
            .benefits-table tr,
            .benefits-table td {
                display: block;
                width: 100%;
            }

            .benefits-table-row {
                margin-bottom: 20px;
            }

            .benefits-table-row td {
                padding: 12px;
                text-align: center;
            }

            .benefit-icon {
                margin: 0 auto;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .benefits-table-row td:first-child {
                border-radius: 10px 10px 0 0;
            }

            .benefits-table-row td:last-child {
                border-radius: 0 0 10px 10px;
            }

            .benefit-title {
                font-size: 1rem;
                margin: 10px 0;
            }

            .benefit-desc {
                font-size: 0.85rem;
            }

            .benefit-btn {
                margin-top: 5px;
            }
        }


        .ums-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .ums-section {
            padding: 80px 0 20px 0;
        }

        #timing {
            padding-top: 40px;
        }

        .ums-text-center {
            text-align: center;
        }

        .ums-section-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--bg-color);
            /* Using direct color instead of var */
        }

        .ums-section-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Upgradmyskill Section */
        .ums-upgradmyskill {
            background-color: #f9f9f9;
        }

        .ums-upgradmyskill-content {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }

        .ums-upgradmyskill-features {
            flex: 1;
        }

        .ums-upgradmyskill-feature {
            background-color: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            display: flex;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .ums-upgradmyskill-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .ums-feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--hover-color);
            /* Direct color instead of var */
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .ums-feature-text h3 {
            font-size: 1.2rem;
            margin: 0 0 10px;
            color: var(--main-color);
            /* Direct color instead of var */
        }

        .ums-feature-text p {
            font-size: 1rem;
            color: #666;
            margin: 0;
        }

        .ums-upgradmyskill-stats {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Video player and controls layout */
        .ums-video-player-container {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        /* Video player section */
        .ums-video-container {
            position: relative;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            aspect-ratio: 16/9;
            background-color: #000;
            flex: 1;
        }

        .ums-video-player {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 15px;
        }

        /* Video controls section - now vertical */
        .ums-video-controls-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ums-video-controls {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Video thumbnail icons with shutter effect */
        .ums-video-icon {
            background-color: #fff;
            border-radius: 15px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
        }

        /* Premium glossy surface effect */
        .ums-video-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to bottom,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.3) 60%,
                    rgba(255, 255, 255, 0) 100%);
            border-radius: 15px 15px 100px 100px;
            pointer-events: none;
            z-index: 2;
        }

        /* Shutter light effect - main animation element */
        .ums-video-icon::after {
            content: '';
            position: absolute;
            top: -10%;
            left: -200%;
            width: 80%;
            height: 120%;
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.4) 20%,
                    rgba(255, 255, 255, 0.8) 50%,
                    rgba(255, 255, 255, 0.4) 80%,
                    rgba(255, 255, 255, 0) 100%);
            transform: rotate(35deg);
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .ums-video-icon i {
            font-size: 1.8rem;
            color: var(--main-color);
            position: relative;
            z-index: 4;
        }

        .ums-video-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .ums-video-icon:hover::after {
            animation: umsShutterSweep 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            opacity: 1;
        }

        .ums-video-icon.ums-active {
            background: linear-gradient(145deg, #e6f0ff, #d1e3ff);
            border: 2px solid var(--main-color);
            /* Direct color instead of var */
        }

        /* Keyframe animation for the light shutter effect */
        @keyframes umsShutterSweep {
            0% {
                left: -200%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            100% {
                left: 200%;
                opacity: 0;
            }
        }

        .ums-counters {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .ums-counter {
            flex: 1 0 45%;
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .ums-counter:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .ums-counter-icon {
            font-size: 1.9rem;
            color: var(--main-color);
            margin-bottom: 10px;
        }

        .ums-counter-number {
            font-size: 2.3rem;
            font-weight: bold;
            color: var(--bg-color);
            margin-bottom: 5px;
        }

        .ums-counter-text {
            font-size: 1.3rem;
            color: #666;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .ums-upgradmyskill-content {
                flex-direction: column;
            }

            .ums-video-player-container {
                flex-direction: column;
            }

            .ums-video-controls-wrapper {
                margin-top: 15px;
            }

            .ums-video-controls {
                flex-direction: row;
                justify-content: space-around;
            }
        }

        @media (max-width: 576px) {
            .ums-video-controls {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: center;
            }

            .ums-video-icon {
                width: 60px;
                height: 60px;
            }
        }

        /* USA Section */
        .usa {
            background-color: #fff;
        }

        .usa-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .usa-card {
            flex: 1 0 calc(33.333% - 30px);
            background-color: #f9f9f9;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .usa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .usa-card-img {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .usa-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .usa-card:hover .usa-card-img img {
            transform: scale(1.1);
        }

        .usa-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--main-color);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .usa-card-content {
            padding: 25px;
        }

        .usa-card-title {
            font-size: 1.9rem;
            color: var(--primary);
            margin: 0 0 15px;
        }

        .usa-card-text {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .usa-card-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .usa-card-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .usa-card-feature i {
            color: var(--main-color);
            margin-right: 10px;
            font-size: 1rem;
        }

        .usa-card-feature span {
            font-size: 0.95rem;
            color: #555;
        }








        /* Footer */
        footer {

            background-color: var(--dark-color);
            color: #fff;
            padding: 80px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo h2 {
            font-size: 1.5rem;
            color: #fff;
            margin: 0;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-about {
            font-size: 0.95rem;
            color: #adb5bd;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--main-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
            color: #fff;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 12px;
        }

        .footer-link a {
            color: #adb5bd;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-link a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-link a i {
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .footer-contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
            color: var(--main-color);
            margin-right: 15px;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text a {
            text-decoration: none;
        }

        .contact-text h4 {
            font-size: 1rem;
            color: #fff;
            margin: 0 0 5px;
        }

        .contact-text p {
            font-size: 0.9rem;
            color: #adb5bd;
            margin: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            font-size: 0.9rem;
            color: #adb5bd;
        }

        .footer-bottom p a {
            color: white;
            text-decoration: none;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-badges {
                right: 20px;
            }

            .mega-menu {
                width: 600px;
                left: -100px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .hero-badges {
                display: none;
            }

            .what-is-content,
            .eligibility-content,
            .timing-content {
                flex-direction: column;
                gap: 30px;
            }

            .upgradmyskill-content {
                flex-direction: column;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .process-steps::before {
                display: none;
            }

            .usa-card {
                flex: 1 0 calc(50% - 30px);
            }

            .mega-menu {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                padding: 15px;
                opacity: 1;
                visibility: visible;
                transform: none;
                grid-template-columns: 1fr;
            }



            .mega-menu-featured {
                grid-column: span 1;
            }

            .enroll-btn {
                margin-left: 0;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background-color: #fff;
                width: 100%;
                height: calc(100vh - 80px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 30px;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
                width: 80%;
            }

            .nav-link {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .enroll-btn {
                margin: 20px 0;
            }

            .mobile-toggle {
                display: block;
                font-size: 1.5rem;
                color: var(--primary);
            }

            .hero {
                padding: 150px 0 80px;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero h2 {
                font-size: 1.2rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .about-cards {
                flex-direction: column;
            }

            .about-card {
                margin-bottom: 20px;
            }

            .tab-content-inner {
                flex-direction: column;
            }

            .timing-seasons {
                flex-direction: column;
            }

            .timing-season {
                flex: 1 0 100%;
            }

            .usa-card {
                flex: 1 0 100%;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-col {
                width: 100%;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }














        /* Modern Attractive Mobile Navigation */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 100px 0 30px 0;
                transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                z-index: 999;
                overflow-y: auto;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
                scrollbar-width: thin;
                scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
            }

            .nav-menu::-webkit-scrollbar {
                width: 4px;
            }

            .nav-menu::-webkit-scrollbar-track {
                background: transparent;
            }

            .nav-menu::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.3);
                border-radius: 10px;
            }

            .nav-menu::-webkit-scrollbar-thumb:hover {
                background: rgba(255, 255, 255, 0.5);
            }

            .nav-menu.mobile-active {
                right: 0;
            }

            .nav-item {
                width: 100%;
                margin: 0;
                padding: 0 25px;
            }

            .nav-link {
                display: flex;
                align-items: center;
                padding: 18px 20px;
                margin: 8px 0;
                border-radius: 15px;
                font-size: 16px;
                font-weight: 500;
                width: 100%;
                color: rgba(255, 255, 255, 0.9);
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                text-decoration: none;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .nav-link::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.5s;
            }

            .nav-link:hover::before {
                left: 100%;
            }

            .nav-link:hover,
            .nav-link:active {
                background: rgba(255, 255, 255, 0.2);
                transform: translateX(5px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                color: #fff;
            }

            .programs {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                left: 0;
            }



            .programs i {
                transition: transform 0.3s ease;
                font-size: 14px;
                opacity: 0.8;
            }

            .nav-item.active .programs i {
                transform: rotate(180deg);
            }

            .mega-menu {
                position: static;
                width: 100%;
                background: rgba(0, 0, 0, 0.1);
                backdrop-filter: blur(10px);
                box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
                border: none;
                border-radius: 15px;
                margin: 10px 0 15px 0;
                max-height: 0;
                overflow: hidden;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                opacity: 0;
            }

            .mega-menu.mobile-active {
                max-height: 825px;
                opacity: 1;
                padding: 20px 15px;
            }

            .mega-menu-column {
                width: 100%;
                margin-bottom: 25px;
                padding: 0;
            }

            .mega-menu-title {
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 12px;
                color: rgba(255, 255, 255, 0.9);
                text-transform: uppercase;
                letter-spacing: 1px;
                padding: 0 5px 8px;
                border-bottom: 2px solid rgba(255, 255, 255, 0.3);
                position: relative;
            }

            .mega-menu-title::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 5px;
                width: 30px;
                height: 2px;
                background: #fff;
                border-radius: 1px;
            }

            .mega-menu-link {
                display: flex;
                align-items: center;
                padding: 12px 15px;
                margin: 6px 0;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 10px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                text-decoration: none;
                color: rgba(255, 255, 255, 0.8);
                font-size: 14px;
                font-weight: 400;
                transition: all 0.3s ease;
                position: relative;
            }

            .mega-menu-link:hover,
            .mega-menu-link:active {
                background: rgba(255, 255, 255, 0.15);
                color: #fff;
                transform: translateX(8px);
                border-color: rgba(255, 255, 255, 0.3);
            }

            .mega-menu-link i {
                margin-right: 12px;
                color: rgba(255, 255, 255, 0.7);
                font-size: 16px;
                width: 20px;
                text-align: center;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                cursor: pointer;
                z-index: 1000;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .mobile-toggle:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: scale(1.05);
            }

            .mobile-toggle i {
                font-size: 20px;
                color: #333;
                transition: all 0.3s ease;
            }

            .mobile-toggle.active {
                background: rgba(255, 255, 255, 0.9);
            }

            .mobile-toggle.active i {
                color: #667eea;
                transform: rotate(180deg);
            }

            .mobile-toggle.active i:before {
                content: "\f00d";
            }

            .enroll-btn {
                background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
                color: white !important;
                padding: 15px 25px;
                border-radius: 25px;
                text-align: center;
                margin: 15px 0;
                border: none;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                font-size: 14px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .enroll-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.5s;
            }

            .enroll-btn:hover::before {
                left: 100%;
            }

            .enroll-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            }

            .enroll-btn i {
                margin-right: 8px;
            }

            /* Mobile menu overlay */
            .mobile-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(5px);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            /* Animation for menu items */
            .nav-menu.mobile-active .nav-item {
                animation: slideInRight 0.5s ease forwards;
            }

            .nav-menu.mobile-active .nav-item:nth-child(1) {
                animation-delay: 0.1s;
            }

            .nav-menu.mobile-active .nav-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .nav-menu.mobile-active .nav-item:nth-child(3) {
                animation-delay: 0.3s;
            }

            .nav-menu.mobile-active .nav-item:nth-child(4) {
                animation-delay: 0.4s;
            }

            .nav-menu.mobile-active .nav-item:nth-child(5) {
                animation-delay: 0.5s;
            }

            @keyframes slideInRight {
                from {
                    opacity: 0;
                    transform: translateX(30px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }

        /* Desktop styles - ensure mega menu works normally on desktop */
        @media (min-width: 769px) {
            .mobile-toggle {
                display: none;
            }

            .nav-menu {
                display: flex;
                position: static;
                height: auto;
                background: transparent;
                flex-direction: row;
                padding: 0;
            }

            .nav-item:hover .mega-menu {
                display: grid;
                opacity: 1;
                transform: translateY(0);
            }

            .mega-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 800px;
                background: #fff;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                border-radius: 10px;
                padding: 30px;
                display: none;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                z-index: 1000;
            }
        }

        @media (max-width: 380px) {
            .mega-menu.mobile-active {
                max-height: 900px;
            }
        }

        @media (max-width: 320px) {
            .mega-menu.mobile-active {
                max-height: 1010px;
            }
        }












        .premium-section {
            position: relative;
            overflow: hidden;
            padding: 60px 0 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            /* margin-top: 60px; */
            position: relative;
            z-index: 5;
        }

        .phd-section .premium-section-title {
            color: var(--bg-color) !important;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: var(--text-shadow);
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .premium-section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 2px;
            box-shadow: 0 2px 5px rgba(255, 193, 7, 0.5);
        }

        .phd-container .premium-section-subtitle {
            color: var(--bg-color) !important;
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 720px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .reviews-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .review-card {
            flex: 1;
            max-width: 300px;
            min-width: 280px;
            background: var(--main-color);
            border-radius: var(--card-border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
            transform: translateY(0);
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .reviewer-photo-container {
            position: relative;
            width: 110px;
            height: 110px;
            margin: -55px auto 15px;
            border-radius: 50%;
            background: white;
            padding: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .review-card:hover .reviewer-photo-container {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }

        .reviewer-photo {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .reviewer-photo-container::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: calc(100% + 6px);
            height: calc(100% + 6px);
            border-radius: 50%;
            background: conic-gradient(var(--premium-gold),
                    var(--primary),
                    var(--premium-gold),
                    var(--primary),
                    var(--premium-gold));
            z-index: -1;
            animation: rotate-border 4s linear infinite;
        }

        @keyframes rotate-border {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .review-card-body {
            padding: 0 20px 25px;
            text-align: center;
        }

        .review-top {
            background: var(--review-gradient);
            height: 80px;
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: var(--accent);
            font-size: 20px;
        }

        .review-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--premium-gold);
            color: var(--dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            z-index: 2;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            transform: rotate(5deg);
            text-transform: uppercase;
        }

        a.phd-cta-button {
            color: #000;
        }

        .reviewer-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--hover-color);
            margin: 0 0 5px;
        }

        .reviewer-title {
            font-size: 0.85rem;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .rating {
            margin: 10px 0;
            display: flex;
            justify-content: center;
            gap: 5px;
        }

        .star {
            color: var(--premium-gold);
            font-size: 18px;
        }

        .review-text {
            color: white;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 15px 0;
            position: relative;
            font-style: italic;
        }

        .review-program {
            background: var(--hover-color);
            color: var(--primary);
            font-size: 0.8rem;
            padding: 5px 12px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            margin-top: 10px;
        }


        .premium-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }




        .premium-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            z-index: 2;
            box-shadow: 0 0 20px 5px var(--accent);
        }


        .shine-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.03) 20%,
                    rgba(255, 255, 255, 0.1) 40%,
                    rgba(255, 255, 255, 0.03) 60%,
                    rgba(255, 255, 255, 0) 80%);
            transform: translateX(-100%);
            transition: transform 0s;
            z-index: 1;
        }

        .review-card:hover .shine-effect {
            transform: translateX(100%);
            transition: transform 0.8s ease-in-out;
        }


        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }


        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


        .view-all-container {
            text-align: center;
            margin-top: 50px;
        }

        .view-all-button {
            display: inline-block;
            padding: 12px 35px;
            background: var(--main-color);
            color: var(--main-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            z-index: 1;
            color: #fff;
        }

        .view-all-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .view-all-button:hover {
            color: var(--main-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .view-all-button:hover::before {
            left: 0;
        }

        @media screen and (max-width: 1200px) {
            .premium-section {
                padding: 50px 0 70px;
            }

            .reviews-grid {
                gap: 25px;
            }

            .premium-section-title {
                font-size: 2.5rem;
            }

            .review-card {
                max-width: 280px;
                min-width: 260px;
            }
        }

        @media screen and (max-width: 992px) {
            .premium-section {
                padding: 40px 0 60px;
                min-height: auto;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .premium-section-title {
                font-size: 2.2rem;
            }

            .premium-section-subtitle {
                font-size: 1rem;
                padding: 0 15px;
            }

            .review-card {
                max-width: 260px;
                min-width: 240px;
            }

            .reviewer-photo-container {
                width: 100px;
                height: 100px;
                margin: -50px auto 15px;
            }

            .view-all-container {
                margin-top: 40px;
            }
        }

        @media screen and (max-width: 768px) {
            .premium-section {
                padding: 50px 0 !important
            }

            .premium-section-title {
                font-size: 2rem;
            }

            .premium-section-title::after {
                width: 50px;
                margin: 8px auto 0;
            }

            .reviews-container {
                padding: 0 15px;
            }

            .reviews-grid {
                gap: 40px 20px;
            }

            .review-card {
                flex: 0 0 calc(50% - 20px);
                max-width: 320px;
                min-width: 220px;
            }

            .reviewer-name {
                font-size: 1.1rem;
            }

            .review-text {
                font-size: 0.85rem;
            }

            .review-top {
                height: 70px;
            }

            .view-all-button {
                padding: 10px 30px;
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 576px) {
            .premium-section {
                padding: 25px 0 40px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .premium-section-title {
                font-size: 1.8rem;
            }

            .premium-section-subtitle {
                font-size: 0.9rem;
            }

            .reviews-grid {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }

            .review-card {
                min-width: 100%;
                max-width: 100%;
            }

            .review-card:hover {
                transform: translateY(-10px) scale(1.02);
            }

            .reviewer-photo-container {
                width: 90px;
                height: 90px;
                margin: -45px auto 12px;
            }

            .review-card-body {
                padding: 0 15px 20px;
            }

            .quote-icon {
                top: 15px;
                left: 15px;
                width: 25px;
                height: 25px;
                font-size: 16px;
            }

            .review-badge {
                top: 15px;
                right: 15px;
                font-size: 0.65rem;
                padding: 3px 8px;
            }

            .rating .star {
                font-size: 16px;
            }

            .review-program {
                font-size: 0.75rem;
                padding: 4px 10px;
            }

            .view-all-container {
                margin-top: 30px;
            }

            .view-all-button {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 375px) {
            .premium-section-title {
                font-size: 1.6rem;
            }

            .reviewer-photo-container {
                width: 80px;
                height: 80px;
                margin: -40px auto 10px;
            }

            .reviewer-name {
                font-size: 1rem;
            }

            .reviewer-title {
                font-size: 0.8rem;
            }

            .review-text {
                font-size: 0.8rem;
                margin: 12px 0;
            }
        }

        /* Print media query for better printing */
        @media print {
            .premium-section {
                padding: 20px 0;
                min-height: auto;
            }

            .premium-decoration,
            .premium-glow,
            .shine-effect,
            .view-all-container {
                display: none;
            }

            .review-card {
                box-shadow: none;
                border: 1px solid #ddd;
                page-break-inside: avoid;
            }

            .reviewer-photo-container::after {
                display: none;
            }

            .review-top {
                background: #f5f5f5;
            }
        }

        .phd-features {
            margin-top: 80px;
            margin: 60px;
            padding: 40px 120px;
            background: white;
            border-radius: var(--phd-card-border-radius);
            box-shadow: var(--phd-card-shadow);
            position: relative;
        }

        .phd-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--phd-premium-gradient);
            border-top-left-radius: var(--phd-card-border-radius);
            border-bottom-left-radius: var(--phd-card-border-radius);
        }

        .phd-features-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--bg-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .phd-features-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--phd-accent);
        }

        .phd-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .phd-feature-item {
            display: flex;
            align-items: flex-start;
        }

        .phd-feature-icon {
            background: var(--main-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .phd-feature-text {
            flex-grow: 1;
        }

        .phd-feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--bg-color);
            margin-bottom: 5px;
        }

        .phd-feature-description {
            font-size: 14px;
            color: var(--phd-dark);
        }


        .phd-cta {
            margin-top: 60px;
            text-align: center;
            padding: 60px 40px;
            background: aliceblue;
            border-radius: var(--phd-card-border-radius);
            position: relative;
            overflow: hidden;
            color: var(--primary);
        }

        .phd-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .phd-cta-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .phd-cta-text {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }

        .phd-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: white;

            text-decoration: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 18px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            border: none;
            cursor: pointer;
        }

        .phd-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }


        .phd-show-more-container {
            text-align: center;
            margin-top: 40px;
        }

        .phd-show-more-button {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--phd-primary);
            border: 2px solid var(--phd-primary);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .phd-show-more-button:hover {
            background: var(--phd-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
        }


        .phd-animation {
            animation: phd-fadeIn 1s forwards;
        }

        @keyframes phd-fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .phd-shimmer {
            position: relative;
            overflow: hidden;
        }

        .phd-shimmer::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 50%;
            height: 300%;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.5) 50%,
                    rgba(255, 255, 255, 0) 100%);
            transform: rotate(30deg);
            animation: phd-shimmer 3s infinite;
            z-index: 1;
        }

        @keyframes phd-shimmer {
            0% {
                transform: translateX(-100%) rotate(30deg);
            }

            100% {
                transform: translateX(200%) rotate(30deg);
            }
        }


        @media (max-width: 992px) {
            .phd-courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .phd-title {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .phd-courses-grid {
                grid-template-columns: 1fr;
            }

            .phd-features {
                padding: 30px;
            }

            .phd-features-grid {
                grid-template-columns: 1fr;
            }

            .phd-title {
                font-size: 36px;
            }

            .phd-cta-title {
                font-size: 30px;
            }
        }

        @media (max-width: 576px) {
            .phd-title {
                font-size: 32px;
            }

            .phd-card-details {
                flex-direction: column;
                align-items: flex-start;
            }

            .phd-card-button {
                margin-top: 15px;
                width: 100%;
            }

            .phd-card-meta-group {
                margin-bottom: 15px;
            }

            .phd-cta {
                padding: 40px 20px;
            }
        }



        .premium-section {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: -80px;

        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 5;
        }

        .premium-section-title {
            color: var(--bg-color);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: var(--text-shadow);
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .premium-section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto 0;
            border-radius: 2px;
            box-shadow: 0 2px 5px rgba(255, 193, 7, 0.5);
        }

        .premium-section-subtitle {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .courses-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .courses-grid {
            display: flex;
            flex-wrap: wrap;
            /* allow wrapping */
            justify-content: center;
            gap: 20px;
            padding: 0 60px;
        }

        .course-card {
            flex: 0 0 calc((100% - 40px) / 3);
            /* 3 cards per row with 20px gaps */
            max-width: 300px;
            background: var(--light);
            border-radius: var(--card-border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            z-index: 1;
        }


        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
            z-index: 2;
        }

        .course-card:hover::before {
            opacity: 1;
        }

        .course-card-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            padding: 15px;
            position: relative;
            overflow: hidden;
            height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }



        .course-card:hover .course-card-header::before {
            transform: rotate(0deg);
        }

        .course-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
            text-shadow: var(--text-shadow);
            position: relative;
            line-height: 1.3;
        }

        .course-code {
            color: var(--bg-color);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            background: var(--hover-color);
            margin-bottom: 5px;
        }

        .course-card-body {
            padding: 15px;
            height: 240px;
            display: flex;
            flex-direction: column;
            background-color: #E7F2E4;
        }

        .course-description {
            color: var(--bg-color);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 10px;
            flex-grow: 1;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            margin-top: 0;
        }

        .course-credits {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            padding-top: 10px;
        }

        .course-professor {
            font-size: 0.8rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .course-action {
            display: inline-block;
            padding: 8px 18px;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
            margin: 10px 0;
        }

        .course-action::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .course-action:hover {
            background: var(--primary);
            box-shadow: 0 6px 15px rgba(0, 51, 102, 0.4);
            transform: translateY(-2px);
        }

        .course-action:hover::before {
            left: 100%;
        }

        .view-all-btn {
            display: flex;
            justify-content: center;
            margin: 40px 0 0px 0;
            text-align: center;

        }

        /* Shutter effect for View All button */
        .view-all {
            display: inline-block;
            padding: 14px 35px;
            background: transparent;
            /* Warmer, richer gold */
            color: var(--bg-color);
            text-decoration: none;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 3px solid var(--main-color);
        }

        .view-all::before {
            content: '';
            position: absolute;
            top: 0;
            left: -200%;
            width: 200%;
            height: 100%;
            background: repeating-linear-gradient(-45deg,
                    rgba(255, 255, 255, 0.0),
                    rgba(255, 255, 255, 0.0) 5px,
                    rgba(255, 255, 255, 0.2) 5px,
                    rgba(255, 255, 255, 0.2) 10px);
            z-index: -1;
            transition: all 0s;
        }

        .view-all::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            background: radial-gradient(circle at center,
                    rgba(255, 255, 255, 0.8) 0%,
                    rgba(255, 255, 255, 0) 60%);
            opacity: 0;
            z-index: -2;
            transition: opacity 0.5s ease;
        }

        .view-all:hover {
            background: #ffca3a;

            transform: translateY(-3px) scale(1.03);
            color: var(--bg-color);
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .view-all:hover::before {
            animation: shutterLightSweep 1s ease-in-out infinite;
        }

        .view-all:hover::after {
            opacity: 0.4;
            animation: pulseGlow 2s ease-in-out infinite;
        }

        @keyframes shutterLightSweep {
            0% {
                left: -200%;
                opacity: 0.8;
            }

            100% {
                left: 100%;
                opacity: 0.8;
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 0.2;
            }

            50% {
                opacity: 0.5;
            }
        }


        /* Premium decorations */
        .premium-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }


        /* Badge for special courses */
        .premium-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--premium-gold);
            color: var(--dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 12px;
            z-index: 2;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            transform: rotate(5deg);
        }

        /* Extra premium animation effect */
        .premium-glow {
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            z-index: 2;
            box-shadow: 0 0 20px 5px var(--accent);
        }

        /* Shine effect on cards */
        .shine-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.03) 20%,
                    rgba(255, 255, 255, 0.1) 40%,
                    rgba(255, 255, 255, 0.03) 60%,
                    rgba(255, 255, 255, 0) 80%);
            transform: translateX(-100%);
            transition: transform 0s;
        }

        .course-card:hover .shine-effect {
            transform: translateX(100%);
            transition: transform 0.5s ease-in-out;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 1200px) {
            .courses-grid {
                flex-wrap: wrap;
                justify-content: center;
            }

            .course-card {
                flex: 0 0 calc(50% - 20px);
                max-width: 400px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {

            .section-title {
                font-size: 24px !important;
                padding-bottom: 10px !important;
                margin: 0 !important;
            }

            .premium-section-title {
                font-size: 2.2rem;
            }

            .phd-section .premium-section-title {
                font-size: 1.7rem;
            }

            .phd-section .premium-section-subtitle {
                font-size: 1rem;
            }



            .courses-grid {
                flex-direction: column;
                align-items: center;
            }

            .course-card {
                flex: 0 0 100%;
                max-width: 350px;
            }
        }


        /* Eligibility Section */
        .eligibility {
            background-color: var(--light-gray);
            padding: 60px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .text-center {
            text-align: center;
        }

        .section-description {
            font-size: 1.1rem;
            margin-bottom: 50px;
            color: var(--bg-color);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .eligibility-text p {
            color: var(--bg-color);
        }

        .eligibility-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .eligibility-text {
            flex: 1;
        }

        .eligibility-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--hover-color);
        }

        .eligibility-text h2 i {
            color: var(--accent);
            margin-left: 10px;
        }

        .eligibility-list {
            list-style: none;
            margin-top: 30px;
            padding: 0;
        }

        .eligibility-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            background-color: transparent;
            padding: 15px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid var(--dark-color);
        }

        .eligibility-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .eligibility-item i {
            font-size: 1.3rem;
            color: var(--hover-color);
            margin-right: 15px;
            min-width: 24px;
        }

        .eligibility-item p {
            margin: 0;
            font-size: 1.1rem;
            color: var(--bg-color);
        }

        .eligibility-img-container {
            flex: 1;
            position: relative;
            display: flex;
            flex-direction: column;
            top: -20px;
        }


        .small-icons {
            display: flex;
            justify-content: space-around;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 70px;
        }

        .icon-box {
            background-color: var(--white);
            border-radius: 15px;
            padding: 15px;
            width: 90px;
            height: 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            /* Subtle glossy gradient */
            background: linear-gradient(145deg, #ffffff, #f5f5f5);
        }

        /* Premium glossy surface effect */
        .icon-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to bottom,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.3) 60%,
                    rgba(255, 255, 255, 0) 100%);
            border-radius: 15px 15px 100px 100px;
            pointer-events: none;
            z-index: 2;
        }

        /* Shutter light effect - main animation element */
        .icon-box::after {
            content: '';
            position: absolute;
            top: -10%;
            left: -200%;
            width: 80%;
            height: 120%;
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.4) 20%,
                    rgba(255, 255, 255, 0.8) 50%,
                    rgba(255, 255, 255, 0.4) 80%,
                    rgba(255, 255, 255, 0) 100%);
            transform: rotate(35deg);
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .icon-box i {
            font-size: 2rem;
            color: var(--main-color);
            margin-bottom: 10px;
            position: relative;
            z-index: 4;
            transition: all 0.3s ease;
        }

        .icon-box p {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 600;
            color: #555;
            text-align: center;
            position: relative;
            z-index: 4;
        }

        /* Hover effects */
        .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            background: linear-gradient(145deg, #fafafa, #ffffff);
        }

        /* Activate the shutter light effect on hover */
        .icon-box:hover::after {
            animation: shutterSweep 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            opacity: 1;
        }

        .icon-box:hover i {
            color: var(--primary);
            transform: scale(1.05);
        }

        /* Keyframe animation for the light shutter effect */
        @keyframes shutterSweep {
            0% {
                left: -200%;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            100% {
                left: 200%;
                opacity: 0;
            }
        }

        /* Active state */
        .icon-box:active {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }


        .main-image {
            position: relative;
            margin-bottom: 30px;
        }

        .main-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .main-image img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        #about .section-title,
        #why-choose .section-title,
        #usa .section-title,
        #usa .section-description,
        #process .section-title,
        #process .section-description,
        #benefits .section-title,
        #benefits .section-description,
        #timing .section-title,
        #timing .section-description,
        #about .section-description,
        #why-choose .section-description {
            color: var(--bg-color);
        }


        .eligibility-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--bg-color);
            color: var(--dark);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 198, 92, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 198, 92, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 198, 92, 0);
            }
        }

        .eligibility-badge h3 {
            font-size: 1.5rem;
            margin: 0;
            font-weight: 700;
        }

        .eligibility-badge p {
            font-size: 0.9rem;
            margin: 0;
        }


        .counters {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .counter-item {
            color: var(--hover-color);
            border-radius: 15px;
            padding: 20px 15px;
            flex: 1;
            margin: 0 10px;
            text-align: center;
            border: 1px solid var(--hover-color);
            transition: all 0.3s ease;
        }

        .counter-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .counter-item h3 {
            font-size: 2rem;
            margin: 0 0 5px 0;
            font-weight: 700;
        }

        .counter-item p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            background-color: var(--dark-color);
            color: #fff;
            padding: 12px 13px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            background-color: var(--main-color);
        }


        /* Large screens (below 1200px) */
        @media screen and (max-width: 1200px) {
            .container {
                padding: 0 20px;
            }

            .eligibility-content {
                gap: 40px;
            }

            .eligibility-text h2 {
                font-size: 2rem;
            }

            .small-icons {
                gap: 50px;
            }

            .eligibility-badge {
                width: 110px;
                height: 110px;
            }
        }

        /* Medium screens (below 992px) */
        @media screen and (max-width: 992px) {
            .eligibility {
                padding: 50px 0;
            }

            .section-description {
                font-size: 1rem;
                margin-bottom: 40px;
            }

            .eligibility-content {
                flex-direction: column;
                gap: 30px;
            }

            .eligibility-img-container {
                top: 0;
                order: -1;
            }

            .eligibility-text h2 {
                text-align: center;
            }

            .small-icons {
                justify-content: center;
                margin-bottom: 30px;
            }

            .counters {
                flex-wrap: wrap;
                gap: 15px;
            }

            .counter-item {
                flex: 0 0 calc(50% - 20px);
                margin: 0;
            }

            .eligibility-badge {
                right: 0;
                bottom: -15px;
                width: 100px;
                height: 100px;
            }

            .eligibility-badge h3 {
                font-size: 1.3rem;
            }

            .eligibility-badge p {
                font-size: 0.8rem;
            }
        }

        /* Small screens (below 768px) */
        @media screen and (max-width: 768px) {
            .eligibility {
                padding: 40px 0;
            }

            .section-description {
                font-size: 0.95rem;
                margin-bottom: 30px;
            }

            .eligibility-text h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .eligibility-item {
                padding: 12px 15px;
            }

            .eligibility-item p {
                font-size: 1rem;
            }

            .small-icons {

                gap: 36px !important;
                justify-content: center !important;
            }

            .icon-box {
                width: 80px;
                height: 80px;
            }

            .icon-box i {
                font-size: 1.8rem;
            }

            .icon-box p {
                font-size: 0.8rem;
            }

            .counter-item h3 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }

        /* Mobile screens (below 576px) */
        @media screen and (max-width: 576px) {
            .eligibility {
                padding: 30px 0;
            }

            .section-description {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }

            .eligibility-text h2 {
                font-size: 1.6rem;
            }

            .eligibility-list {
                margin-top: 20px;
            }

            .eligibility-item {
                margin-bottom: 12px;
            }

            .eligibility-item:hover {
                transform: translateX(5px);
            }

            .eligibility-item i {
                font-size: 1.2rem;
                margin-right: 10px;
            }

            .small-icons {
                gap: 15px;
                justify-content: space-between;
                margin-bottom: 25px;
            }

            .icon-box {
                width: 70px;
                height: 70px;
                padding: 10px;
            }

            .icon-box i {
                font-size: 1.5rem;
                margin-bottom: 5px;
            }

            .icon-box p {
                font-size: 0.7rem;
            }

            .main-image {
                margin-bottom: 20px;
            }

            .main-image img:hover {
                transform: scale(1.02);
            }

            .eligibility-badge {
                bottom: -10px;
                right: 0;
                width: 80px;
                height: 80px;
            }

            .eligibility-badge h3 {
                font-size: 1.1rem;
            }

            .eligibility-badge p {
                font-size: 0.7rem;
            }

            .counters {
                margin-top: 15px;
            }

            .counter-item {
                flex: 0 0 100%;
                margin-bottom: 10px;
                padding: 15px;
            }

            .counter-item h3 {
                font-size: 1.6rem;
            }

            .counter-item p {
                font-size: 0.8rem;
            }

            .btn {
                width: 100%;
                text-align: center;
                margin-top: 20px;
                padding: 12px 10px;
            }
        }

        /* Extra small screens (below 400px) */
        @media screen and (max-width: 400px) {

            .eligibility-text h2 {
                font-size: 1.4rem;
            }

            .eligibility-item {
                padding: 10px;
            }

            .eligibility-item p {
                font-size: 0.9rem;
            }

            .small-icons {
                gap: 10px;
            }

            .icon-box {
                width: 65px;
                height: 65px;
            }

            .icon-box i {
                font-size: 1.3rem;
            }

            .icon-box p {
                font-size: 0.65rem;
            }

            /* Reduce animation for better performance on small devices */
            .icon-box:hover,
            .eligibility-item:hover,
            .counter-item:hover,
            .main-image img:hover {
                transform: none;
            }

            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(255, 198, 92, 0.3);
                }

                70% {
                    box-shadow: 0 0 0 8px rgba(255, 198, 92, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(255, 198, 92, 0);
                }
            }
        }

        /* Print styles */
        @media print {
            .eligibility {
                padding: 20px 0;
                background-color: white !important;
            }

            .eligibility-content {
                display: block;
            }

            .eligibility-badge,
            .icon-box::before,
            .icon-box::after {
                display: none !important;
            }

            .counter-item {
                background: none !important;
                color: black !important;
                box-shadow: none !important;
                border: 1px solid #ddd;
            }

            .eligibility-item {
                box-shadow: none !important;
                border: 1px solid #eee;
            }

            .main-image img {
                box-shadow: none !important;
            }

            .btn {
                display: none;
            }
        }




        /* Hero Section */
        .phd-hero-section {
            background-image: linear-gradient(320deg, #000000cf 0%, #000000cf 50%, #000000cf 100%), url('images/Banner/1.jpg') !important;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .phd-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            opacity: 0.3;
        }

        .phd-hero-container {
            padding: 0 120px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }


        .phd-hero-content {
            color: white;
            animation: phdSlideInLeft 1s ease-out;
        }

        .phd-hero-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .phd-hero-highlight {
            color: #f6be32;
            text-shadow: 0 0 20px rgba(246, 190, 50, 0.5);
        }

        .phd-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .phd-hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .phd-stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(246, 190, 50, 0.2);
            transition: all 0.3s ease;
        }

        .phd-stat-item:hover {
            transform: translateY(-5px);
            background: rgba(246, 190, 50, 0.2);
        }

        .phd-stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #f6be32;
        }

        .phd-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Form Styles - Updated for wider and shorter form */
        .phd-form-container {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            margin-top: 30px;
            margin-bottom: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(246, 190, 50, 0.3);
            animation: phdSlideInRight 1s ease-out;
            width: 100%;
            max-width: 700px;
        }

        .phd-form-title {
            font-size: 1.8rem;
            color: #642dde;
            text-align: center;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .phd-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .phd-form-group {
            margin-bottom: 15px;
        }

        .phd-form-group.phd-full-width {
            grid-column: span 3;
        }

        .phd-form-group.phd-half-width {
            grid-column: span 2;
        }

        .phd-form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #040404;
            font-size: 0.9rem;
            text-align: left;
        }

        .phd-form-input,
        .phd-form-select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fff;
        }

        .phd-form-input:focus,
        .phd-form-select:focus {
            outline: none;
            border-color: #f6be32;
            box-shadow: 0 0 0 3px rgba(246, 190, 50, 0.1);
            transform: translateY(-2px);
        }

        .phd-submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f6be32 0%, #642dde 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .phd-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(246, 190, 50, 0.4);
        }


        /* Responsive CSS */

        /* Large Tablets and below (max-width: 1024px) */
        @media (max-width: 1024px) {
            .phd-hero-container {
                padding: 0 60px;
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .phd-hero-title {
                font-size: 3rem;
            }

            .phd-hero-stats {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .phd-stat-item {
                padding: 15px;
                min-width: 120px;
            }

            .phd-stat-number {
                font-size: 1.7rem;
            }

            .phd-form-container {
                padding: 25px;
                max-width: 600px;
            }

            .phd-form-grid {
                grid-template-columns: 1fr 1fr;
            }

            .phd-form-group.phd-half-width {
                grid-column: span 2;
            }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .phd-hero-container {
                padding: 0 30px;
            }

            .phd-hero-title {
                font-size: 2.5rem;
            }

            .phd-hero-subtitle {
                font-size: 1.1rem;
            }

            .phd-stat-item {
                padding: 12px;
                min-width: 100px;
            }

            .phd-stat-number {
                font-size: 1.5rem;
            }

            .phd-form-container {
                padding: 20px;
            }

            .phd-form-grid {
                grid-template-columns: 1fr;
            }

            .phd-form-group.phd-full-width,
            .phd-form-group.phd-half-width {
                grid-column: span 1;
            }

            .phd-submit-btn {
                padding: 13px;
                font-size: 1rem;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .phd-hero-title {
                font-size: 20px;
            }

            .phd-hero-subtitle {
                font-size: 14px;
            }

            .phd-hero-stats {
                flex-direction: column;
                gap: 15px;
            }

            .phd-stat-item {
                width: 100%;
                padding: 10px;
            }

            .phd-form-container {
                padding: 15px;
                margin: 20px 0;
            }

            .phd-form-title {
                font-size: 1.5rem;
            }

            .phd-submit-btn {
                padding: 12px;
                font-size: 0.95rem;
            }
        }




        :root {
            --phd-primary: #642dde;
            --phd-secondary: #f6be32;
            --phd-dark: #040404;
            --phd-light: #ffffff;
            --phd-gradient: linear-gradient(135deg, #642dde 0%, #f6be32 100%);
        }

        /* Program Overview Section */
        .phd-overview-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #faf8ff 0%, #fff9e6 50%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .phd-overview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(100,45,222,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.6;
        }

        .phd-overview-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Two Column Layout */
        .phd-overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .phd-overview-text {
            padding-right: 20px;
        }

        .phd-overview-text h2 {
            font-size: 2.8rem;
            background: var(--phd-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .phd-overview-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* Image Section */
        .phd-overview-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phd-image-container {
            width: 100%;
            max-width: 450px;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(100, 45, 222, 0.15);
            position: relative;
            background: var(--phd-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phd-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .phd-image-container:hover img {
            transform: scale(1.05);
        }

        /* Placeholder for when no image is provided */
        .phd-image-placeholder {
            color: white;
            text-align: center;
            font-size: 1.2rem;
            padding: 20px;
        }

        .phd-image-placeholder i {
            font-size: 4rem;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .phd-wp-container {
            text-align: left;
            margin-top: 30px;
        }

        .phd-whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: var(--phd-light);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            position: relative;
            z-index: 2;
        }

        .phd-whatsapp-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

        .phd-whatsapp-button i {
            font-size: 1.3rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-5px);
            }

            60% {
                transform: translateY(-3px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-overview-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .phd-overview-text {
                padding-right: 0;
                text-align: center;
            }

            .phd-overview-text h2 {
                font-size: 2.2rem;
            }

            .phd-image-container {
                height: 280px;
            }

            .phd-wp-container {
                text-align: center;
            }
        }


        :root {
            --phd-primary: #642dde;
            --phd-secondary: #f6be32;
            --phd-dark: #040404;
            --phd-light: #ffffff;
            --phd-gradient: linear-gradient(135deg, #642dde 0%, #f6be32 100%);
        }

        /* Program Overview Section */
        .phd-overview-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #faf8ff 0%, #fff9e6 50%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .phd-overview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(100,45,222,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.6;
        }

        .phd-overview-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .phd-overview-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .phd-overview-header h2 {
            font-size: 2.8rem;
            background: var(--phd-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .phd-overview-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Main Content Layout */
        .phd-main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
            margin-top: 40px;
        }

        /* Cards Section */
        .phd-cards-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .phd-overview-card {
            background: var(--phd-light);
            padding: 25px 20px;
            border-radius: 18px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }

        .phd-overview-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--phd-gradient);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .phd-overview-card:hover::before {
            opacity: 1;
        }

        .phd-overview-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(100, 45, 222, 0.15);
        }

        .phd-overview-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: var(--phd-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--phd-light);
            transition: all 0.4s ease;
        }

        .phd-overview-card:hover .phd-overview-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .phd-overview-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--phd-dark);
            line-height: 1.4;
        }

        /* Image Section */
        .phd-overview-image {
            display: flex;
            align-items: center;
            justify-content: center;
            position: sticky;
            top: 100px;
        }

        .phd-image-container {
            width: 100%;
            max-width: 400px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(100, 45, 222, 0.15);
            position: relative;
            background: var(--phd-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phd-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .phd-image-container:hover img {
            transform: scale(1.05);
        }

        /* Placeholder for when no image is provided */
        .phd-image-placeholder {
            color: white;
            text-align: center;
            font-size: 1.2rem;
            padding: 20px;
        }

        .phd-image-placeholder i {
            font-size: 4rem;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        /* WhatsApp Button */
        .phd-wp-container {
            text-align: center;
            margin-top: 45px;
            grid-column: 1 / -1;
        }

        .phd-whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: var(--phd-light);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            position: relative;
            z-index: 2;
        }

        .phd-whatsapp-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

        .phd-whatsapp-button i {
            font-size: 1.3rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-5px);
            }

            60% {
                transform: translateY(-3px);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .phd-main-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .phd-overview-image {
                position: static;
                order: -1;
            }

            .phd-image-container {
                height: 300px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .phd-cards-section {
                grid-template-columns: 1fr;
            }

            .phd-overview-header h2 {
                font-size: 2.2rem;
            }

            .phd-overview-subtitle {
                font-size: 1rem;
            }
        }



        /* Program Highlights Section */
        .phd-highlights-section {
            padding: 80px 0;

            position: relative;
        }

        .phd-highlights-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .phd-highlights-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .phd-highlights-header h2 {
            font-size: 2.8rem;
            color: var(--phd-primary);
            margin-bottom: 15px;
            font-weight: bold;
        }

        .phd-highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
            gap: 25px;
        }

        .phd-highlight-card {
            background: var(--phd-light);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid rgba(246, 190, 50, 0.2);
            position: relative;
            overflow: hidden;
        }

        .phd-highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(246, 190, 50, 0.1), transparent);
            transition: left 0.5s;
        }

        .phd-highlight-card:hover::before {
            left: 100%;
        }

        .phd-highlight-card:hover {
            transform: translateY(-8px);
            border-color: var(--phd-secondary);
            box-shadow: 0 15px 30px rgba(246, 190, 50, 0.2);
        }

        .phd-highlight-icon {
            font-size: 2.2rem;
            color: var(--phd-secondary);
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .phd-highlight-card:hover .phd-highlight-icon {
            transform: scale(1.2) rotate(10deg);
            color: var(--phd-primary);
        }

        .phd-highlight-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--phd-dark);
        }

        .phd-highlight-card p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
        }








        /* Eligibility Section */
        .phd-eligibility-section {
            padding: 80px 0 1px 0;
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
            position: relative;
        }

        .phd-eligibility-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .phd-eligibility-content h2 {
            font-size: 2.5rem;
            color: var(--bg-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .phd-eligibility-list {
            list-style: none;
            padding: 0;
        }

        .phd-eligibility-list li {
            background: var(--phd-light);
            margin-bottom: 15px;
            padding: 15px 20px;
            border-radius: 12px;
            border-left: 4px solid var(--phd-secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: var(--bg-color);
        }

        .phd-eligibility-list li::before {
            content: '✓';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--phd-secondary);
            color: var(--phd-light);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .phd-eligibility-list li:hover {
            transform: translateX(10px);
            border-left-color: var(--phd-primary);
        }

        .phd-eligibility-list li:hover::before {
            left: -15px;
            background: var(--phd-primary);
        }

        /* Image Section */
        .phd-eligibility-image {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phd-image-container {
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            background: linear-gradient(135deg, var(--phd-secondary), var(--phd-primary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phd-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .phd-image-container:hover img {
            transform: scale(1.05);
        }

        /* Placeholder for when no image is provided */
        .phd-image-placeholder {
            color: white;
            text-align: center;
            font-size: 1.2rem;
            padding: 20px;
        }

        .phd-image-placeholder i {
            font-size: 4rem;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        /* WhatsApp Button - Your Original Styling */
        .phd-wp-container {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .phd-whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25d366;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .phd-whatsapp-button:hover {
            background: #20c458;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .phd-whatsapp-button i {
            font-size: 18px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-eligibility-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .phd-eligibility-content h2 {
                font-size: 2rem;
            }

            .phd-image-container {
                height: 300px;
            }
        }



        /* Recognition Section */
        .phd-recognition-content {
            background: var(--phd-light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            top: 10px;
        }

        .phd-recognition-content::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(100, 45, 222, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .phd-recognition-content img {
            width: 100%;
            border-radius: 15px;
            height: 210px;
            border: 2px solid black;

        }

        .phd-recognition-badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            margin-top: 30px;
            position: relative;
            z-index: 2;
        }

        .phd-badge {
            background: var(--main-color);
            color: var(--phd-light);
            padding: 15px 10px;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .phd-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .phd-badge:hover::before {
            left: 100%;
        }

        .phd-badge:hover {
            transform: translateY(-5px) scale(1.05);
        }

        /* Animations */
        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-eligibility-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .phd-overview-header h2,
            .phd-highlights-header h2,
            .phd-eligibility-content h2,
            .phd-recognition-content h2 {
                font-size: 2rem;
            }

            .phd-whatsapp-title {
                font-size: 1.5rem;
            }

            .phd-overview-grid,
            .phd-highlights-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }



        /* With Us Section */
        .phd-with-us-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .phd-with-us-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .phd-section-title {
            font-size: 2.5rem;
            color: #642dde;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .phd-section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .phd-with-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .phd-with-us-card {
            background: white;
            padding: 25px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .phd-with-us-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #f6be32, #642dde);
            transition: all 0.3s ease;
        }

        .phd-with-us-card:hover::before {
            left: 0;
        }

        .phd-with-us-card:hover {
            transform: translateY(-8px);
            border-color: #f6be32;
            box-shadow: 0 15px 35px rgba(100, 45, 222, 0.15);
        }

        .phd-with-us-icon {
            font-size: 2.5rem;
            color: #642dde;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .phd-with-us-card:hover .phd-with-us-icon {
            color: #f6be32;
            transform: scale(1.1);
        }

        .phd-with-us-title {
            font-size: 1.3rem;
            color: #040404;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .phd-with-us-desc {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Why Choose Section */
        .phd-why-choose-section {
            padding: 80px 0;
            color: #333;
            position: relative;
        }

        .phd-why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .phd-why-choose-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .phd-why-choose-header h2 {
            font-size: 2.5rem;
            color: #642dde;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .phd-why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .phd-why-choose-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 25px 20px;
            border-radius: 15px;
            border: 2px solid rgba(246, 190, 50, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .phd-why-choose-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(246, 190, 50, 0.05) 0%, rgba(100, 45, 222, 0.05) 100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .phd-why-choose-item:hover::before {
            opacity: 1;
        }

        .phd-why-choose-item:hover {
            transform: translateY(-8px);
            border-color: #f6be32;
            box-shadow: 0 15px 35px rgba(246, 190, 50, 0.2);
        }

        .phd-why-choose-icon {
            font-size: 2.5rem;
            color: #f6be32;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .phd-why-choose-item:hover .phd-why-choose-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .phd-why-choose-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: bold;
            position: relative;
            z-index: 2;
            color: #333;
        }

        .phd-why-choose-desc {
            color: #666;
            line-height: 1.5;
            position: relative;
            z-index: 2;
            font-size: 0.95rem;
        }








        /* Transform Identity Section */
        .transform-identity-section {
            padding-top: 50px;
            margin-bottom: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a2e;
            text-align: center;
            margin-bottom: 40px;
        }

        .identity-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .identity-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .identity-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .identity-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(100, 45, 222, 0.15);
            transition: transform 0.3s ease;
        }

        .identity-image img:hover {
            transform: scale(1.02);
        }

        /* Placeholder for when no image is provided */
        .image-placeholder {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, #642dde, #f6be32);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 20px 60px rgba(100, 45, 222, 0.15);
            transition: transform 0.3s ease;
        }

        .image-placeholder:hover {
            transform: scale(1.02);
        }

        .identity-card {
            background: white;
            border-radius: 18px;
            padding: 20px;
            box-shadow: 0 6px 20px rgba(100, 45, 222, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-align: center;
            border: 1px solid rgba(100, 45, 222, 0.05);
        }

        .identity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #642dde, #f6be32);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .identity-card:hover::before {
            transform: scaleX(1);
        }

        .identity-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(100, 45, 222, 0.15);
            border-color: rgba(100, 45, 222, 0.1);
        }

        .identity-icon {
            width: 50px;
            height: 50px;
            background: #642dde;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }

        .identity-card:hover .identity-icon {
            background: #f6be32;
            transform: rotate(10deg) scale(1.1);
        }

        .identity-card h3 {
            font-size: 1.1rem;
            color: #1a1a2e;
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.3;
        }

        .identity-card p {
            color: #64748b;
            line-height: 1.5;
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .identity-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .identity-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .identity-cards-grid {
                gap: 15px;
            }

            .identity-card {
                padding: 15px;
            }
        }


        /* Admission Procedure Section */
        .admission-procedure-section {
            margin-top: 80px;
            margin-bottom: 80px;
        }

        .procedure-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: #e2e8f0;
            z-index: 1;
        }

        .timeline-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: #642dde;
            animation: progressLine 3s ease-in-out infinite;
        }

        .procedure-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .procedure-card {
            background: white;
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .procedure-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(100, 45, 222, 0.12);
            border-color: #642dde;
        }

        .procedure-number {
            width: 60px;
            height: 60px;
            background: #642dde;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            margin: 0 auto 20px;
            font-size: 1.4rem;
            position: relative;
            z-index: 3;
        }

        .procedure-card:nth-child(even) .procedure-number {
            background: #f6be32;
        }

        .procedure-card h4 {
            font-size: 1.3rem;
            color: #1a1a2e;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .procedure-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Form Section */
        .form-section {
            text-align: center;
            background: url('images/banner.png');
            border-radius: 30px;
            padding: 60px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(246, 190, 50, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .form-cta {
            position: relative;
            z-index: 2;
        }

        .form-cta h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .form-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .apply-btn {
            background: #f6be32;
            color: #1a1a2e;
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(246, 190, 50, 0.3);
            position: relative;
            overflow: hidden;
        }

        .apply-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .apply-btn:hover::before {
            left: 100%;
        }

        .apply-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(246, 190, 50, 0.4);
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
            max-width: 550px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            animation: modalSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .modal-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            color: #fff;
            font-size: 1.1rem;
        }

        .close-btn {
            position: absolute;
            top: -20px;
            right: -20px;
            background: #f1f5f9;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            color: #64748b;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: #642dde;
            color: white;
            transform: scale(1.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #1a1a2e;
            font-size: 1rem;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 10px;
            min-height: 30px;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
            background: #fafbff;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: #642dde;
            background: white;
            box-shadow: 0 0 0 4px rgba(100, 45, 222, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: #642dde;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #f6be32;
            transition: left 0.3s ease;
            z-index: 1;
        }

        .submit-btn span {
            position: relative;
            z-index: 2;
        }

        .submit-btn:hover::before {
            left: 0;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(100, 45, 222, 0.3);
        }

        .submit-btn:hover span {
            color: #1a1a2e;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: translate(-50%, -60%) scale(0.8);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        @keyframes progressLine {
            0% {
                width: 0%;
            }

            50% {
                width: 100%;
            }

            100% {
                width: 0%;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: rotate(0deg) translate(0, 0);
            }

            50% {
                transform: rotate(180deg) translate(30px, -30px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-main-title {
                font-size: 2.8rem;
            }

            .identity-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .procedure-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .timeline-line {
                display: none;
            }

            .modal {
                padding: 30px 25px;
                margin: 20px;
            }

            .form-section {
                padding: 40px 25px;
                border-radius: 20px;
            }
        }



        :root {
            --phd-primary: #f6be32;
            --phd-secondary: #642dde;
            --phd-dark: #040404;
            --phd-light: #ffffff;
            --phd-gray: #f8f9fa;
            --phd-text: #333333;
            --phd-border: #e9ecef;
        }

        /* Header Section */
        .phd-header {
            background: url('images/img-1.jpeg');

            color: var(--phd-light);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .phd-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(246,190,50,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(246,190,50,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(246,190,50,0.1)"/></svg>');
            animation: phd-float 20s infinite linear;
        }

        @keyframes phd-float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        .phd-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .phd-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: phd-slideInUp 1s ease-out;
        }

        .phd-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
            animation: phd-slideInUp 1s ease-out 0.2s both;
        }

        .phd-cta-btn {
            display: inline-block;
            background: var(--phd-primary);
            color: var(--phd-dark);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: phd-slideInUp 1s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .phd-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .phd-cta-btn:hover::before {
            left: 100%;
        }

        .phd-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(246, 190, 50, 0.4);
        }

        @keyframes phd-slideInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Discount Banner */
        .phd-discount-banner {
            background: linear-gradient(45deg, var(--phd-primary), #ffd700);
            color: var(--phd-dark);
            padding: 20px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .phd-discount-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            animation: phd-pulse 2s infinite;
        }

        .phd-discount-icon {
            font-size: 2rem;
            animation: phd-bounce 1s infinite;
        }

        .phd-discount-text {
            font-size: 1.2rem;
            font-weight: 700;
        }

        @keyframes phd-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes phd-bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Section Styling */
        .phd-section {
            padding: 80px 0;
        }

        .phd-section:nth-child(even) {
            background-color: var(--phd-gray);
        }

        .phd-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .phd-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--phd-secondary);
            margin-bottom: 15px;
            position: relative;
        }

        .phd-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--phd-primary);
            border-radius: 2px;
        }

        .phd-section-title p {
            font-size: 1.1rem;
            color: black;
            max-width: 600px;
            margin: 0 auto;
        }



        /* Base Styles */
        .phd-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .phd-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .phd-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .phd-section-title h2 {
            font-size: 2.5rem;
            color: #642dde;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .phd-section-title p {
            font-size: 1.1rem;
            color: black;
            max-width: 600px;
            margin: 0 auto;
        }


        /* Journey Section */
        .phd-journey-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .phd-journey-step {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .phd-journey-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .phd-journey-number {
            width: 60px;
            height: 60px;
            background: var(--phd-primary);
            color: var(--phd-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 30px;
            position: relative;
            z-index: 1;
        }

        .phd-journey-content {
            flex: 1;
            background: var(--phd-light);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--phd-secondary);
            transition: all 0.3s ease;
        }

        .phd-journey-content:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .phd-journey-step:nth-child(even) .phd-journey-content:hover {
            transform: translateX(-10px);
        }









        /* FAQ Section */
        .phd-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .phd-faq-item {
            background: var(--phd-light);
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .phd-faq-question {
            padding: 25px;
            background: var(--phd-light);
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .phd-faq-question:hover {
            background: var(--phd-gray);
        }

        .phd-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .phd-faq-answer.active {
            max-height: 500px;
            padding: 25px;
        }

        .phd-faq-icon {
            transition: transform 0.3s ease;
        }

        .phd-faq-icon.active {
            transform: rotate(180deg);
        }



        /* Articles Section - Cute & Compact Design */
        .phd-articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .phd-article-card {
            background: var(--phd-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
        }

        .phd-article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--phd-secondary), var(--phd-primary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .phd-article-card:hover::before {
            transform: scaleX(1);
        }

        .phd-article-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(100, 45, 222, 0.15);
            border-color: rgba(246, 190, 50, 0.3);
        }

        .phd-article-image {
            height: 120px;
            background: linear-gradient(135deg, var(--phd-primary), var(--phd-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--phd-light);
            font-size: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .phd-article-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .phd-article-image i {
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .phd-article-card:hover .phd-article-image i {
            transform: scale(1.1) rotate(5deg);
        }

        .phd-article-content {
            padding: 20px;
        }

        .phd-article-date {
            color: var(--phd-secondary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .phd-article-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--phd-dark);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .phd-article-excerpt {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .phd-article-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--phd-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 8px 16px;
            background: rgba(100, 45, 222, 0.05);
            border-radius: 25px;
            border: 1px solid rgba(100, 45, 222, 0.2);
        }

        .phd-article-link:hover {
            background: var(--phd-primary);
            color: white;
            transform: translateX(5px);
        }

        .phd-article-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .phd-article-link:hover::after {
            transform: translateX(3px);
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(10px, -10px) rotate(1deg);
            }

            66% {
                transform: translate(-5px, 5px) rotate(-1deg);
            }
        }

        /* Fade-in Animation */
        .phd-fade-in {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Article Icons with Specific Colors */
        .phd-article-card:nth-child(1) .phd-article-image {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
        }

        .phd-article-card:nth-child(2) .phd-article-image {
            background: linear-gradient(135deg, #48dbfb, #0abde3);
        }

        .phd-article-card:nth-child(3) .phd-article-image {
            background: linear-gradient(135deg, #1dd1a1, #10ac84);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-section-title h2 {
                font-size: 2rem;
            }

            .phd-articles-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .phd-article-content {
                padding: 15px;
            }

            .phd-article-image {
                height: 100px;
                font-size: 2rem;
            }
        }

        /* Cute Badge for New Articles */
        .phd-article-card:first-child::after {
            content: 'NEW!';
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Futures Section */
        .phd-futures {
            background: linear-gradient(135deg, var(--phd-dark), var(--phd-secondary));
            color: var(--phd-light);
            text-align: center;
        }

        .phd-futures h2 {
            color: var(--phd-light);
        }

        .phd-futures-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .phd-stat-item {
            text-align: center;
        }

        .phd-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--phd-primary);
            display: block;
            margin-bottom: 10px;
        }

        .phd-stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .phd-header h1 {
                font-size: 2.5rem;
            }

            .phd-section-title h2 {
                font-size: 2rem;
            }

            .phd-newsletter-form {
                flex-direction: column;
            }

            .phd-journey-step {
                flex-direction: row !important;
            }

            .phd-journey-number {
                margin: 20px 0;
            }
        }

        #next-section .section-header {
            margin-top: 60px;
        }

        .phd-hero-title {
            margin: 20px 0;
        }

        .phd-highlights-section .phd-overview-subtitle {
            color: black;
        }

        .phd-overview-card:hover h3,
        .phd-overview-card:hover p {
            color: #fff;
        }

        .phd-journey-content h3 {
            color: var(--main-color);
        }

        .phd-journey-content p {
            color: var(--bg-color);
        }

        .phd-recognition-content p {
            color: #000;
        }

        #Artical_Section p,
        #Faqs p {
            color: var(--bg-color);
        }

        .discount .discount-banner {
            background: var(--dark-color);
            color: white;
            padding: 30px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            margin: 40px auto;
            max-width: 92%;
            animation: fadeInUp 1s ease;
        }

        .discount .banner-text {
            flex: 1;
            min-width: 250px;
        }

        .discount .banner-text h1 {
            margin: 0;
            font-size: 32px;
        }

        .discount .banner-text p {
            margin: 5px 0 10px;
            font-size: 18px;
            opacity: 0.95;
        }

        .discount .highlight {
            font-weight: bold;
            color: #ffd700;
        }

        .discount .cta-box {
            background: white;
            color: #ff4b2b;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            cursor: pointer;
            min-width: 220px;
        }

        .discount .cta-box:hover {
            transform: scale(1.05);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px) {
            .discount .discount-banner {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .discount .cta-box {
                margin-top: 15px;
            }
        }


        .carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            flex: 0 0 33.3333%;
            padding: 15px;
        }

        @media (max-width: 900px) {
            .carousel-item {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 600px) {
            .carousel-item {
                flex: 0 0 100%;
            }
        }

        .card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s;
            border: 3px solid var(--main-color);
        }

        .card:hover {
            transform: translateY(-5px);
            background-color: var(--main-color);
            color: #fff;
        }

        .card:hover .university-name,
        .card:hover .university-details {
            color: #fff;
        }

        .student-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            filter: brightness(0.9);
        }

        .flag-circle {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .flag-circle img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* border: 1px solid #000; */
        }

        .info {
            padding: 16px;
        }

        .university-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 6px;
            color: #222;
        }

        .university-details {
            font-size: 14px;
            color: #555;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #642dde;
            color: white;
            border: none;
            font-size: 24px;
            padding: 10px 15px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }

        .nav-left {
            left: 10px;
        }

        .nav-right {
            right: 10px;
        }

        .nav-btn:hover {
            background: #8a4dff;
        }



        /* WhatsApp Icon - Desktop Only */
        .whtsapp_icon {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
            width: 40px;
            height: 40px;
            animation: bouncePulse 2.5s infinite;
            transition: transform 0.3s ease;
            background: #41c352;
            border-radius: 50%;
            padding: 6px;
            display: block;
            /* Show on desktop */
        }

        .whtsapp_icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .university_flag {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            /* border: 1px solid #000; */


        }

        .flag {
            position: absolute;
            right: 0;
            top: -30px;
            height: 50px;
            width: 50px;
            background-size: 100% 100%;
            background-position: center;
            /* border: 5px solid #000; */
            border-radius: 70px;
            /* border: 1px solid #000; */
            border: 1px solid #000;
        }

        .university_flag .img {
            width: 200px;
            /* border: 5px solid #000; */
            position: relative;
            /* border: 1px solid #000; */
        }

        .university_flag .img img {
            /* border: 1px solid #000; */
            width: 100%;
            /* border: 1px solid #000; */
        }


        /* Mobile Contact Buttons - Hidden on Desktop */
        .mobile-contact-buttons {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: none;
            /* Hidden on desktop */
            flex-direction: row;
            gap: 10px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid #e0e0e0;
        }

        .mobile-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .call-btn {
            background: #ffffff;
            color: #333333;
            border: 2px solid #e0e0e0;
        }

        .call-btn:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

        .chat-btn {
            background: #41c352;
            color: #ffffff;
        }

        .chat-btn:hover {
            background: #1e6e28;
            transform: translateY(-2px);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* Bounce Pulse Animation */
        @keyframes bouncePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        /* Media Queries */
        @media screen and (max-width: 768px) {

            /* Hide WhatsApp icon on mobile */
            .whtsapp_icon {
                display: none !important;
            }

            /* Show mobile buttons on mobile */
            .mobile-contact-buttons {
                display: flex !important;
            }
        }

        @media screen and (min-width: 769px) {

            /* Show WhatsApp icon on desktop */
            .whtsapp_icon {
                display: block !important;
            }

            /* Hide mobile buttons on desktop */
            .mobile-contact-buttons {
                display: none !important;
            }
        }

        /* Hover effect */
        .whtsapp_icon:hover {
            transform: scale(1.15) rotate(10deg);
        }

        /* Keyframes for bounce + pulse combo */
        @keyframes bouncePulse {

            0%,
            100% {
                transform: scale(1);
            }

            30% {
                transform: scale(1.1) translateY(-5px);
            }

            60% {
                transform: scale(0.95) translateY(0px);
            }

            80% {
                transform: scale(1.05) translateY(-3px);
            }
        }


        a.whtsapp_icon img {
            width: 100%;
        }

        a#call {
            left: 50px;
        }

        .Disclaimer {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e0f7fa, #ffffff);
            color: #333;
            line-height: 1.6;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
        }

        .Disclaimer .container {
            max-width: 80%;
            background: #fff;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease-in-out;
        }

        .Disclaimer h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--phd-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .Disclaimer p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .Disclaimer .highlight {
            background: var(--phd-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .Disclaimer ul {
            list-style-position: inside;
        }

        .Disclaimer ul li {
            font-size: 16px;
            line-height: 40px;
            border-bottom: 1px solid gray;
            padding: 5px 0;
        }

        .Disclaimer h2 {
            margin: 20px 0;
        }

        .footer_botm a {
            color: #adb5bd;
            text-decoration: none;
        }

        .footer_botm {
            text-align: center;
            margin-bottom: 20px;
        }

        .why_dba h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #222;
        }

        .why_dba table {
            width: 100%;
            max-width: 1000px;
            margin: auto;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }

        .why_dba thead {
            background: linear-gradient(135deg, #f6be32 0%, #642dde 100%);
            color: white;
        }

        .why_dba th {
            padding: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }

        .why_dba td {
            padding: 1.2rem;
            text-align: center;
            vertical-align: middle;
            font-size: 1rem;
            border-top: 1px solid #eaeaea;
        }

        .why_dba tr:hover td {
            background-color: #f0f8ff;
        }

        .why_dba .left-col {
            text-align: left;
            background-color: #f4f6f9;
            font-weight: 600;
            color: var(--phd-dark);
        }

        .why_dba .dba {
            background-color: #642dde47;
            color: var(--phd-dark);
        }

        .why_dba .phd {
            background-color: #f6be326e;
            color: var(--phd-dark);
        }

        @media (max-width: 768px) {

            .why_dba table,
            .why_dba thead,
            .why_dba tbody,
            .why_dba th,
            .why_dba td,
            .why_dba tr {
                display: block;
            }

            .why_dba thead {
                display: none;
            }

            .why_dba tr {
                margin-bottom: 1.5rem;
                border: 1px solid #ddd;
                border-radius: 10px;
                overflow: hidden;
            }

            .why_dba td {
                text-align: right;

                position: relative;
            }

            .why_dba td::before {
                content: attr(data-label);
                position: absolute;
                left: 1rem;
                width: 45%;
                padding-left: 1rem;
                font-weight: bold;
                text-align: left;
                color: #444;
            }
        }

        .footer-logo {
            background-color: #fff;
            width: fit-content;
            padding: 10px;
            border-radius: 10px;
        }

        .program_btn {
            text-align: center;
            margin: 0 0 40px 0;
        }

        .program_btn .btn {
            margin-top: 0;
        }

        @media screen and (max-width: 767px) {
            .hero-section {
                height: 100%;
                padding: 60px 10px;
            }


            .Disclaimer .container {
                padding: 25px;
                max-width: 100%;
            }

            .Disclaimer h1 {
                font-size: 2rem;
            }

            .hero-container {
                padding: 0;
            }

            .badge {
                margin: 10px 0;
            }

            .cta-buttons {
                display: flex;
                flex-direction: row;
                justify-content: center;
            }

            .cta-button {
                width: fit-content;
                padding: 10px 10px;
                font-weight: 300;
                text-transform: capitalize;
            }

            .nav-item {
                margin: 0 0;
            }

            .mega-menu-column {
                margin-bottom: 0;
                padding: 0;
            }

            .courses-grid {
                padding: 0;
            }

            .timing-calendar {
                right: 0;
            }

            .phd-features {
                margin: 0;
            }

            .courses-grid {
                flex-direction: row;

            }

            .program_btn {
                display: flex;
                flex-direction: row;
                gap: 15px;
                margin: -20px 20px 20px 20px;
            }
        }


        .edu-paynow-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .edu-paynow-header {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .edu-paynow-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: edu-float 20s linear infinite;
        }

        @keyframes edu-float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .edu-paynow-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .edu-paynow-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .edu-programs-section {
            padding: 80px 0;
            background: white;
        }

        .edu-section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1e293b;
            position: relative;
        }

        .edu-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            border-radius: 2px;
        }

        .edu-section-description {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .edu-programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .edu-program-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .edu-program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .edu-program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .edu-program-card:hover::before {
            transform: scaleX(1);
        }

        .edu-program-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            transition: transform 0.3s ease;
        }

        .edu-program-card:hover .edu-program-icon {
            transform: scale(1.1);
        }

        .edu-doctoral-icon {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .edu-master-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .edu-cert-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .edu-program-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .edu-program-description {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .edu-program-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .edu-program-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #475569;
        }

        .edu-program-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        .edu-select-program-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .edu-select-program-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .edu-select-program-btn:hover::before {
            left: 100%;
        }

        .edu-select-program-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

        .edu-payment-methods-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        .edu-payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .edu-payment-card {
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .edu-payment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .edu-payment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: #e2e8f0;
        }

        .edu-payment-card:hover::before {
            opacity: 0.05;
        }

        .edu-payment-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 0.3s ease;
        }

        .edu-payment-card:hover .edu-payment-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .edu-debit-card-icon {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
        }

        .edu-credit-card-icon {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .edu-banking-icon {
            background: linear-gradient(135deg, #10b981, #047857);
        }

        .edu-upi-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .edu-payment-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .edu-payment-description {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
        }

        .edu-security-section {
            padding: 80px 0;
            background: white;
        }

        .edu-security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .edu-security-card {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .edu-security-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .edu-security-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }

        .edu-security-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .edu-security-description {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
        }

        .edu-steps-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
        }

        .edu-steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .edu-step-card {
            background: white;
            border-radius: 14px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .edu-step-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .edu-step-number {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 15px;
            font-size: 0.9rem;
        }

        .edu-step-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .edu-step-description {
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.4;
        }

        .edu-support-section {
            padding: 80px 0;

        }

        .edu-support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .edu-support-card {
            background: #ded8fe;
            border-radius: 14px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .edu-support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .edu-support-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: white;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .edu-support-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e293b;
        }

        .edu-support-description {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.4;
        }

        .edu-cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #1e293b, #334155);
            text-align: center;
            color: white;
        }

        .edu-cta-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .edu-cta-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .edu-cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .edu-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .edu-paynow-title {
                font-size: 2rem;
            }

            .edu-section-title {
                font-size: 2rem;
            }

            .edu-programs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .edu-payment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .edu-steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .edu-payment-grid {
                grid-template-columns: 1fr;
            }

            .edu-steps-container {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth animations */
        .edu-fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: edu-fadeInUp 0.8s ease forwards;
        }

        @keyframes edu-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .edu-program-card,
        .edu-payment-card,
        .edu-security-card,
        .edu-step-card,
        .edu-support-card {
            animation: edu-fadeInUp 0.8s ease forwards;
        }

        .edu-program-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .edu-program-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .edu-payment-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .edu-payment-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .edu-payment-card:nth-child(4) {
            animation-delay: 0.3s;
        }



        /* Header Section */
        .contact-hero-section {
            background: linear-gradient(135deg, #14213d 0%, #2d5aa0 100%);
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(252,163,17,0.3)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(252,163,17,0.4)"/></svg>');
            animation: contact-bg-move 20s linear infinite;
        }

        @keyframes contact-bg-move {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100px);
            }
        }

        .contact-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: contact-slide-up 1s ease-out 0.3s forwards;
        }

        .contact-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: #e8eaf6;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: contact-slide-up 1s ease-out 0.6s forwards;
        }

        .contact-programs-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: contact-slide-up 1s ease-out 0.9s forwards;
        }

        .contact-programs-badges a {
            text-decoration: none;
        }

        .contact-program-badge {
            background: #fca311;
            color: #14213d;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .contact-program-badge:hover {
            background: #ffb84d;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(252, 163, 17, 0.4);
        }

        /* Main Container */
        .contact-main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Quick Contact Bar */
        .contact-quick-bar {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            overflow: hidden;
        }

        .contact-quick-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #14213d, #fca311, #14213d);
        }

        .contact-quick-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-quick-item:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .contact-quick-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #14213d, #2d5aa0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
        }

        .contact-quick-text h4 {
            color: #14213d;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-quick-text p {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .contact-quick-text a {
            text-decoration: none;
        }

        /* Two Column Layout */
        .contact-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        /* Contact Form */
        .contact-form-section {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
            transition: all 0.4s ease;
        }

        .contact-form-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(20, 33, 61, 0.15);
        }

        .contact-form-title {
            font-size: 2rem;
            color: #14213d;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .contact-form-description {
            color: #6c757d;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .contact-form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .contact-form-label {
            display: block;
            color: #14213d;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .contact-form-input,
        .contact-form-select,
        .contact-form-textarea {
            width: 100%;
            padding: 15px 20px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: #14213d;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .contact-form-input:focus,
        .contact-form-select:focus,
        .contact-form-textarea:focus {
            outline: none;
            border-color: #fca311;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.1);
            transform: translateY(-2px);
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form-submit {
            background: linear-gradient(135deg, #fca311, #ffb84d);
            color: #ffffff;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .contact-form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .contact-form-submit:hover::before {
            left: 100%;
        }

        .contact-form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(252, 163, 17, 0.4);
        }

        /* Contact Information */
        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-info-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
            transition: all 0.4s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(20, 33, 61, 0.15);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: #f8f9fa;
            transform: translateX(10px);
        }

        .contact-info-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #14213d, #2d5aa0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.1rem;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover .contact-info-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .contact-info-text h4 {
            color: #14213d;
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-info-text p {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .contact-info-text a {
            text-decoration: none;
        }

        /* Office Hours Section */
        .contact-hours-section {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
            text-align: center;
        }

        .contact-hours-title {
            font-size: 1.8rem;
            color: #14213d;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .contact-hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .contact-hours-item {
            padding: 20px;
            background: #e3e3e3;
            border-radius: 10px;
            border-left: 4px solid #fca311;
            transition: all 0.3s ease;
        }

        .contact-hours-item:hover {
            background: #e9ecef;
            transform: translateY(-3px);
        }

        .contact-hours-day {
            font-weight: 600;
            color: #14213d;
            margin-bottom: 5px;
        }

        .contact-hours-time {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .contact-faq-section {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
        }

        .contact-faq-title {
            font-size: 2rem;
            color: #14213d;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .contact-faq-item {
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-faq-item:hover {
            background: #f8f9fa;
            padding-left: 20px;
            border-radius: 8px;
        }

        .contact-faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #14213d;
            font-size: 1.1rem;
        }

        .contact-faq-answer {
            color: #6c757d;
            margin-top: 15px;
            line-height: 1.6;
            display: none;
        }

        .contact-faq-item.active .contact-faq-answer {
            display: block;
        }

        .contact-faq-icon {
            transition: transform 0.3s ease;
        }

        .contact-faq-item.active .contact-faq-icon {
            transform: rotate(180deg);
        }

        /* Social Media Section */
        .contact-social-section {
            background: linear-gradient(135deg, #14213d, #2d5aa0);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            color: #ffffff;
            margin-bottom: 40px;
        }

        .contact-social-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-social-subtitle {
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .contact-social-link:hover {
            background: #fca311;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(252, 163, 17, 0.4);
        }

        /* Campus Locations */
        .contact-locations-section {
            margin-bottom: 40px;
        }

        .contact-locations-title {
            font-size: 2rem;
            color: #14213d;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .contact-locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-location-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(20, 33, 61, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #fca311, #ffb84d);
        }

        .contact-location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(20, 33, 61, 0.2);
        }

        .contact-location-title {
            font-size: 1.3rem;
            color: #14213d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-location-address {
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .contact-location-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-location-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .contact-location-detail i {
            color: #fca311;
            width: 16px;
        }

        /* Floating Action Button */
        .contact-floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fca311, #ffb84d);
            border: none;
            border-radius: 50%;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(252, 163, 17, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: contact-pulse 2s infinite;
        }

        .contact-floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(252, 163, 17, 0.4);
        }

        @keyframes contact-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(252, 163, 17, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(252, 163, 17, 0);
            }
        }

        /* Animations */
        @keyframes contact-slide-up {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-quick-bar {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .contact-hero-section {
                padding: 60px 20px 40px;
            }

            .contact-main-container {
                padding: 40px 15px;
            }

            .contact-programs-badges {
                gap: 10px;
            }

            .contact-program-badge {
                font-size: 0.85rem;
                padding: 8px 16px;
            }

            .contact-form-section,
            .contact-info-card,
            .contact-hours-section,
            .contact-faq-section,
            .contact-social-section {
                padding: 25px;
            }

            .contact-locations-grid {
                grid-template-columns: 1fr;
            }

            .contact-floating-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-hero-section {
                padding: 50px 15px 30px;
            }

            .contact-main-container {
                padding: 30px 10px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .contact-form-input:focus,
        .contact-form-select:focus,
        .contact-form-textarea:focus,
        .contact-form-submit:focus,
        .contact-floating-btn:focus {
            outline: 2px solid #fca311;
            outline-offset: 2px;
        }







        :root {
            --accent: #ffc107;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ff9800;
            --danger: #dc3545;
            --primary: #14213d;
            --secondary: #fca311;
            --light: #e5e5e5;
            --dark: #000000;
            --white: #ffffff;
            /* Enhanced premium palette */
            --primary-dark: #002244;
            --primary-light: #1a4d80;
            --secondary-light: #3385d6;
            --accent-dark: #e6ac00;
            --premium-gold: #d4af37;
            --premium-silver: #c0c0c0;
            --premium-gradient: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
            --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            --card-border-radius: 12px;
            --transition-timing: cubic-bezier(0.7, 0, 0.3, 1);

            --main-color: #642dde;
            --hover-color: #f6be32;
            --bg-color: #040404;
            --dark-color: #14213d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Header Section */
        .edu-hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .edu-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .edu-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .edu-hero-title {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: eduFadeInUp 1s ease forwards;
        }

        .edu-hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: eduFadeInUp 1s ease 0.3s forwards;
        }

        /* Animations */
        @keyframes eduFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes eduPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Scroll Animation */
        .edu-animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .edu-animate-on-scroll.edu-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .programs-about-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
            padding: 40px 20px;
        }

        /* Hero Section */
        .programs-hero-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .programs-hero-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            animation: programs-fadeIn 1s ease-out;
        }

        .programs-hero-subtitle {
            font-size: 1.1rem;
            color: var(--primary-light);
            margin-bottom: 30px;
            animation: programs-fadeIn 1s ease-out 0.2s both;
        }

        @keyframes programs-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Programs Grid */
        .programs-grid-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .programs-card {
            background: var(--white);
            border-radius: var(--card-border-radius);
            padding: 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s var(--transition-timing);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .programs-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            transition: left 0.4s ease;
        }

        .programs-doctoral-card::before {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .programs-masters-card::before {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .programs-certification-card::before {
            background: linear-gradient(90deg, var(--success), var(--info));
        }

        .programs-card:hover::before {
            left: 0;
        }

        .programs-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--premium-gold);
        }

        .programs-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .programs-doctoral-card .programs-card-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }

        .programs-masters-card .programs-card-icon {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        .programs-certification-card .programs-card-icon {
            background: linear-gradient(135deg, var(--success), var(--info));
        }

        .programs-card:hover .programs-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .programs-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .programs-card:hover .programs-card-title {
            color: var(--primary-dark);
        }

        .programs-card-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .programs-card-highlights {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }

        .programs-highlight-item {
            text-align: center;
            flex: 1;
        }

        .programs-highlight-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--premium-gold);
            display: block;
        }

        .programs-highlight-label {
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .programs-cta-button {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .programs-masters-card .programs-cta-button {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        .programs-certification-card .programs-cta-button {
            background: linear-gradient(135deg, var(--success), var(--info));
        }

        .programs-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Stats Section */
        .programs-stats-section {
            background: var(--primary);
            border-radius: var(--card-border-radius);
            padding: 40px 20px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }

        .programs-stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(252, 163, 17, 0.1) 0%, transparent 60%);
        }

        .programs-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .programs-stat-item {
            color: var(--white);
        }

        .programs-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--premium-gold);
            display: block;
            margin-bottom: 5px;
        }

        .programs-stat-label {
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .programs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .programs-about-wrapper {
                padding: 30px 15px;
            }

            .programs-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .programs-card {
                padding: 20px 15px;
            }

            .edu-hero-title {
                font-size: 24px;
            }



            .programs-stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* About Page Specific Styles - Unique Prefix: aboutpage- */
        :root {
            --aboutpage-primary: #14213d;
            --aboutpage-secondary: #fca311;
            --aboutpage-accent: #e63946;
            --aboutpage-success: #2a9d8f;
            --aboutpage-info: #264653;
            --aboutpage-light: #f1faee;
            --aboutpage-dark: #1d3557;
            --aboutpage-white: #ffffff;
            --aboutpage-gradient-primary: linear-gradient(135deg, #14213d 0%, #1a4d80 50%, #264653 100%);
            --aboutpage-gradient-secondary: linear-gradient(135deg, #fca311 0%, #f77f00 50%, #fcbf49 100%);
            --aboutpage-gradient-accent: linear-gradient(135deg, #e63946 0%, #f72585 50%, #b5179e 100%);
            --aboutpage-shadow-light: 0 4px 20px rgba(20, 33, 61, 0.1);
            --aboutpage-shadow-medium: 0 8px 30px rgba(20, 33, 61, 0.15);
            --aboutpage-shadow-heavy: 0 15px 40px rgba(20, 33, 61, 0.2);
            --aboutpage-border-radius: 16px;
            --aboutpage-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }



        /* Hero Section */
        .aboutpage-hero {
            background: var(--aboutpage-gradient-primary);
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .aboutpage-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(252, 163, 17, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
            animation: aboutpage-float 6s ease-in-out infinite;
        }

        @keyframes aboutpage-float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .aboutpage-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .aboutpage-hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--aboutpage-white);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(-50px);
            animation: aboutpage-slideInLeft 1s ease-out 0.3s forwards;
        }

        .aboutpage-hero-text p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateX(-50px);
            animation: aboutpage-slideInLeft 1s ease-out 0.6s forwards;
        }

        .aboutpage-hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(50px);
            animation: aboutpage-slideInRight 1s ease-out 0.9s forwards;
        }

        .aboutpage-hero-circle {
            width: 300px;
            height: 300px;
            background: var(--aboutpage-gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: aboutpage-rotate 20s linear infinite;
            box-shadow: var(--aboutpage-shadow-heavy);
        }

        .aboutpage-hero-circle::before {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--aboutpage-white);
            animation: aboutpage-rotate 15s linear infinite reverse;
        }

        .aboutpage-hero-icon {
            font-size: 4rem;
            color: var(--aboutpage-white);
            z-index: 2;
        }

        @keyframes aboutpage-slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutpage-slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutpage-rotate {
            to {
                transform: rotate(360deg);
            }
        }

        /* Mission Section */
        .aboutpage-mission {
            padding: 80px 20px;
            background: var(--aboutpage-light);
        }

        .aboutpage-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .aboutpage-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .aboutpage-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--aboutpage-primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .aboutpage-section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--aboutpage-gradient-secondary);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-section-title.aboutpage-animate::after {
            width: 100%;
            left: 0;
        }

        .aboutpage-mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .aboutpage-mission-card {
            background: var(--aboutpage-white);
            padding: 40px 30px;
            border-radius: var(--aboutpage-border-radius);
            box-shadow: var(--aboutpage-shadow-light);
            transition: var(--aboutpage-transition);
            position: relative;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
        }

        .aboutpage-mission-card.aboutpage-animate {
            transform: translateY(0);
            opacity: 1;
        }

        .aboutpage-mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: var(--aboutpage-gradient-secondary);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-mission-card:hover::before {
            left: 0;
        }

        .aboutpage-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--aboutpage-shadow-heavy);
        }

        .aboutpage-mission-icon {
            width: 70px;
            height: 70px;
            background: var(--aboutpage-gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--aboutpage-white);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-mission-card:hover .aboutpage-mission-icon {
            transform: scale(1.1) rotate(10deg);
        }

        /* Values Section */
        .aboutpage-values {
            padding: 80px 20px;
            background: var(--aboutpage-white);
        }

        .aboutpage-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .aboutpage-value-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: var(--aboutpage-border-radius);
            border: 2px solid #fca311;
            transition: var(--aboutpage-transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .aboutpage-value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--aboutpage-gradient-accent);
            opacity: 0;
            transition: var(--aboutpage-transition);
            z-index: 1;
        }

        .aboutpage-value-item:hover::before {
            opacity: 0.1;
        }

        .aboutpage-value-item>* {
            position: relative;
            z-index: 2;
        }

        .aboutpage-value-number {
            width: 60px;
            height: 60px;
            background: var(--aboutpage-gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--aboutpage-white);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-value-item:hover .aboutpage-value-number {
            transform: scale(1.2);
        }

        /* Team Section */
        .aboutpage-team {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--aboutpage-light) 0%, var(--aboutpage-white) 100%);
        }

        .aboutpage-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .aboutpage-team-card {
            background: var(--aboutpage-white);
            border-radius: var(--aboutpage-border-radius);
            overflow: hidden;
            box-shadow: var(--aboutpage-shadow-light);
            transition: var(--aboutpage-transition);
            position: relative;
        }

        .aboutpage-team-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--aboutpage-shadow-heavy);
        }

        .aboutpage-team-image {
            width: 100%;
            height: 250px;
            background: var(--aboutpage-gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--aboutpage-white);
            position: relative;
            overflow: hidden;
        }

        .aboutpage-team-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-team-card:hover .aboutpage-team-image::before {
            left: 100%;
        }

        .aboutpage-team-info {
            text-align: center;
            padding: 25px;
        }

        .aboutpage-team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .aboutpage-social-link {
            width: 40px;
            height: 40px;
            background: var(--aboutpage-gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--aboutpage-white);
            text-decoration: none;
            transition: var(--aboutpage-transition);
        }

        .aboutpage-social-link:hover {
            transform: translateY(-3px) scale(1.1);
        }

        /* Stats Section */
        .aboutpage-stats {
            padding: 80px 20px;
            background: var(--aboutpage-gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .aboutpage-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .aboutpage-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .aboutpage-stat-item {
            text-align: center;
            color: var(--aboutpage-white);
            padding: 20px;
        }

        .aboutpage-stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: var(--aboutpage-gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            animation: aboutpage-countUp 2s ease-out;
        }

        @keyframes aboutpage-countUp {
            from {
                transform: scale(0.5);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Timeline Section */
        .aboutpage-timeline {
            padding: 80px 20px;
            background: var(--aboutpage-light);
        }

        .aboutpage-timeline-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .aboutpage-timeline-line {
            position: absolute;
            left: 8%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--aboutpage-gradient-secondary);
            transform: translateX(-50%);
        }

        .aboutpage-timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .aboutpage-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .aboutpage-timeline-content {
            flex: 1;
            padding: 30px 30px 30px 80px;
            background: var(--aboutpage-white);
            border-radius: var(--aboutpage-border-radius);
            box-shadow: var(--aboutpage-shadow-light);
            margin: 0 30px;
            position: relative;
            transition: var(--aboutpage-transition);
        }

        .aboutpage-timeline-content:hover {
            transform: scale(1.02);
            box-shadow: var(--aboutpage-shadow-medium);
        }

        .aboutpage-timeline-dot {
            position: absolute;
            left: 8%;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--aboutpage-gradient-secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            animation: aboutpage-pulse 2s infinite;
        }

        @keyframes aboutpage-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(252, 163, 17, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(252, 163, 17, 0);
            }
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .edu-hero-subtitle {
                font-size: 14px;
            }

            .aboutpage-hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .aboutpage-hero-circle {
                width: 200px;
                height: 200px;
            }

            .aboutpage-timeline-line {
                left: 20px;
            }

            .aboutpage-timeline-item {
                flex-direction: row !important;
            }

            .aboutpage-timeline-content {
                padding: 30px 30px 30px 60px;
                margin-left: -5px;
                margin-right: 0;
            }

            .aboutpage-timeline-dot {
                left: 20px;
            }

            .aboutpage-section-title {
                font-size: 2rem;
            }
        }

        /* Scroll Animations */
        .aboutpage-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-fade-in.aboutpage-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .aboutpage-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-slide-left.aboutpage-animate {
            opacity: 1;
            transform: translateX(0);
        }

        .aboutpage-slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: var(--aboutpage-transition);
        }

        .aboutpage-slide-right.aboutpage-animate {
            opacity: 1;
            transform: translateX(0);
        }

        section.Universities {
            padding: 50px;
        }

        .section {
            padding: auto;
        }

        .xyz-skill-academy-wrapper {
            background: linear-gradient(160deg, #fdcb6e 0%, #e17055 25%, #6c5ce7 75%, #a29bfe 100%);
            padding: 2rem 1rem;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .xyz-skill-academy-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
        }

        .xyz-content-container {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .xyz-hero-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .xyz-main-heading {
            font-size: 2.5rem;
            font-weight: 900;
            color: #6c5ce7;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(108, 92, 231, 0.1);
            letter-spacing: -1px;
        }

        .xyz-sub-heading {
            font-size: 1rem;
            color: #2d3436;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .xyz-decorative-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fdcb6e, #e17055);
            margin: 0 auto;
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(253, 203, 110, 0.4);
        }

        .xyz-tools-timeline {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .xyz-timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #6c5ce7, #a29bfe, #fdcb6e, #e17055);
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 1;
        }

        .xyz-tool-timeline-item {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .xyz-tool-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .xyz-tool-content-card {
            width: 46%;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.12);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 5;
        }

        .xyz-tool-content-card::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6c5ce7, #fdcb6e);
            border-radius: 12px;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .xyz-tool-content-card:hover::before {
            opacity: 1;
        }

        .xyz-tool-content-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
        }

        .xyz-timeline-connector {
            width: 8%;
            height: 2px;
            background: linear-gradient(90deg, #6c5ce7, #fdcb6e);
            position: relative;
            flex-shrink: 0;
        }

        .xyz-timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(253, 203, 110, 0.4);
            z-index: 3;
        }

        .xyz-tool-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            position: relative;
            z-index: 10;
        }

        .xyz-tool-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #2d3436;
            margin: 0;
            position: relative;
            z-index: 10;
        }

        .xyz-tool-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
            position: relative;
            z-index: 10;
        }

        .xyz-skills-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.8rem;
            position: relative;
            z-index: 10;
        }

        .xyz-skill-badge {
            background: linear-gradient(135deg, #f8f9ff, #e8eaff);
            border: 2px solid #6c5ce7;
            border-radius: 15px;
            padding: 0.6rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .xyz-skill-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .xyz-skill-badge:hover::before {
            left: 100%;
        }

        .xyz-skill-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
            border-color: #fdcb6e;
        }

        .xyz-skill-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2d3436;
            position: relative;
            z-index: 1;
        }

        .xyz-skill-highlight {
            color: #6c5ce7;
            font-weight: 700;
        }

        @media (max-width: 1024px) {
            .xyz-timeline-line {
                left: 30px;
            }

            .xyz-tool-timeline-item {
                flex-direction: row !important;
                padding-left: 80px;
            }

            .xyz-tool-content-card {
                width: 100%;
            }

            .xyz-timeline-connector {
                width: 50px;
                position: absolute;
                left: 30px;
            }

            .xyz-timeline-dot {
                left: 30px;
                transform: translate(-50%, -50%);
            }
        }

        @media (max-width: 768px) {
            .xyz-skill-academy-wrapper {
                padding: 3rem 1rem;
            }

            .xyz-main-heading {
                font-size: 2.8rem;
            }

            .xyz-tool-content-card {
                padding: 2rem;
            }

            .xyz-tool-title {
                font-size: 1.8rem;
            }

            .xyz-tool-number {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }

            .xyz-skills-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .xyz-main-heading {
                font-size: 2.2rem;
            }

            .xyz-sub-heading {
                font-size: 1.1rem;
            }

            .xyz-tool-timeline-item {
                padding-left: 60px;
            }
        }

        .learning-hub {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
            padding: 4rem 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hub-header {
            text-align: center;
            margin-bottom: 3rem;
            max-width: 800px;
        }

        .hub-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .hub-subtitle {
            font-size: 1.2rem;
            color: #2d3436;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .hub-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fdcb6e, #e17055);
            margin: 1.5rem auto;
            border-radius: 2px;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
        }

        .tool-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 92, 231, 0.1);
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
            border-color: rgba(108, 92, 231, 0.3);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6c5ce7, #a29bfe);
        }

        .tool-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .tool-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d3436;
            margin: 0;
        }

        .tool-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 4px 12px rgba(253, 203, 110, 0.3);
        }

        .skills-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .skill-item {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f2f6;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .skill-item:last-child {
            border-bottom: none;
        }

        .skill-bullet {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            margin-top: 0.5rem;
            flex-shrink: 0;
        }

        .skill-text {
            font-size: 1rem;
            color: #636e72;
            line-height: 1.6;
            font-weight: 500;
        }

        .highlight {
            color: #6c5ce7;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            section.Universities {
                padding: 10px;
            }

            .university-cards-wrapper {
                width: 50% !important;
            }

            .learning-hub {
                padding: 2rem 1rem;
            }

            .hub-title {
                font-size: 2.5rem;
            }

            .tools-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tool-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {

            .hub-title {
                font-size: 2rem;
            }

            .hub-subtitle {
                font-size: 1rem;
            }

            .tool-title {
                font-size: 1.5rem;
            }
        }

        .ekjhjfdchyfsxdhj {
            display: flex;
            flex-wrap: wrap;
        }

        .university-cards-wrapper {
            flex: 0 0 auto;
            width: 16.6%;

        }

        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-radius: 12px;
            padding: 10px;
            background: #f1faee;
            box-shadow: 0 14px 10px rgba(0, 0, 0, 0.13);
            max-width: 220px;
        }

        .card-hover:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background-color: #eef2f5;
        }

        .card-hover img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .kkk {
            text-align: center;
        }


        .partners-section {
            padding: 40px 30px;
            /* Reduced from 60px to 30px */
            background-color: #fff;
            text-align: center;
        }

        .partners-section h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #000;
        }

        .partners-section p {
            color: #16876D;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .logo-marquee {
            margin-bottom: 20px;
            overflow: hidden;
            white-space: nowrap;
        }

        .logo-track {
            display: inline-flex;
            gap: 50px;
            align-items: center;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        /* Right scrolling animation - seamless loop */
        .row-one .logo-track,
        .row-three .logo-track {
            animation-name: scrollRight;
            animation-duration: 20s;
        }

        /* Left scrolling animation - seamless loop */
        .row-two .logo-track,
        .row-four .logo-track {
            animation-name: scrollLeft;
            animation-duration: 20s;
        }

        @keyframes scrollRight {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        .logo-track img {
            height: 90px;
            max-width: 120px;
            object-fit: contain;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo-track img:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 30px 20px;
            }

            .logo-track {
                gap: 30px;
            }

            .logo-track img {
                height: 35px;
                max-width: 90px;
            }

            /* Faster animation on mobile */
            .row-one .logo-track,
            .row-three .logo-track,
            .row-two .logo-track,
            .row-four .logo-track {
                animation-duration: 15s;
            }
        }


        /* Unique class for the main container */
        .tools-section-unique {
            font-family: Arial, sans-serif;
            padding: 40px 20px;
            background-color: #f8f8f8;
            /* Light background similar to the image */
            text-align: center;
        }

        /* Unique class for the heading */

        /* Unique class for the logos container */
        .tools-grid-unique {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            /* Adjust card size */
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        /* Unique class for individual tool cards */
        .tool-card-unique {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            /* Fixed height for consistent cards */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* Smooth transition for hover */
            cursor: pointer;
        }

        /* Hover effect for tool cards */
        .tool-card-unique:hover {
            transform: translateY(-5px) scale(1.05);
            /* Lifts and scales up */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            /* Enhanced shadow */
        }

        /* Unique class for the image inside the card */
        .tool-logo-unique {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* Ensures the entire logo is visible */
        }

        /* Media queries for responsiveness */
        @media (max-width: 768px) {
            .tools-heading-unique {
                font-size: 2em;
            }

            .tools-grid-unique {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }

            .tool-card-unique {
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            .tools-heading-unique {
                font-size: 1.8em;
            }

            .tools-grid-unique {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 10px;
            }

            .tool-card-unique {
                height: 70px;
            }
        }

        .read-more-button {
            display: inline-block;
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, color 0.3s ease;
            margin-right: 15px;
            /* Add some space between buttons */
            font-family: Arial, sans-serif;
            /* Set a font for consistency */
        }

        /* Read More for Advanced Excel */
        .read-more-excel {
            text-align: center;
            color: #642dde;
            /* Dark purple from the Excel card's text */
            background-color: white;
            /* Light purple from the Excel card's background */
            border: 1px solid #5B4E7A;
            /* Border to match the text color */
            margin-left: 350px;
        }

        .read-more-excel:hover {
            background-color: #642dde;
            /* Dark purple on hover */
            color: #E6E1F4;
            /* Light purple text on hover */
        }


        .jbjgjchtc {
            color: #000;
        }

        .country-dropdown {
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 14px;
            margin-left: 20px;
            background-color: #fff;
            cursor: pointer;
        }

        .country-select {
            display: flex;
            align-items: center;
        }

        .country-dropdown {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="10" width="10" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 20,0 10,10"/></svg>');
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 10px;
            padding-right: 30px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 14px;
            padding: 5px 25px 5px 5px;
        }

        