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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

main {
    flex: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('assets/mumbai-construction.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero .logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.hero .logo img {
    height: 42px; /* Reduced by 65% from 120px */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3));
    margin: 20px;
}

.hero .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(1, 223, 115, 0.5));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(1, 223, 115, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C9E600, #01DF73);
    margin: 0.8rem auto;
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Countdown Section */
.countdown {
    padding: 5rem 0;
    background: linear-gradient(135deg, #01DF73 0%, #C9E600 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    transform: skewY(-2deg);
}

.countdown::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f9f9f9;
    transform: skewY(2deg);
}

.countdown h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.countdown-item {
    min-width: 120px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.countdown-item span {
    display: block;
}

#countdown-days,
#countdown-hours,
#countdown-minutes,
#countdown-seconds {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.8;
}

.countdown-note {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Social Media Section */
.social {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ebeef5 100%);
    text-align: center;
    position: relative;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.1);
}

.social h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.social h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9E600, #01DF73);
    border-radius: 3px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #C9E600, #01DF73);
    color: white;
    border-radius: 18px;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(1, 223, 115, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #01DF73, #C9E600);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 30px rgba(1, 223, 115, 0.4);
}

.social-icon:hover::before {
    opacity: 1;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d, #1a1a1a);
    color: white;
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
    border-top: 4px solid #01DF73;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2301DF73' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer .logo {
    margin-bottom: 1.5rem;
}

.site-footer .logo img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
    padding: 8px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.site-footer .logo img:hover {
    transform: scale(1.05);
}

.site-footer p {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .countdown h2,
    .social h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    #countdown-days,
    #countdown-hours,
    #countdown-minutes,
    #countdown-seconds {
        font-size: 2.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero .logo img {
        height: 28px; /* Reduced by 65% from 80px */
        margin: 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .countdown h2,
    .social h2 {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item {
        width: 80%;
        max-width: 200px;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .site-footer .logo img {
        height: 50px;
    }
}