/* =========================================================
   GLOBAL RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Poppins", sans-serif;
    background:#f5f7fb;
    color:#1e293b;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* =========================================================
   HEADER
========================================================= */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffffee;
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    border-bottom:1px solid #e2e8f0;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:1.3rem;
    font-weight:700;
    color:#0f172a;
    letter-spacing:0.5px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-size:0.92rem;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#0f766e;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#0f766e;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
    url('images/delhi-to-mussoorie-family-tour-package.webp');
    background-size:cover;
    background-position:center;
    padding:100px 0;
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
}

.hero-content h1{
    color:#ffffff;
    font-size:3.3rem;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:-1px;
}

.hero-content p{
    color:#e2e8f0;
    font-size:0.95rem;
    max-width:780px;
    margin:auto;
    line-height:1.9;
    background:rgba(255,255,255,0.08);
    padding:18px 22px;
    border-radius:14px;
    border-left:4px solid #10b981;
}

.hero-btn{
    display:inline-block;
    margin-top:35px;
    background:#0f766e;
    color:#fff;
    text-decoration:none;
    padding:15px 34px;
    border-radius:12px;
    font-size:0.95rem;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(15,118,110,0.25);
}

.hero-btn:hover{
    transform:translateY(-3px);
    background:#115e59;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

main{
    padding:70px 0;
}

/* =========================================================
   SECTIONS
========================================================= */

section[id^="sec"]{
    background:#ffffff;
    margin-bottom:35px;
    padding:35px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 30px rgba(15,23,42,0.05);
    transition:0.3s;
}

section[id^="sec"]:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(15,23,42,0.08);
}

/* =========================================================
   H2 TAGS
========================================================= */

section h2{
    font-size:1.7rem;
    line-height:1.4;
    color:#0f172a;
    margin-bottom:22px;
    font-weight:800;
    position:relative;
    padding-left:18px;
    letter-spacing:-0.4px;
}

section h2::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:6px;
    height:85%;
    border-radius:20px;
    background:linear-gradient(to bottom,#0f766e,#14b8a6);
}

/* =========================================================
   H3 TAGS
========================================================= */

section h3{
    margin-top:28px;
    margin-bottom:10px;
    color:#0f172a;
    font-size:1rem;
    font-weight:700;
    display:inline-block;
    padding-bottom:6px;
    border-bottom:2px solid #cbd5e1;
}

/* =========================================================
   P TAGS
========================================================= */

section p{
    color:#475569;
    font-size:0.88rem;
    line-height:1.9;
    margin-bottom:14px;
}

/* =========================================================
   STRONG TAGS
========================================================= */

strong{
    color:#0f172a;
    font-weight:700;
    font-size:0.9rem;
}

/* =========================================================
   IMAGE STYLES
========================================================= */

section img{
    width:100%;
    max-width:600px;
    height:400px;
    object-fit:cover;
    border-radius:20px;
    margin:20px 0 25px;
    display:block;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

section img:hover{
    transform:scale(1.02);
}

/* =========================================================
   LIST STYLES
========================================================= */

ul{
    padding-left:20px;
    margin-top:12px;
}

ul li{
    margin-bottom:10px;
    color:#334155;
    font-size:0.9rem;
}

/* =========================================================
   FAQ SECTION SPECIAL STYLE
========================================================= */

#sec12 h3{
    background:#f8fafc;
    padding:12px 15px;
    border-radius:10px;
    border:1px solid #e2e8f0;
    width:100%;
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

#sec13{
    background:linear-gradient(to right,#ffffff,#f8fafc);
}

/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */

#sec14{
    border:1px solid #cbd5e1;
    background:#ffffff;
}

/* =========================================================
   PACKAGE LINKS SECTION
========================================================= */

#sec15{
    background:linear-gradient(to right,#f8fafc,#ffffff);
}

/* =========================================================
   FOOTER STYLE
========================================================= */

.footer{
    background:#0f172a;
    color:#cbd5e1;
    text-align:center;
    padding:30px 15px;
    margin-top:40px;
}

.footer p{
    font-size:0.85rem;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:2.6rem;
    }

    section{
        padding:28px;
    }

}

@media(max-width:768px){

    .nav-wrapper{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero-section{
        min-height:75vh;
        padding:80px 0;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:0.85rem;
        line-height:1.8;
    }

    section[id^="sec"]{
        padding:24px 18px;
        border-radius:20px;
    }

    section h2{
        font-size:1.3rem;
        line-height:1.5;
    }

    section h3{
        font-size:0.92rem;
    }

    section p{
        font-size:0.82rem;
        line-height:1.8;
    }

    section img{
        width:100%;
        height:260px;
        border-radius:16px;
    }

    .hero-btn{
        width:100%;
        text-align:center;
        padding:14px 20px;
    }

}

@media(max-width:480px){

    .hero-content h1{
        font-size:1.7rem;
    }

    .logo{
        font-size:1.1rem;
    }

    .nav-links a{
        font-size:0.82rem;
    }

    section h2{
        font-size:1.15rem;
    }

    section p{
        font-size:0.8rem;
    }

    section img{
        height:230px;
    }

}