* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

h3,
p {
    color: white
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s ease;
}

header.sticky {
    background: #000;
    padding: 10px 0;
}

.container {
    height: 10vh;

    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ffb400;
}

/* Toggle button */
.toggle {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    display: none;
}


.hero-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background: #ffb400;
    padding: 12px 25px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width:768px) {

    .toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 200px;
        background: linear-gradient(to right, #603813, #b97650);
        border: 1px solid #40748c;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        margin-top: 30px;
        border-radius: 20px 0 0 20px;
        right: 0;
    }
}


.logo {
    width: 70px;
}


/* about us  css  */


.about {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.about-container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image Section */
.about-image {
    flex: 1;
    min-width: 320px;
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1.3s ease forwards;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.about-content {
    flex: 1;
    min-width: 320px;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1.3s ease forwards;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.read-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffb400;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Animations */
@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        animation: fadeUp 1.3s ease forwards;
        transform: translateY(40px);
    }

    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(40px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}



.about-img {
    width: 100%;
    height: 90vh;
}


.core-pillars {
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.sub-title {
    font-size: 14px;
    color: #8b8b8b;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
}

.pillar-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Pillar Cards */
.pillar-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s forwards;
}

/* Hover Animation */
.pillar-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Gradient Icon Box */
.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8bfffb, #d39cff, #ffbdf4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.pillar-icon img {
    width: 40px;
}

/* Title & Text */
.pillar-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Explore Link */
.pillar-link {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.pillar-link:hover {
    color: #7f00ff;
}

/* Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pillar-container {
        flex-direction: column;
        text-align: center;
    }
}


.packages-section {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.packages-section .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.packages-container {
    background-color: #453f34;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

.package-box {
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.package-box:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 15px;
    transition: 0.3s;
}

.package-box:hover .icon-circle {
    transform: scale(1.05);
}

.blue {
    background: radial-gradient(circle, #66d0ff, #006bb3);
}

.purple {
    background: radial-gradient(circle, #b766ff, #6d0099);
}

.silver {
    background: radial-gradient(circle, #ffffff, #bfbfbf);
}

.gold {
    background: radial-gradient(circle, #ffd46d, #c79b00);
}

.crown {
    background: radial-gradient(circle, #ffffff, #bfbfbf);
    position: relative;
}

.crown:after {
    content: "👑";
    font-size: 40px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

p {
    font-size: 14px;
    margin: 10px 0 15px;
}

.explore {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.explore:hover {
    padding-left: 5px;
}


.circle-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}


/* MAIN SECTION */
.earn-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.earn-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* ============ LEFT CARD ============ */
.left-card {
    width: 48%;
    min-height: 550px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.15);
}

.left-card .left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK GRADIENT */
.left-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
    z-index: 1;
}

/* LEFT CONTENT */
.left-content {
    position: absolute;
    bottom: 40px;
    left: 25px;
    color: white;
    z-index: 2;
}

.left-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
}

.left-content p {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
}

/* TAG BUTTONS */
.tags {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.tags span {
    padding: 8px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    transition: 0.3s ease;
}

.tags span:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* ============ RIGHT CARD ============ */
.right-card {
    width: 48%;
    padding: 25px 25px 30px;
    border: 2px solid #bcd8ff;
    border-radius: 18px;
    background: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.10);
}

.right-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.right-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* ICON ROW */
.icons-row {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a4f2ff, #b567ff);
    display: inline-block;
    background-size: cover !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.20);
    transition: 0.3s ease;
}

.icon:hover {
    transform: translateY(-5px);
}

/* IMAGE INSIDE RIGHT CARD */
.right-img {
    width: 100% !important;
    max-height: 450px;
    border-radius: 12px;
    object-fit: cover;
    margin: 10px 0 20px;
    display: block;
}

/* BUTTON */
.earn-btn {
    background: linear-gradient(to right, #ffcf73, #c063ff);
    padding: 12px 25px !important;
    border-radius: 30px !important;
    border: none !important;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.earn-btn:hover {
    transform: translateX(6px);
}


/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {

    .left-card,
    .right-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .left-content h2 {
        font-size: 24px;
    }

    .right-card h2 {
        font-size: 26px;
    }

    .right-img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .tags span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .icon {
        width: 38px;
        height: 38px;
    }
}




.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    gap: 40px;
}

.left {
    width: 40%;
}

.left h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.left p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta {
    padding: 15px 30px;
    background: linear-gradient(to right, #66e3c1, #d361ed);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
}

/* Slider */
.slider-wrapper {
    width: 45%;
    position: relative;
}

.slider {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.slider img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Controls */
.controls {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #222;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
}

.dot.active {
    background: #111;
}


.facility-section {
    padding: 80px 60px;
    font-family: Arial, sans-serif;
}

.facility-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.facility-image img {
    width: 480px;
    border-radius: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.facility-content {
    width: 50%;
}

.sub-heading {
    background: linear-gradient(to right, #e6ff67, #d34ced, #50d4ff);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
}

.facility-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0 20px;
}

.facility-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 17px;
}

/* Logos */
.cert-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.cert-logos img {
    width: 85px;
    height: auto;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .facility-container {
        flex-direction: column;
        text-align: center;
    }

    .facility-content {
        width: 100%;
    }

    .facility-image img {
        width: 100%;
        max-width: 420px;
        margin-bottom: 20px;
    }

    .cert-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
}


.about-video {
    width: 100%;
    max-width: 500px;
}

.about-vid {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}



/* css */



/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* adjusts brightness */
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.btn {
    background: linear-gradient(to right, #54e3d3, #d56afc);
    padding: 12px 28px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}


/* FOOTER MAIN */
.main-footer {
    background: #111;
    color: #ddd;
    padding: 70px 50px 30px;
    font-family: Arial, sans-serif;
}

/* FOOTER GRID */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}

/* LOGO STYLE */
.footer-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(to right, #54e3d3, #d56afc);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

/* HEADINGS */
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #54e3d3;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    padding: 8px;
    background: #222;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #54e3d3;
    color: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-top: 35px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* MAIN SECTION */
.hands-section {

    padding: 40px 20px;
}

.hands-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT SIDE */
.hands-left {
    flex: 1;
}

.hands-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hands-left p {
    font-size: 18px;
    color: #444;
    margin: 20px 0;
    line-height: 1.6;
}

.cta {
    padding: 14px 28px;
    background: linear-gradient(to right, #66e3c1, #d361ed);
    border: none;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* RIGHT SIDE */
.hands-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
}

/* ✔ MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hands-container {
        flex-direction: column;
        text-align: center;
    }

    .hands-left h1 {
        font-size: 36px;
    }

    .hands-left p {
        font-size: 16px;
    }

    .hands-right img {
        max-width: 90%;
        margin-top: 20px;
    }
}

/* ✔ EXTRA SMALL phones */
@media (max-width: 500px) {
    .hands-left h1 {
        font-size: 30px;
    }

    .cta {
        padding: 12px 25px;
        font-size: 14px;
    }
}