28/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Smoother scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: clamp(70px, 15vw, 100px); /* Offset for fixed header */
}

/* Body with trendy gradient */
body {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    color: #1E40AF;
    line-height: 1.8;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header with mega menu */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    padding: clamp(10px, 2vw, 20px) clamp(20px, 5vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.3s ease;
    max-width: 100vw;
}

.logo {
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
    background: #60A5FA;
    color: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.5);
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.7);
}

/* Mega menu container */
.nav-menu {
    position: relative;
    width: 100%;
}

.nav-toggle {
    color: #EFF6FF;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    cursor: pointer;
    padding: clamp(5px, 2vw, 10px);
    display: none;
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: #A5BFFA;
}

/* Mega menu dropdown */
.nav-dropdown {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
    max-width: 100%;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: #EFF6FF;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 18px);
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 10px);
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-item > a i {
    font-size: clamp(16px, 3vw, 20px);
}

.nav-item:hover > a {
    color: #60A5FA;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}

/* Mega menu sub-menu */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
    backdrop-filter: blur(12px);
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateX(-40px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.nav-item:hover .mega-menu {
    display: block;
    opacity: 1;
}

/* Mega menu content */
.mega-menu-content {
    max-width: clamp(800px, 90vw, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 20vw, 250px), 1fr));
    gap: clamp(20px, 3vw, 40px);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-column h3 {
    color: #60A5FA;
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: clamp(10px, 2vw, 20px);
    display: flex;
    align-items: Wcenter;
    gap: clamp(5px, 1vw, 10px);
}

.mega-menu-column h3 i {
    font-size: clamp(20px, 4vw, 24px);
}

.mega-menu-column a {
    color: #EFF6FF;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 16px);
    padding: clamp(8px, 1.5vw, 12px) 0;
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 8px);
    transition: color 0.3s ease, transform 0.3s ease;
}

.mega-menu-column a i {
    font-size: clamp(16px, 3vw, 18px);
}

.mega-menu-column a:hover {
    color: #F9A825;
    transform: translateX(5px);
}

/* Interactive widgets */
.mega-menu-widget {
    background: rgba(255, 255, 255, 0.15);
    padding: clamp(10px, 2vw, 20px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.mega-menu-widget input {
    padding: clamp(8px, 1.5vw, 10px);
    border: none;
    border-radius: 10px;
    width: 100%;
    margin-bottom: clamp(5px, 1vw, 10px);
    font-size: clamp(12px, 2vw, 14px);
    background: #EFF6FF;
    color: #1E40AF;
}

.mega-menu-widget button {
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
    background: #34D399;
    border: none;
    border-radius: 10px;
    color: #1E40AF;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-size: clamp(12px, 2vw, 14px);
}

.mega-menu-widget button:hover {
    background: #F9A825;
}

/* Buttons */
.btn {
    padding: clamp(10px, 2vw, 15px) clamp(20px, 5vw, 40px);
    background: #60A5FA;
    border: none;
    border-radius: 50px;
    color: #EFF6FF;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.5);
    width: clamp(120px, 30vw, 200px);
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background: #3B82F6;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.7);
}

.whatsapp-btn {
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1vw, 10px);
}

.whatsapp-btn:hover {
    background: #20C65A;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    background: rgba(30, 64, 175, 0.4);
    backdrop-filter: blur(12px);
    padding: clamp(40px, 8vw, 60px);
    border-radius: 20px;
    width: clamp(300px, 85vw, 1000px);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Styles */
.card-grid, .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 400px), 1fr));
    gap: clamp(30px, 5vw, 40px);
}

.card, .event-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: clamp(300px, 50vw, 400px);
}

.card:hover, .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, 4vw, 30px);
}

.card-btn {
    display: inline-block;
    margin-top: clamp(15px, 3vw, 25px);
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px);
    background: #34D399;
    color: #1E40AF;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: clamp(16px, 3vw, 18px);
}

.card-btn:hover {
    background: #F9A825;
    transform: scale(1.05);
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    text-align: center;
    background: rgba(249, 168, 37, 0.8);
    padding: clamp(20px, 4vw, 30px);
    border-radius: 15px;
    color: #1E40AF;
    width: clamp(300px, 50vw, 600px);
}

.carousel-controls {
    position: absolute;
    bottom: clamp(15px, 3vw, 25px);
    left: 50%;
    transform: translateX(-50%);
}

.carousel-dot {
    display: inline-block;
    width: clamp(12px, 2.5vw, 16px);
    height: clamp(12px, 2.5vw, 16px);
    background: #A5BFFA;
    border-radius: 50%;
    margin: 0 clamp(8px, 1.5vw, 12px);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #60A5FA;
}

.carousel-dot:hover {
    background: #F9A825;
}

/* Customization Interface */
.customization-ui {
    padding: clamp(80px, 15vw, 120px) clamp(20px, 5vw, 40px);
    max-width: 100vw;
    overflow: hidden;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 400px), 1fr));
    gap: clamp(30px, 5vw, 40px);
    max-width: clamp(800px, 95vw, 1400px);
    margin: 0 auto;
}

.customization-section {
    background: #FFF;
    padding: clamp(25px, 5vw, 35px);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customization-section h3 {
    font-size: clamp(22px, 4vw, 28px);
    color: #1E40AF;
    margin-bottom: clamp(15px, 3vw, 25px);
}

.customization-section label {
    display: block;
    margin-bottom: clamp(15px, 3vw, 25px);
    font-size: clamp(16px, 3vw, 18px);
    color: #1E40AF;
}

.customization-section input[type="color"],
.customization-section input[type="text"],
.customization-section input[type="file"],
.customization-section select,
.customization-section textarea,
.customization-section input[type="number"] {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    border: none;
    border-radius: 10px;
    background: #EFF6FF;
    color: #1E40AF;
    font-size: clamp(14px, 2.5vw, 16px);
}

.customization-section textarea {
    height: clamp(100px, 20vw, 150px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    color: #EFF6FF;
    text-align: center;
    padding: clamp(40px, 8vw, 60px);
    font-size: clamp(14px, 2.5vw, 18px);
    max-width: 100vw;
    overflow: hidden;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.footer-links {
    margin-bottom: clamp(15px, 3vw, 25px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 3vw, 20px);
}

.footer-links a {
    color: #A5BFFA;
    text-decoration: none;
    font-size: clamp(16px, 3vw, 18px);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F9A825;
}

/* Animations */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-header {
        padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 20px);
    }
    .mega-menu-content {
        grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 25vw, 200px), 1fr));
    }
    .partners-carousel {
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-dropdown {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1E40AF, #3B82F6);
        padding: clamp(10px, 2vw, 20px);
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-dropdown.active {
        display: block;
    }
    .nav-item > a {
        padding: clamp(10px, 2vw, 15px);
    }
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        padding: clamp(10px, 2vw, 20px);
        box-shadow: none;
        max-height: 60vh;
        overflow-y: auto;
    }
    .nav-item:hover .mega-menu {
        display: none;
    }
    .nav-item.active .mega-menu {
        display: block;
    }
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    .hero-overlay {
        width: 90vw;
    }
    .partners-carousel {
        height: 30vh;
    }
}