*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#111827;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* NAVBAR */

.navbar{
    width:100%;
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,0.06);
}

.nav-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:78px;
}

.logo{
    text-decoration:none;
    font-size:28px;
    font-weight:700;
    color:#6c4df6;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#111827;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#6c4df6;
}

/* HERO */

.website-hero{
    position:relative;
    width:100%;
    height:30vh;
    background:url('../images/website-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    opacity:0.9;
}

/* SECTION */

.theme-section{
    padding:80px 7%;
}

.section-header{
    margin-bottom:35px;
}

.section-header h2{
    font-size:38px;
    color:#111827;
    font-weight:700;
}

/* CARD */

.theme-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.theme-card:hover{
    transform:translateY(-8px);
}

.theme-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.theme-info{
    padding:25px;
}

.theme-info h3{
    font-size:24px;
    margin-bottom:10px;
    color:#111827;
}

.theme-info p{
    color:#6b7280;
    margin-bottom:20px;
}

.preview-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:#6c4df6;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.preview-btn:hover{
    background:#5338d4;
}

/* MODAL */

.lead-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    backdrop-filter:blur(4px);
}

.lead-box{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 60px rgba(0,0,0,0.15);
    animation:popup 0.4s ease;
}

@keyframes popup{

    from{
        transform:scale(0.9);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.lead-box h2{
    font-size:32px;
    margin-bottom:10px;
    color:#111827;
    font-weight:700;
}

.lead-box p{
    color:#6b7280;
    margin-bottom:25px;
    line-height:1.6;
}

.lead-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.lead-box input,
.lead-box select{
    width:100%;
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:0.3s;
    margin-bottom:15px;
    background:#fff;
}

.lead-box input:focus,
.lead-box select:focus{
    border-color:#6c4df6;
}

.lead-box button{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#6c4df6;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.lead-box button:hover{
    background:#5338d4;
}

#otpMessage{
    margin-top:18px;
    text-align:center;
    font-size:14px;
    color:#111827;
    font-weight:500;
}

/* FOOTER */

.footer{
    background:#111827;
    padding:28px 0;
    text-align:center;
    margin-top:60px;
}

.footer p{
    color:#fff;
    font-size:15px;
    letter-spacing:0.4px;
}

/* SWIPER */

.swiper{
    padding-bottom:20px !important;
}

.swiper-slide{
    height:auto;
}

/* MOBILE */

@media(max-width:991px){

    .nav-flex{
        flex-direction:column;
        justify-content:center;
        gap:12px;
        height:auto;
        padding:18px 0;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-header h2{
        font-size:28px;
    }

    .lead-box{
        padding:30px 20px;
    }

    .theme-section{
        padding:60px 20px;
    }

    .theme-card img{
        height:220px;
    }

}

@media(max-width:480px){

    .logo{
        font-size:24px;
    }

    .nav-links a{
        font-size:14px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .lead-box h2{
        font-size:26px;
    }

}

/* THEME PREVIEW MODAL */

.theme-preview-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.theme-preview-box{
    width:100%;
    max-width:1200px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    position:relative;
}

.close-preview{
    position:absolute;
    top:18px;
    right:18px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:99;
}

.theme-preview-left{
    padding:25px;
    background:#f9fafb;
}

.main-preview-image{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:18px;
}

.preview-thumbnails{
    display:flex;
    gap:12px;
    margin-top:18px;
}

.preview-thumbnails img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:0.3s;
}

.preview-thumbnails img:hover{
    border-color:#6c4df6;
}

.theme-preview-right{
    padding:45px;
}

.theme-preview-right h2{
    font-size:38px;
    color:#111827;
    margin-bottom:15px;
}

.theme-price{
    font-size:24px;
    color:#6c4df6;
    font-weight:700;
    margin-bottom:20px;
}

.theme-description{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:30px;
}

.theme-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:35px;
}

.feature-item{
    background:#f3f4f6;
    padding:14px;
    border-radius:12px;
    font-size:14px;
    font-weight:500;
}

.theme-enquiry-btn{
    display:inline-block;
    padding:16px 35px;
    background:#6c4df6;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
}

.theme-enquiry-btn:hover{
    background:#5338d4;
}

@media(max-width:900px){

    .theme-preview-box{
        grid-template-columns:1fr;
        max-height:90vh;
        overflow:auto;
    }

    .theme-preview-right{
        padding:25px;
    }

    .theme-preview-right h2{
        font-size:28px;
    }

    .main-preview-image{
        height:280px;
    }

}