@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --nav-color: #0F3D2E;
    --heading-color: rgb(42, 116, 13);
    --primary-color: rgb(209, 56, 240);
    --button-color: rgb(209, 20, 61);
    --body-color: rgb(246, 228, 252);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to bottom, #f4f6f9, #eef2f7);
    /* overflow: hidden; */
}



.hero-image {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../assets/hero-bg.jpeg") center/cover no-repeat;
    display: flex;
    /* align-items: center; */
    /* padding: 0 84px; */
    inset: 0;
    opacity: 0.6;
}

.hero {
    position: relative;
    height: 450px;
}



/* Content on top */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 700px;
}


.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 12px;
}

.hero-content p {
    font-family: "Poppins", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-content button {
    font-family: "Baloo bhai 2", serif;
    display: flex;
    gap: 14px;
    align-items: center;
    background-color: #D4AF37;
    color: #0F3D2E;
    margin: auto;
    font-weight: 400;
    border: none;
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
}

.hero-content button:hover {
    background-color: #F4B400;
    scale: 1.05;
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
        font-size: 26px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    .pages {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #1f8f5f;
        /* slightly darker than header */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        transition: 0.4s ease;
        z-index: 1000;
    }

    .pages.active {
        right: 0;
    }

    .pages a {
        font-size: 20px;
        color: white;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .pages a:hover {
        color: #ffd700;
        transform: scale(1.05);
    }
}



@media (max-width: 576px) {

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content button {
        width: 70%;
        align-self: center;
        justify-content: center;
    }

}



/* Packages */
.packages {
    padding: 50px 40px;
}

.packages h2 {
    text-align: center;
    font-family: "Playfair Display", serif;
    color: var(--heading-color);
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    /* VERY IMPORTANT */
    gap: 30px;
    justify-content: center;
}


.card {
    flex: 1 1 300px;
    max-width: 320px;
    padding: 12px;
    border-radius: 12px;
    background-color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-family: "Baloo bhai 2", serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.card p {
    font-family: "Poppins", serif;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.card-details {
    display: flex;
    margin-top: 18px;
    justify-content: space-between;
    align-items: center;
}

.card-details>* {
    font-family: 'Poppins', sans-serif;
}


.image-cont{
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    transform: 0.3 ease-in-out;
}
.card img:hover{
    transform: scale(1.1);
}

.card h3 {
    height: 50px;
    line-height: 26px;

}

.card-duration {
    height: 30px;
}

.card-description {
    height: 50px;
}

.card button {
    cursor: pointer;
    /* position: absolute;
    right: 5px; */
    padding: 8px;
    border: none;
    background-color: #14532D;
    color: #fff;
    border-radius: 20px;
}

.card button:hover {
    color: #14532D;
    background-color: #ccc;
}

@media (max-width: 992px) {

    .card {
        flex: 1 1 45%;
        max-width: 45%;
    }

}

@media (max-width: 576px) {

    .packages {
        padding: 40px 20px;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .packages h2 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .card img {
        height: 200px;
    }

    .card button {
        margin-top: 10px;
    }
}


/* why Choose */

.why-choose {
    background: #5c98d3;
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.feature-card h3 {
    font-family: "Baloo Bhai 2", sans-serif;
}

.feature-card p {
    font-family: "Poppins", sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: "Baloo Bhai 2", sans-serif;
    font-size: 16px;
    margin-bottom: 60px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD DESIGN */
.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 15px;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    color: #333;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.25); */
    box-shadow: 0 0 25px rgba(96, 101, 234, 0.6);

}

/* ICON STYLE */

.icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffb703);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #5f2c82;
    transition: 0.4s;
}

.feature-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
    background: #5f2c82;
    color: #ffd700;
}



/* TEXT */
.feature-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* Process */

.process h2 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffd700;
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
}


.process-line {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.process {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--nav-color), #356857);
    position: relative;
    color: #fff;
    text-align: center;
}



.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 85px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 89%;
    z-index: 0;
    pointer-events: none;
}

.timeline-line svg {
    width: 100%;
    height: 100%;
}

.step h3 {
    font-family: "Baloo Bhai 2", sans-serif;
    font-size: medium;
}

.timeline-line path {
    stroke: #ffd700;
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    animation: drawLine 3s ease forwards;
}


@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@media (min-width: 992px) {
    .process-step-4th {
        grid-area: 2/3;
    }

    .process-step-6th {
        grid-row-start: 2;
    }
}

@media (max-width: 992px) {

    .timeline-container {
        padding: 80px 0;
    }

    .step {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 60px;
    }

    .timeline-line {
        display: none;
        /* hide svg line on tablet */
    }
}

@media (max-width: 576px) {

    .process {
        padding: 60px 20px;
    }

    .process h2 {
        font-family: "Playfair Display", serif;
        font-size: 26px;
        margin-bottom: 40px;
    }

    .timeline-grid {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .process-icon {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }
}



/* GRID CONTROLS ICON POSITION */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 0px;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step:nth-child(3) {
    left: 80%;
}

.step:nth-child(4) {
    left: 80%;
}

.step:nth-child(5) {
    left: 50%;
}

.step:nth-child(6) {
    left: 10%;
}


/* Push bottom steps down */
.step.bottom {
    margin-top: 120px;
}

/* FIXED ICON SIZE */
.process-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 34px;
    color: #ffd700;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step:hover .process-icon {
    transform: scale(1.15) rotate(8deg);
    background: #ffd700;
    color: #4b2c82;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4d6d;
    color: #fff;
    font-size: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}



.step p {
    max-width: 282px;
    font-family: "Poppins", sans-serif;
}



/* About */
/* SECTION */
.about {
    padding: 100px 8%;
    background: #f4f6fb;
}

/* CONTAINER */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

/* TEXT SIDE */
.section-tag {
    color: #2e7d32;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-size: 42px;
}

.about-text h2 {
    font-family: "Baloo Bhai 2", sans-serif;
    font-size: 2.625rem;
    margin: 15px 0 20px;
    color: #111;
}

.about-text p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
}

/* BUTTON */
.about-btn {
    font-family: "Baloo bhai 2", serif;
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: #0c66a5;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #144e78;
    transform: translateY(-3px);
}

/* IMAGE SIDE */
.about-img {
    width: 350px;
    height: 400px;

    background-image:
        url("../assets/Person1-Photoroom.png"),
        radial-gradient(circle at center,
            #8aa7ff 0%,
            #7db8e9 40%,
            #e9edf3 100%);

    background-size: 110%, cover;
    background-position: center bottom, center;
    background-repeat: no-repeat;

    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-text p {
        max-width: 100%;
    }

    .about-img {
        width: 320px;
        height: 420px;
    }
}


/* Gallery */
.gallery {
    padding: 80px 10%;
    background: #f8f9fb;
    text-align: center;
}

.gallery h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.625rem;
    margin-bottom: 50px;
    color: #1b1c5f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Hidden state */
.gallery-item {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* When visible */
.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}


/* CTA */
/* ================= CTA SECTION ================= */

.cta {
    background: linear-gradient(135deg, #0f4c75, #1b6ca8);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta h2 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta p {
    font-family: "Poppins", serif;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    font-family: "Playfair Display", serif;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

.secondary {
    background: white;
    color: #0f4c75;
}

.secondary:hover {
    background: #e6e6e6;
    transform: translateY(-3px);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.625rem);
}