* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {

    background: var(--background);
    color: var(--text);

}

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}

/* Header start */
/*=============================
HEADER
==============================*/

.header {

    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: var(--shadow);

}

.header-container {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;

}

.logo {

    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;

}

.navbar {

    display: flex;
    align-items: center;
    gap: 30px;

}

.navbar a {

    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    white-space: nowrap;
    transition: .3s;

}

.navbar a:hover {

    color: var(--primary);

}

/* Hamburger Button */

.menu-toggle {

    display: none;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--primary);

}

/*==============================
TABLET
===============================*/

@media (max-width:1024px) {

    .navbar {

        overflow-x: auto;
        gap: 20px;
        padding-bottom: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    .navbar::-webkit-scrollbar {

        display: none;

    }

}

/*==============================
MOBILE
===============================*/

@media(max-width:768px) {

    .menu-toggle {

        display: block;

    }

    .navbar {

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);

        display: none;
        flex-direction: column;

        padding: 15px 0;

        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);

    }

    .navbar.active {

        display: flex;

    }

    .navbar a {

        padding: 15px 20px;
        width: 100%;

    }

}

/* Header End */
.hero {

    height: 85vh;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%), url(https://media.insider.in/image/upload/c_crop,g_custom/v1754456821/nz6gawasf7olhaonlirc.png);
    /* background: url("https://cdn.district.in/events/cd-media/image/upload/v1754456821/nz6gawasf7olhaonlirc.png") center center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.overlay {

    background: rgba(0, 0, 0, .45);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    color: white;

}

.overlay h1 {

    font-size: 55px;
    margin-bottom: 20px;

}

.overlay p {

    font-size: 20px;
    margin-bottom: 30px;

}

.btn {
    background: var(--primary);
    padding: 15px 35px;
    text-decoration: none;
    color: white;
    border-radius: 50px;
    display: inline-block;

}

.section {
    padding: 40px 0;
}

.section h2 {

    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--secondary);

}

.cards .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;

}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;

}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);

}

.accordion-item {

    margin-bottom: 15px;

}

.accordion-btn {

    width: 100%;
    padding: 18px;
    font-size: 18px;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    text-align: left;

}

.accordion-content {

    display: none;
    padding: 20px;
    background: white;

}

footer {

    background: var(--footer);
    color: white;
    padding: 60px 0 20px;

}

.footer-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

}

footer img {

    width: 140px;
    background: white;
    padding: 10px;

}

footer h3 {

    margin-bottom: 15px;

}

.copyright {

    text-align: center;
    margin-top: 40px;

}

@media(max-width:768px) {

    header .container {

        flex-direction: column;
        gap: 20px;

    }

    nav {

        flex-wrap: wrap;
        justify-content: center;

    }

    .overlay h1 {

        font-size: 36px;

    }

}

.secondary-color {
    color: var(--secondary);
}


/*====================================
ABOUT SECTION
====================================*/

.about-section {

    padding: 70px 0 30px;

}

.section-title {

    margin-bottom: 25px;

}

.section-title h2 {

    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    position: relative;

}

.section-title h2::after {

    content: '';
    width: 70px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin-top: 10px;
    border-radius: 30px;

}

.about-content {

    background: var(--card-bg);
    padding: 35px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);

}

.about-content p {

    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;

}

.about-more {

    display: none;

}

.about-content.expanded .about-more {

    display: block;

}

.read-more-btn {
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: right;
}

.read-more-btn:hover {

    color: var(--primary-dark);

}



/*====================================
HIGHLIGHTS
====================================*/

.highlights-section {

    padding: 30px 0 40px;

}

.highlights-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

}

.highlight-card {

    display: flex;
    gap: 20px;
    align-items: flex-start;

    padding: 28px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: var(--transition);

    /*cursor: pointer;*/

}

.highlight-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--primary);

}

.highlight-icon {

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    background: var(--primary-light);

    border-radius: 50%;

    flex-shrink: 0;

}

.highlight-card h4 {

    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text);

}

.highlight-card p {

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-light);

}

/*===============================
ABOUT
================================*/

@media(max-width:768px) {

    .about-content {

        padding: 25px;

    }

}


/*===============================
HIGHLIGHTS
================================*/

@media(max-width:991px) {

    .highlights-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .highlight-card {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

}

/*======================================
THINGS TO KNOW
======================================*/

.things-section {

    padding: 40px 0;

}

.section-subtitle {

    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
    max-width: 700px;

}

.things-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;

}

.thing-card {

    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: var(--card-bg);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 25px;

    transition: var(--transition);

}

.thing-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

    border-color: var(--primary);

}

.thing-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 28px;

    flex-shrink: 0;

}

.thing-content {

    flex: 1;

}

.thing-content h4 {

    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);

}

.thing-content p {

    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);

}

/*======================================
THINGS TO KNOW
======================================*/

