  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #002e5e;
            --secondary-color: #e95420;
            --bg-light: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: #ffffff;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo::before {
            content: "ðŸŽ“";
            font-size: 2rem;
        }

        .btn {
            background: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background: #e69515;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 169, 23, 0.4);
        }

        .btn-primary {
            background: var(--primary-color);
        }

        .btn-primary:hover {
            background: #001d3d;
            box-shadow: 0 5px 15px rgba(0, 46, 94, 0.4);
        }

        /* Hero Section */
         .hero-section {
            background: url("../images/op3.jpg") center/cover no-repeat;
            min-height: 100 dvh;
            position: relative;
            overflow: hidden;
        }

       /* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust darkness (0.4–0.7) */
    z-index: 1;
}


        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-header {
            text-align: center;
            padding: 40px 0 10px;
            color: white;
        }

        .university-logos-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .logo-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
            transition: all 0.3s ease;
        }

        .logo-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .logo-card .mini-logo img {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 8px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

       
        

        .logo-card .mini-name {
            font-size: 0.9rem;
            font-weight: bold;
            color: white;
            text-align: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .scholarship-notice {
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            padding: 15px 25px;
            margin: 10px auto 30px;
            max-width: 600px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .scholarship-notice h3 {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .scholarship-notice p {
            color: white;
            font-size: 0.95rem;
        }

        /* Logo Cards Styling */

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .university-logos-row {
                gap: 15px;
            }
            
            .logo-card {
                min-width: 100px;
                padding: 12px 15px;
            }
            
            .logo-card .mini-logo img {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
               
            }
            
            .logo-card .mini-name {
                font-size: 0.7rem;
                margin-top:10px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .hero-header {
                padding: 40px 0 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.7rem;
            }
            
            .university-logos-row {
                gap: 10px;
            }
            
            .logo-card {
                min-width: 80px;
                padding: 10px 12px;
            }
            
            .logo-card .mini-logo {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .logo-card .mini-name {
                font-size: 0.7rem;
            }
            
            .scholarship-notice {
                padding: 12px 20px;
                margin: 20px auto 30px;
            }
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
            font-weight: 700;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        /* College Cards */
        .colleges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .college-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .college-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .card-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: left 0.5s ease;
        }

        .college-card:hover .card-image::before {
            left: 100%;
        }

        .card-content {
            padding: 2rem;
        }

        .college-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .accreditation {
            display: inline-block;
            /*background: var(--secondary-color);*/
            color: var(--secondary-color);
            padding: 2px 0px;
            /*border-radius: 20px;*/
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .fee{
            font-size: 1rem;
            font-weight: 600;
        }

        .courses {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .course-item {
            display: inline-block;
            background: var(--bg-light);
            padding: 4px 8px;
            margin: 2px;
            border-radius: 15px;
            font-size: 0.85rem;
            color: var(--primary-color);
            border: 1px solid #e9ecef;
        }

        .card-buttons {
            display: flex;
            gap: 1rem;
            justify-content: space-between;
        }

        .card-buttons .btn {
            flex: 1;
            padding: 10px 20px;
            font-size: 0.9rem;
            text-align: center;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }

            .logo {
                font-size: 1.1rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .main-content {
                padding: 60px 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .colleges-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .card-buttons {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .colleges-grid {
                grid-template-columns: 1fr;
            }

            .card-content {
                padding: 1.5rem;
            }

            .college-name {
                font-size: 1.3rem;
            }
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }