@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* =====================
   GLOBAL STYLES
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/* =====================
   HEADER & NAV
===================== */
/* ===== FIXED HEADER (SINGLE SOURCE OF TRUTH) ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #005ad2; /* SOLID */
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* =====================
   SHARED COMPONENTS
===================== */
.hero,
.page-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


.hero {
    padding-top: 160px; /* space for fixed header */
    padding-bottom: 6rem;
}


.page-hero {
    height: 45vh;
}

.content-box {
    max-width: 1100px;
    margin: -80px auto 80px;
    background: white;
    padding: 3rem;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.btn {
    background: white;
    color: #004cff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* =====================
   HOME PAGE
===================== */
body.home {
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url('https://images.unsplash.com/photo-1557838923-2985c318be48?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat fixed;
}

body.home .hero {
    background:
        linear-gradient(rgba(0,40,120,0.75), rgba(0,40,120,0.6)),
        url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat;
}

body.home .hero h1 {
    font-size: 4rem;
}

body.home .hero p {
    font-size: 1.4rem;
    margin: 1.5rem 0;
}

/* =====================
   ABOUT PAGE
===================== */
body.about {
    background:
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat fixed;
}

body.about .page-hero {
    background:
        linear-gradient(rgba(0,40,120,0.7), rgba(0,40,120,0.7)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat;
}

/* =====================
   PACKAGES PAGE
===================== */
body.packages {
    background:
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat fixed;
}

body.packages .page-hero {
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat;
}

/* =====================
   BLOG PAGE
===================== */
body.blog {
    background:
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat fixed;
}

body.blog .page-hero {
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085')
        center / cover no-repeat;
}

/* =====================
   CONTACT PAGE
===================== */
body.contact {
    background:
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url('https://images.unsplash.com/photo-1525182008055-f88b95ff7980?auto=format&fit=crop&w=2000&q=80')
        center / cover no-repeat fixed;
}

body.contact .page-hero {
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4')
        center / cover no-repeat;
}

/* =====================
   FORMS
===================== */
input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #0b1c3a;
    color: #ccc;
    text-align: center;
    padding: 2rem;
}

/* ============================
   MOBILE RESPONSIVE STYLES
   ============================ */

@media (max-width: 768px) {

    /* GENERAL */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    nav ul {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0;
    }

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;   /* space for fixed header */
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        padding-bottom: 4rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero,
    .page-hero {
        margin-top: 80px;
    }
}



    .hero ul {
        max-width: 100%;
        font-size: 1rem;
    }

.content-box {
    margin: 40px auto 80px;
}


    /* CARDS (Home / Packages / Blog) */
    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    /* FORMS */
    form input,
    form textarea,
    form button {
        width: 100%;
        font-size: 1rem;
    }

    form textarea {
        min-height: 120px;
    }

    /* FOOTER */
    footer {
        font-size: 0.9rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }

}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #005ad2; /* SOLID */
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero,
.page-hero {
    padding-top: 80px; /* SAME AS HEADER HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero {
    padding-bottom: 6rem;
}

.page-hero {
    height: 45vh;
}

.content-box {
    max-width: 1100px;
    margin: 40px auto 80px;
    background: white;
    padding: 3rem;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 4px;
}

.nav-links {
    display: flex;
}


@media (max-width: 768px) {

    /* Header stays solid */
    header {
        background-color: #005ad2;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide menu initially */
    .nav-links {
        position: absolute;
        top: 80px; /* BELOW HEADER */
        left: 0;
        width: 100%;
        background: #005ad2;
        flex-direction: column;
        text-align: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .nav-links li a {
        color: #ffffff;
        font-size: 1.1rem;
    }

    /* Hero spacing */
    .hero,
    .page-hero {
        padding-top: 100px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    /* Cards */
    .cards {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2rem 1.2rem;
        margin: 40px 1rem 80px;
    }
}

@media (max-width: 768px) {
    body.home,
    body.about,
    body.packages,
    body.blog,
    body.contact {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    body.home,
    body.about,
    body.packages,
    body.blog,
    body.contact {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .logo {
        font-size: 1.4rem;
    }
}

/* =====================
   WHATSAPP BUTTON
===================== */
.whatsapp-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =====================
   PACKAGE CARDS UPGRADE
===================== */
.card {
    position: relative;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* =====================
   DSLR SECTION
===================== */
.dslr-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 2rem;
    color: #004cff;
}

.dslr-card {
    border: 2px solid #e6ecff;
    background: #f9fbff;
}

/* =====================
   INFO BOX (BEST FOR / BONUS)
===================== */
.info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f6ff;
    border-left: 4px solid #007bff;
    border-radius: 8px;
    font-size: 0.95rem;
}

.info-box.premium {
    background: #eaf4ff;
    border-left: 4px solid #005eff;
}

/* =====================
   ABOUT STUDENT SECTION
===================== */
.student-note {
    background: #f5f9ff;
    border-left: 5px solid #004cff;
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-radius: 10px;
    font-size: 1.05rem;
}

/* =====================
   FLOATING WHATSAPP
===================== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 16px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* =====================
   ABOUT POINTS STYLE
===================== */
.about-points {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 750px;
    text-align: center;
}

.about-points li {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #f7faff;
    border-left: none; /* remove left line */
    border-top: 4px solid #004cff; /* move line to top */
    border-radius: 12px;
    text-align: center;
}

.about-points strong {
    display: block;
    font-size: 1.1rem;
    color: #004cff;
    margin-bottom: 6px;
}

.about-points p {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.98rem;
    max-width: 600px;
}

.about-points li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.3s;
}

@media (max-width: 768px) {

    .whatsapp-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 0.95rem;
    }

}

@media (max-width: 768px) {

    .info-box {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .info-box strong {
        font-size: 0.95rem;
    }

}

@media (max-width: 768px) {

    .dslr-title {
        font-size: 1.5rem;
        margin: 2rem 0 1.5rem;
    }

    .dslr-card {
        padding: 1.5rem;
    }

}

@media (max-width: 768px) {

    .about-points {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .about-points li {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .about-points strong {
        font-size: 1rem;
    }

    .about-points p {
        font-size: 0.95rem;
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    .card {
        padding: 1.4rem;
    }

    .card ul {
        padding-left: 1rem;
    }

}

@media (max-width: 768px) {

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        padding: 12px 14px;
        font-size: 16px;
    }

}

img {
    max-width: 100%;
    height: auto;
}

