:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;
    --accent: #8b5cf6;
    --light: #121212;
    --dark: #ffffff;
    --gray: #b0b0b0;
    --light-gray: rgba(255, 255, 255, 0.1);
    --mech: #ef4444;
    --elec: #3b82f6;
    --cse: #f59e0b;
    --civil: #8b5cf6;
    --ece: #06b6d4;
    --biomed: #ec4899;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --glass-bg: rgba(30, 30, 30, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    border-radius: 16px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #000000, #0a0a0a);
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 20, 20, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(15, 15, 15, 0.8) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
}

.hero h1 span {
    background: linear-gradient(90deg, #eaeaeb, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 550px;
    animation: fadeIn 1.2s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin: 25px 0;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::after {
    transform: translateY(0);
}

.btn i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0.3;
    color: var(--secondary);
    animation: float 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 40%;
    left: 85%;
    animation-delay: 1s;
    color: var(--accent);
}

.floating-icon:nth-child(3) {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
    color: var(--accent);
}

.floating-icon:nth-child(4) {
    top: 30%;
    left: 75%;
    animation-delay: 3s;
}

/* WhatsApp & Call Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: bounce 2s infinite;
}

.contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: var(--transition);
}

.contact-btn:hover::after {
    transform: translateY(0);
}

.contact-btn.whatsapp {
    background: #25D366;
    animation-delay: 0.1s;
}

.contact-btn.call {
    background: var(--primary);
    animation-delay: 0.3s;
}

.contact-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: white;
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
}

.contact-btn:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Branches Section */
.branches {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary);
    border-radius: 3px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 30px auto 0;
    font-size: 1.2rem;
}

/* Features Grid */
.features {
    padding: 60px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0, 119, 182, 0.03)"/></svg>');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: expandLine 0.8s ease-out;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--delay));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(40, 40, 40, 0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.branch-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    z-index: 1;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(40, 40, 40, 0.4);
}

.branch-header {
    padding: 30px 30px 25px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.branch-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.branch-card:hover .branch-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.branch-header-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.branch-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.branch-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
}

.branch-content {
    padding: 30px;
    position: relative;
}

.branch-content p {
    color: var(--gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    line-height: 1.7;
}

.branch-stats {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-topics {
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.branch-topics h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.branch-topics h4 i {
    color: var(--accent);
    font-size: 1.4rem;
}

.branch-topics ul {
    list-style: none;
}

.branch-topics li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
}

.branch-topics li:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.branch-topics li:last-child {
    border-bottom: none;
}

.branch-topics li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.branch-topics li:hover i {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.branch-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.branch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    gap: 10px;
}

.branch-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 1;
}

.branch-btn:hover::after {
    transform: translateY(0);
}

.branch-btn span {
    position: relative;
    z-index: 2;
}

.branch-btn i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
    font-size: 1.2rem;
}

.branch-btn:hover i {
    transform: translateX(5px);
}

.branch-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.branch-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark);
    border: 1px solid var(--glass-border);
}

.branch-btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.branch-btn:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 700;
    margin-left: 5px;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Mechanical */
.mechanical .branch-header {
background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Computer Science */
.computer .branch-header {
background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Electronics */
.electronics .branch-header {
background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Civil */
.civil .branch-header {
background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Electrical */
.electrical .branch-header {
background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Electronics & Communication */
.electronics-comm .branch-header {
background: linear-gradient(135deg, #14b8a6, #0d9488);
}

/* Automobile */
.automobile .branch-header {
background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Tool and Die */
.tool-die .branch-header {
background: linear-gradient(135deg, #64748b, #475569);
}

/* Computer Engineering */
.computer-eng .branch-header {
background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0, 119, 182, 0.03)"/></svg>');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.contact-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transform: scale(0.95);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards, scaleIn 0.8s ease-out 0.2s forwards;
}

@keyframes scaleIn {
    from { transform: scale(0.95); }
    to { transform: scale(1); }
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-details {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 3px;
    animation: pulse 2s infinite;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
}

.contact-form {
    padding: 40px;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
    animation: slideUp 0.5s ease-out forwards;
    animation-delay: calc(0.1s * var(--delay));
    opacity: 0;
    transform: translateY(20px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 1;
}

.submit-btn:hover::after {
    transform: translateY(0);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}
/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 28px;
    color: white;
}

.footer-logo h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(90deg, white, var(--light-gray));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-about p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-image {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        max-width: 500px;
        margin: 40px auto 0;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-actions {
        grid-template-columns: 1fr;
    }
    
    .branch-btn {
        padding: 18px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}