@media(max-width:991px) {

    .things-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .thing-card {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

    .thing-icon {

        margin-bottom: 5px;

    }

}

/*====================================
MORE SECTION
====================================*/

.more-section {

    padding: 60px 0;

}

.more-card {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

.more-item {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 25px;

    background: #fff;

    border: none;

    border-bottom: 1px solid var(--border);

    cursor: pointer;

    font-size: 16px;

    transition: .3s;

}

.more-item:last-child {

    border-bottom: none;

}

.more-item:hover {

    background: var(--primary-light);

}

.more-item span {

    display: flex;

    gap: 15px;

    align-items: center;

}


/*====================================
MODAL
====================================*/

.modal {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .6);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    padding: 20px;

}

.modal.active {

    display: flex;

    animation: fadeIn .25s;

}

.modal-content {

    background: #fff;

    width: 100%;

    max-width: 700px;

    border-radius: 25px;

    overflow: hidden;

    animation: scaleIn .3s;

}

.modal-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 30px;

    border-bottom: 1px solid var(--border);

}

.modal-header h2 {

    font-size: 32px;

}

.close-modal {

    font-size: 28px;

    background: none;

    border: none;

    cursor: pointer;

}

.modal-body {

    max-height: 70vh;

    overflow-y: auto;

}

.popup-btn {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 30px;

    background: #fff;

    border: none;

    border-bottom: 1px solid var(--border);

    cursor: pointer;

    font-size: 17px;

    text-align: left;

}

.popup-content {

    display: none;

    padding: 20px 30px;

    background: #fafafa;

    line-height: 1.8;

}

.popup-item.active .popup-content {

    display: block;

}

.popup-item.active i {

    transform: rotate(180deg);

}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes scaleIn {

    from {

        transform: scale(.85);

    }

    to {

        transform: scale(1);

    }

}


/*=========================================
GALLERY SECTION
=========================================*/

.gallery-section {
    padding: 40px 0;

}

.section-header {

    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 40px;

}

.section-header h2 {

    font-size: 38px;
    margin-bottom: 10px;

}

.section-header p {

    color: var(--text-light);
    max-width: 650px;
    line-height: 1.8;

}

/* Grid */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

/* Cards */

.gallery-item {

    overflow: hidden;

    border-radius: 18px;

    position: relative;

    box-shadow: var(--shadow-sm);

    cursor: pointer;

    background: #fff;

}

.gallery-item.large {

    grid-column: span 2;

    grid-row: span 2;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .6s;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

/* Dark Overlay */

.gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            transparent);

    opacity: 0;

    transition: .4s;

}

.gallery-item:hover::after {

    opacity: 1;

}

/* CTA */

.gallery-bottom {

    margin-top: 45px;

    text-align: center;

}

/* Outline Button */

.btn-outline {

    padding: 12px 25px;

    border: 2px solid var(--primary);

    color: var(--primary);

    border-radius: 50px;

    text-decoration: none;

    display: flex;

    gap: 10px;

    align-items: center;

    transition: .3s;

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

/* Filled Button */

.btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 32px;

    background: var(--primary);

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    transition: .3s;

}

.btn-primary:hover {

    background: var(--primary-dark);

}

/*====================================================
    PREMIUM CTA BUTTON
====================================================*/


.btn-cta{


    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;


    padding:

    12px 32px;



    min-width:150px;



    border-radius:

    50px;



    border:

    2px solid var(--primary);



    background:

    transparent;



    color:

    var(--primary-dark);



    font-size:

    16px;



    font-weight:

    600;



    letter-spacing:

    .3px;



    text-decoration:none;



    cursor:pointer;



    overflow:hidden;



    transition:

    var(--transition);



    z-index:1;



}






/* Animated background layer */

.btn-cta::before{


    content:"";


    position:absolute;



    inset:0;



    background:


    linear-gradient(

        135deg,

        var(--primary),

        var(--primary)

    );



    transform:

    scaleX(0);



    transform-origin:

    left;



    transition:

    .45s ease;



    z-index:-1;



}






/* Border glow */

.btn-cta::after{


    content:"";


    position:absolute;



    inset:-4px;



    border-radius:

    50px;



    background:


    linear-gradient(

        45deg,

        var(--primary),

        var(--primary)

        var(--primary)

    );



    opacity:0;



    filter:

    blur(12px);



    transition:

    .4s ease;



    z-index:-2;



}





/* Hover */

.btn-cta:hover::before{


    transform:

    scaleX(1);



}





.btn-cta:hover::after{


    opacity:.7;



}





.btn-cta:hover{


    color:

    #ffffff;



    transform:


    translateY(-4px);



    box-shadow:


    0 12px 30px rgba(0,184,201,.35);



}





.btn-cta:active{


    transform:

    translateY(-1px);



}




/*====================================================
    CTA WITH ICON
====================================================*/


.btn-cta i{


    margin-left:

    10px;



    transition:

    .3s ease;



}



.btn-cta:hover i{


    transform:

    translateX(5px);



}





/*====================================================
    SMALL CTA
====================================================*/


.btn-cta-sm{


    padding:

    8px 20px;



    font-size:

    14px;



}




/*====================================================
    LARGE CTA
====================================================*/


.btn-cta-lg{


    padding:

    16px 45px;



    font-size:

    18px;



}





/*====================================================
    DISABLED CTA
====================================================*/


.btn-cta:disabled,
.btn-cta.disabled{


    opacity:.5;



    cursor:not-allowed;



    transform:none;



    box-shadow:none;



}