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

:root {
    --primary-glow: rgba(236, 72, 153, 0.5);
    --secondary-glow: rgba(139, 92, 246, 0.5);
    --white: #ffffff;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #1e0033, #3d1e6d, #8e44ad);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Blobs for Background */
body::before, body::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #ec4899, #8b5cf6);
    filter: blur(150px);
    opacity: 0.3;
    z-index: -1;
    animation: moveBlob 20s infinite alternate;
}

body::after {
    width: 600px;
    height: 600px;
    background-image: linear-gradient(45deg, #f59e0b, #ef4444);
    animation-delay: -10s;
}

@keyframes moveBlob {
    from {
        transform: translate(-60%, -60%) rotate(0deg);
    }
    to {
        transform: translate(-40%, -40%) rotate(360deg);
    }
}


/* Header Styles - Glassmorphism */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 20px var(--primary-glow);
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a:hover {
    color: #ddd;
    text-shadow: 0 0 10px var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #f59e0b;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 120px);
}

/* Carousel Section - Glassmorphism Card */
.carousel-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    max-width: 500px;
    height: 600px;
    position: relative;
}

.swiper-slide {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.3s ease;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    padding: 1rem; /* Padding to not touch the glass edges */
}

.swiper-slide-active {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--secondary-glow);
}

/* Custom Navigation - Sleek & Responsive */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05); /* More subtle background */
    width: 45px !important; /* Slightly smaller */
    height: 45px !important;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.15); /* More visible on hover */
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--shadow);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: 'swiper-icons'; /* Use the swiper icon font */
    font-size: 18px !important; /* Thinner icon */
    font-weight: 900;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    transform: scale(1.2); /* Icon grows on hover */
}

/* Custom Pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--white) !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--white);
}

/* Hero Content - Right Side */
.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 15px var(--shadow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

/* Gradient Button */
.btn-primary {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 25px var(--primary-glow);
}

/* Glassmorphism Button */
.btn-secondary {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design Adjustments */

@media (max-width: 991px) {
    main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .carousel-section { order: 2; }
    .hero-content { order: 1; }
    .hero-title { font-size: 3rem; text-align: center; }
    .hero-subtitle { text-align: center; margin: 0 auto 3rem auto; }
    .cta-buttons { justify-content: center; }
    .swiper { width: 90vw; max-width: 400px; height: auto; aspect-ratio: 1 / 1.2; }
}

@media (max-width: 767px) {
    .mobile-menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(20, 5, 40, 0.9);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px var(--shadow);
        justify-content: center;
        align-items: center;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-item a { width: 100%; text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
    .social-links { margin-top: 1rem; justify-content: center; }
    .logo h1 { font-size: 1.6rem; }
    .logo img { width: 50px; height: 50px; }
    .header-container { padding: 0 1rem; }
    main { padding: 1.5rem; gap: 2.5rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.5rem); }
    .hero-subtitle { font-size: clamp(1rem, 4vw, 1.1rem); }
    .btn { padding: 1rem 2rem; font-size: 1rem; min-width: 140px; }
    .swiper { width: 90vw; max-width: 350px; height: auto; aspect-ratio: 1 / 1.2; }

    /* Responsive Swiper Buttons */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 280px; }
}

/* Loading Animation - Kept for smoothness */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.carousel-section { animation: slideInLeft 1s ease-out; }
.hero-content { animation: slideInRight 1s ease-out; }
body.loaded .carousel-section,
body.loaded .hero-content {
    opacity: 1;
}
