/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html, body {
    overflow-x: hidden;
    background: #f5f7fb;
    line-height: 1.6;
}

/* ================= TOP NAV ================= */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 10px 60px;
    background: #f5f7fb;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
}

/*.logo img {*/
/*        width: 180px;*/
   
/*}*/

.logo img {
        width: 150px;
    margin-left: -35px;
}

/* ✅ ADD (hamburger icon) */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
}

/* Buttons */
.auth-btns button {
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid black;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.signin {
    background: white;
}

.signup {
    background: #5ee05e;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.signup:hover {
    transform: scale(1.05);
}

/* ================= BOTTOM NAV ================= */
.bottom-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 60px;
    flex-wrap: wrap;
}

.bottom-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: bold;
}

.bottom-nav a:hover {
    border: 2px solid rgb(160, 158, 158);
    background: #f1f1f1;
    color: black;
    border-radius: 10px;
    padding: 6px 10px;
}

/* ================= HERO ================= */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(to right, #ffffff, #e7e7e7);
    position: relative;
    overflow: hidden;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: black;
    text-shadow: 1px 3px 4px gray;
}

.hero-text p {
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
}

.hero-text button {
    padding: 14px 30px;
    border: none;
    background: linear-gradient(135deg, #ff3c3c, #ff7a7a);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.hero-text button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tl-bg-anim {
    pointer-events: none;
}

.hero-img img {
    width: 400px;
    max-width: 100%;
    border-radius: 15px;
}

/* ================= FEATURES ================= */
.features {
    padding: 80px 60px;
    text-align: center;
}

.feature-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 25px;
    width: 260px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* ================= ABOUT ================= */
.about {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    flex-wrap: wrap;
}

.about-img img {
    width: 350px;
    max-width: 100%;
}

.about-text {
    max-width: 500px;
}

/* ================= CTA ================= */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: #0d6efd;
    color: white;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 999;
    border: 1px solid #eee;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: linear-gradient(to right, #f1f1f1, #eaeaea);
    color: #000;
    padding-left: 28px;
}

/* ================= SHAPES ================= */
.bgShapesX77 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Common */
.shapeX77 {
    position: absolute;
    opacity: 0.5;
    animation: floatX77 14s infinite ease-in-out;
}

/* Circle */
.circleX77 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #ff4d4d, transparent);
    border-radius: 50%;
    top: 8%;
    left: 10%;
}

/* Square */
.squareX77 {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.25);
    transform: rotate(45deg);
    top: 65%;
    left: 8%;
    animation: rotateX77 12s linear infinite;
}

/* Star */
.starX77 {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 36px solid #ffd700;
    top: 20%;
    left: 78%;
}

/* Moon */
.moonX77 {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: -18px 0 0 #1a1a2e;
    top: 72%;
    left: 78%;
}

/* 🔥 Birds (NEW) */
.birdX77 {
    width: 20px;
    height: 20px;
    border-top: 3px solid #333;
    border-right: 3px solid transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    animation: flyX77 18s linear infinite;
}

/* Multiple birds positions */
.bird1X77 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.bird2X77 {
    top: 25%;
    left: -10%;
    animation-delay: 4s;
}

.bird3X77 {
    top: 10%;
    left: -15%;
    animation-delay: 8s;
}

/* Small shapes */
.smallX77 {
    transform: scale(0.5);
    opacity: 0.3;
}

/* Extra placement (spread look 🔥) */
.circleX77.smallX77 {
    top: 80%;
    left: 40%;
}

.squareX77.smallX77 {
    top: 30%;
    left: 50%;
}

.starX77.smallX77 {
    top: 55%;
    left: 85%;
}

/* Animations */
@keyframes floatX77 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
    100% { transform: translate(0, 0); }
}

@keyframes rotateX77 {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* Birds flying animation */
@keyframes flyX77 {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateX(40vw) translateY(-30px) rotate(-45deg);
    }
    100% {
        transform: translateX(90vw) translateY(10px) rotate(-45deg);
    }
}

/* ----------------------- */


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .top-nav,
    .bottom-nav {
        padding: 10px 20px;
    }
}

/* ================= MOBILE FIX (MAIN PART 🔥) ================= */
@media (max-width: 768px) {

    /* show hamburger */
    .menu-toggle {
        display: block;
    }

    /* hide menu by default */
    .bottom-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100%;
        background: white;
        padding: 60px 20px 20px 20px;
        gap: 10px;
        transition: 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    /* active = slide in */
    .bottom-nav.active {
        right: 0;
    }

    /* overlay for slide effect */
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 1000;
    }

    #overlay.show {
        display: block;
    }

    .bottom-nav a {
        padding: 10px 0;
        width: 100%;
    }

    .top-nav {
        flex-direction: row;
        padding: 10px 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-img img {
        width: 250px;
        margin-top: 20px;
    }
}

/* dekhte hai ......... copy past / */

body{
    margin:0;
    font-family: Arial, sans-serif;
}

/* HERO SECTION */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXT */
.hero-text{
    flex: 1;
    min-width: 300px;
}





/* IMAGE */
.hero-img{
    flex: 1;
    min-width: 300px;
}

.hero-img img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* 🔥 MOBILE RESPONSIVE */
@media(max-width: 768px){

    .hero{
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

   

    .hero-img img{
        height: 260px;
    }
}


