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

:root {
    --british-red: #C8102E;
    --british-blue: #012169;
    --royal-blue: #0051BA;
    --bright-red: #E03C31;
    --pure-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--british-blue) 0%, var(--royal-blue) 50%, var(--british-red) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(1, 33, 105, 0.88) 0%, rgba(0, 81, 186, 0.80) 50%, rgba(200, 16, 46, 0.85) 100%);
}

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23012169;stop-opacity:1" /><stop offset="50%" style="stop-color:%230051BA;stop-opacity:1" /><stop offset="100%" style="stop-color:%23C8102E;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="800"/><path fill="rgba(255,255,255,0.08)" d="M0,400 Q300,200 600,400 T1200,400 V800 H0 Z"/><path fill="rgba(255,255,255,0.05)" d="M0,500 Q400,300 800,500 T1600,500 V800 H0 Z"/></svg>') center/cover no-repeat,
        var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 1rem 0;
}

.logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.hero-text {
    margin-bottom: 4rem;
}

.tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.95;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 3rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(200, 16, 46, 0.4);
    border-color: var(--british-red);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.info-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

.cta-section {
    margin-top: 3rem;
    padding: 2rem;
}

.coming-soon {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-shadow: 0 2px 20px rgba(200, 16, 46, 0.8), 0 0 40px rgba(0, 81, 186, 0.6);
}

.contact-info {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
}

footer {
    padding: 2rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.info-card,
.cta-section {
    animation: fadeIn 0.8s ease-out forwards;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.cta-section {
    animation-delay: 0.4s;
}

