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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8edf4 100%);
            color: #1a1a1a;
            line-height: 1.4;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background particles */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 30%, rgba(26,77,140,0.03) 0%, transparent 50%),
                              radial-gradient(circle at 80% 70%, rgba(198,40,40,0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        /* Floating particles animation */
        .particle {
            position: fixed;
            background: rgba(26,77,140,0.08);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: floatParticle 12s ease-in-out infinite;
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            20% {
                opacity: 0.6;
            }
            80% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-200px) translateX(50px);
                opacity: 0;
            }
        }

        /* Hero section - Full width animated gradient */
.hero-section {
    position: relative;
    padding: 3rem 5%;
    background: linear-gradient(135deg, #1a4d8c 0%, #0f3a6b 25%, #c62828 50%, #1a4d8c 75%, #0f3a6b 100%);
    background-size: 300% 300%;
    animation: heroGradientShift 10s ease infinite;
    border-bottom: 3px solid #ffc107;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated overlay pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseOverlay 4s ease infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Content container - centered */
.content-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Brand wrapper - centered */
.brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Logo styling */
.logo-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    box-shadow: 0 12px 18px -8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* College title - centered */
.college-title {
    text-align: center;
}

.college-title h1 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Typing cursor */
/* .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 2.2rem;
    background-color: #ffc107;
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
} */

/* Tagline */
.tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero quote */
.hero-quote {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    border-left: 3px solid #ffc107;
    padding-left: 0.8rem;
    display: inline-block;
    text-align: left;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-quote {
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 5%;
    }
    
    .college-title h1 {
        font-size: 1.6rem;
    }
    
    .logo-emblem {
        width: 60px;
        height: 60px;
    }
    
    .typing-cursor {
        height: 1.8rem;
    }
}

@media (max-width: 480px) {
    .brand-wrapper {
        flex-direction: column;
    }
    
    .college-title h1 {
        font-size: 1.4rem;
    }
    
    .hero-quote {
        font-size: 0.75rem;
    }
}

        /* Container for content - no card, max width only */
        .content-container {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Logo + College Name area */
        .brand-wrapper {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .logo-emblem {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            width: 85px;
            height: 85px;
            border-radius: 50%;
            box-shadow: 0 12px 18px -8px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            overflow: hidden;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .logo-emblem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .logo-emblem:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 25px -10px rgba(0,0,0,0.4);
        }

        .logo-emblem:hover img {
            transform: scale(1.08);
        }

        .college-title h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            min-height: 70px;
        }

        /* Typing cursor */
        /* .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 2.2rem;
            background-color: #ffc107;
            margin-left: 5px;
            vertical-align: middle;
            animation: blink 0.7s step-end infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        } */

        .college-title .tagline {
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
            letter-spacing: 0.3px;
            margin-top: 0.3rem;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: fadeInRight 0.8s ease-out 0.5s backwards;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .college-title .tagline i {
            font-size: 0.8rem;
            color: #ffc107;
        }

        .hero-quote {
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.85);
            border-left: 3px solid #ffc107;
            padding-left: 0.8rem;
            animation: fadeInUp 0.8s ease-out 0.7s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-quote i {
            color: #ffc107;
            margin-right: 0.3rem;
        }

        /* Main content area - no card, just fluid */
        .content-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            padding: 3rem 5%;
            background: transparent;
            max-width: 1280px;
            margin: 0 auto;
        }

        .info-text {
            flex: 1.2;
            min-width: 240px;
            animation: fadeInLeft 0.8s ease-out 0.3s backwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-text h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0a2f44;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .info-text h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #c62828, #ffc107);
            border-radius: 3px;
            animation: lineGrow 0.8s ease-out 0.6s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        @keyframes lineGrow {
            to {
                transform: scaleX(1);
            }
        }

        .highlight {
            color: #c62828;
            background: linear-gradient(120deg, #fef0f0, #fff5f5);
            padding: 0 0.2rem;
            border-radius: 8px;
            display: inline-block;
        }

        .info-text p {
            font-size: 1.08rem;
            color: #2c3e4e;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-weight: 400;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            font-weight: 500;
            background: rgba(255,255,255,0.9);
            padding: 0.6rem 1rem;
            border-radius: 60px;
            width: fit-content;
            border: 1px solid rgba(26,77,140,0.15);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInFeature 0.5s ease forwards;
            backdrop-filter: blur(5px);
        }

        .feature-item:nth-child(1) { animation-delay: 0.4s; }
        .feature-item:nth-child(2) { animation-delay: 0.5s; }
        .feature-item:nth-child(3) { animation-delay: 0.6s; }
        .feature-item:nth-child(4) { animation-delay: 0.7s; }

        @keyframes slideInFeature {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-item:hover {
            transform: translateX(8px);
            background: #ffffff;
            border-color: #c62828;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .feature-item i {
            color: #c62828;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-item:hover i {
            transform: scale(1.1);
        }

        /* Buttons area - no card */
        .buttons-area {
            flex: 0.9;
            min-width: 260px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            background: transparent;
            padding: 1rem 0;
            animation: fadeInRight 0.8s ease-out 0.4s backwards;
        }

        .btn-card {
            text-align: center;
            transition: all 0.3s ease;
        }

        .btn-card:hover {
            transform: translateY(-3px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 1rem 2rem;
            border-radius: 60px;
            width: 100%;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
            letter-spacing: 0.3px;
            border: none;
            position: relative;
            overflow: hidden;
        }

        /* Ripple effect */
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:active::after {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: #c62828;
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 10px 20px -8px rgba(198,40,40,0.4);
        }

        .btn-primary i {
            font-size: 1.3rem;
            transition: transform 0.2s;
        }

        .btn-primary:hover {
            background: #8b0000;
            transform: translateY(-4px);
            box-shadow: 0 20px 28px -12px rgba(198,40,40,0.5);
        }

        .btn-primary:hover i {
            transform: translateX(5px);
        }

        .btn-secondary {
            background: linear-gradient(105deg, #1a4d8c, #0f3a6b);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 10px 20px -8px rgba(26,77,140,0.4);
        }

        .btn-secondary i {
            font-size: 1.25rem;
            transition: transform 0.2s;
        }

        .btn-secondary:hover {
            background: linear-gradient(105deg, #0f3a6b, #0a2f44);
            transform: translateY(-3px);
            box-shadow: 0 16px 24px -12px rgba(26,77,140,0.5);
        }

        .btn-secondary:hover i {
            transform: translateX(5px);
        }

        .btn-caption {
            font-size: 0.75rem;
            color: #6c86a3;
            margin-top: 0.6rem;
            display: inline-block;
            background: rgba(248,249,252,0.9);
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-card:hover .btn-caption {
            background: #e8edf4;
            color: #1a4d8c;
        }

        /* Footer - no card, full width */
        .footer-note {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1.5rem 5%;
            border-top: 2px solid #c62828;
            font-size: 0.8rem;
            color: #aaa;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-note::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c62828, #ffc107, #1a4d8c, transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .footer-note p {
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .footer-note:hover p {
            color: #ffc107;
        }

        /* Responsive */
        @media (max-width: 800px) {
            .hero-section {
                padding: 2rem 5%;
            }
            .content-grid {
                padding: 2rem 5%;
                flex-direction: column;
                gap: 2rem;
            }
            .buttons-area {
                padding: 1rem 0;
            }
            .college-title h1 {
                font-size: 1.6rem;
            }
            .logo-emblem {
                width: 60px;
                height: 60px;
            }
            .btn {
                font-size: 1rem;
                padding: 0.85rem 1.5rem;
            }
            .typing-cursor {
                height: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .brand-wrapper {
                flex-direction: column;
                align-items: flex-start;
            }
            .info-text h2 {
                font-size: 1.5rem;
            }
            .college-title h1 {
                font-size: 1.4rem;
            }
        }