
:root {
    --orange: #ff7a00;
    --orange-dark: #e65c00;
}

.text-orange {
    color: var(--orange);
}

/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25); /* SHADOW */
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--orange);
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.dropdown-item:hover {
    background-color: #fff3e0;
    color: var(--orange);
}

.btn-login {
    background-color: var(--orange);
    color: #fff;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 500;
}

    .btn-login:hover {
        background-color: var(--orange-dark);
        color: #fff;
    }


/* Change primary button color */
.btn-primary {
    background-color: var(--orange);
    border-color: var(--orange);
}

    .btn-primary:hover {
        background-color: var(--orange-dark);
        border-color: var(--orange-dark);
    }

/* Carousel spacing */
.carousel {
    margin-bottom: 4rem;
}

/* Fixed height */
.carousel-item {
    height: 500px;
    position: relative;
}

    /* Image full cover */
    .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Dark overlay */
    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

/* PERFECT CENTER TEXT */
.carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}

    .carousel-caption .logo {
        max-width: 80px;
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
    }

    /* Heading */
    .carousel-caption h1 {
        font-size: 40px;
        font-weight: bold;
        color: #fff;
    }

        /* Orange text */
        .carousel-caption h1 span {
            color: orange;
        }

/* Responsive */
@media(max-width:768px) {
    .carousel-caption h1 {
        font-size: 22px;
    }

    .carousel-caption .logo {
        max-width: 100px;
    }
}

/* Buttons */
.btn-primary {
    background-color: orange;
    border-color: orange;
}

    .btn-primary:hover {
        background-color: darkorange;
    }

/* Indicators */
.carousel-indicators [data-bs-target] {
    background-color: orange;
}

/* ===== SECTION ===== */
.section {
    padding: 60px 0;
}

/* ===== IMAGE ===== */
.banner-img {
    width: 100%;
    display: block;
}

/* ===== CARD ===== */
.card img {
    height: 200px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background: orange;
    color: #fff;
    text-align: center;
    padding: 20px;

}

    .footer a {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

        .footer a:hover {
            color: #ffe0b3;
        }

.social-icons {
    display: flex;
    border: none;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap; /* ❌ break nahi hone dega */
}

    .social-icons a {
        color: #fff;
        font-size: 18px;
        white-space: nowrap; /* extra safety */
    }

    .social-icons a:hover {
        color: #ffe0b3;
    }

/* ===== WHATSAPP ===== */
/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 125px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 999;
}

.open-form-btn {
    position: fixed;
    right: 20px;
    bottom: 15%;
    transform: translateY(50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

    .open-form-btn:hover {
        background: var(--orange-dark);
    }


    .open-form-btn i {
        margin-right: 6px;
    }
