:root {
            --primary: #2c5f8b;
            --secondary: #dd8500;
            --accent: #a0244e;
            --light: #f8f9fa;
            --dark: #212529;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .header {
            text-align: center;
            padding: 40px 0 20px;
            background: var(--gradient);
            color: white;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            padding-bottom: 80px;
            margin-bottom: -40px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('photo-1523050854058-8df90110c9f1.avif') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
        }
        
        .logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
            transition: var(--transition);
        }
        
        .logo:hover {
            transform: scale(1.05) rotate(-5deg);
        }
        
        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 600;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Branches Section */
        .branches-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        
        .branches-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .branch {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .branch:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .branch-image {
            height: 200px;
            overflow: hidden;
        }
        
        .branch-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .branch:hover .branch-image img {
            transform: scale(1.1);
        }
        
        .branch-content {
            padding: 25px;
            text-align: center;
        }
        
        .branch-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: -60px auto 20px;
            display: block;
            background: white;
            border-radius: 50%;
            padding: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .branch-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .branch-affiliation {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .branch-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background: var(--secondary);
        }
        
        .btn-secondary:hover {
            color: var(--secondary);
            border-color: var(--secondary);
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            right: 30px;
            bottom: 100px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: -100%;
            transform: skewX(-30deg);
            transition: var(--transition);
        }
        
        .floating-btn:hover::after {
            left: 120%;
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .admission-btn {
            background: var(--accent);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            width: auto;
            height: auto;
            padding: 20px 10px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .admission-btn i {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        .footer p {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .branch {
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
        }
        
        .branch:nth-child(1) { animation-delay: 0.1s; }
        .branch:nth-child(2) { animation-delay: 0.3s; }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .branches-container {
                grid-template-columns: 1fr;
            }
            
            .floating-buttons {
                right: 15px;
                bottom: 100px;
            }
            
            .floating-btn {
                
                font-size: 1.2rem;
            }
            
            .admission-btn {
                padding: 15px 8px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
                padding-bottom: 100px;
                margin-bottom: -60px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }