/* topbar start */
body {
    font-family: "Poppins", system-ui, sans-serif;
}

.topbar {
    background: #FFDB4D;
    color: #fff;
    padding: 4px 0;
    font-size: 14.5px;
    letter-spacing: 0.3px;
}

.contact-item {
    color: #00442C;
    /* Dark green */
    text-decoration: none;
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    /* Bold */
    font-size: 1rem;
    padding: 6px 12px;
    border-radius: 8px;
    /* background: rgba(0, 68, 44, 0.05); */
    /* subtle highlight */
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 18px;
    color: #00442C;
    transition: all 0.3s ease;
}

/* Hover effect */
.contact-item:hover {
    color: #FFDB4D;
    background: #00442C;
}

.contact-item:hover i {
    color: #FFDB4D;
    transform: scale(1.2);
    /* slight icon zoom */
}

/* 🔹 Blink animation keyframes */
@keyframes blink {

    0%,
    50%,
    100% {
        color: #004125;
        /* green */
    }

    25%,
    75% {
        color: #ffffff;
        /* white */
    }
}

.social-link {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Brand colors */
.facebook {
    background: #1877f2;
}

.twitter {
    background: #1da1f2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%);
}

/* Hover effects */
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
    opacity: 0.9;
}


/* Responsive behavior */
@media (max-width: 768px) {
    .email-item {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .social-link {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        font-size: 14px;
    }
}

/* topbar end */

/* navbar start */
/* 🌿 Navbar Styles */

.navbar-logo {
    height: 60px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
    }
}

.navbar {
    background-color: #00442C !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 80px;
    /* increased height for desktop */
    display: flex;
    align-items: center;
}

/* ✅ Logo Styling (Red + Green) */
.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    background: linear-gradient(90deg, #e03131, #198754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: #00442C;
    margin-right: 6px;
    font-size: 24px;
}

/* ✅ Nav Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #f3be02 !important;
    transform: translateY(-2px);
}

/* ✅ Toggle Button */
.navbar-toggler {
    border-color: #198754;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(47%) sepia(84%) saturate(372%) hue-rotate(96deg) brightness(95%) contrast(92%);
}

/* ✅ Mobile Devices */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        /* reset height for mobile */
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }
}

/* navbar end */

/* about start */
.about-section {
    background-color: #fff;
    overflow: hidden;
}

.about-section h2 {
    font-size: 2rem;
}

.about-section img {
    transition: transform 0.5s ease;
}

.about-section img:hover {
    transform: scale(1.05);
}

/* 🌟 Animation Keyframes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 🌟 Apply Animations */
.about-content {
    animation: fadeInLeft 1.2s ease forwards;
}

.about-image {
    animation: fadeInRight 1.2s ease forwards;
}

/* 🌿 Mobile Animation (fade up) */
@media (max-width: 768px) {
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .about-content,
    .about-image {
        animation: fadeInUp 1s ease forwards;
    }
}

/* about end */

/* crousel start */
/* 🌟 Clean Auto Carousel */
#heroCarousel {
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

#heroCarousel img {
    width: 80%;
    /* 👈 width kam ki */
    height: 90vh;
    object-fit: cover;
}


/* ✅ Tablet */
@media (max-width: 992px) {
    #heroCarousel img {
        height: 25vh;
    }
}

/* ✅ Mobile */
@media (max-width: 576px) {
    #heroCarousel img {
        height: 20vh;
    }
}

/* crousel end */

/* services start */
.services-chicken {
    background-color: #f5fff3;
    padding: 10px 0;
    overflow: hidden;
}

.services-chicken h2 {
    color: #004025;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-chicken p.section-desc {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 50px;
}

.chicken-service-card {
    background: #fff;
    border: 2px solid #e7f6eb;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.chicken-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #198754;
}

.chicken-icon {
    background: #198754;
    color: #fff;
    font-size: 2rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.chicken-service-card:hover .chicken-icon {
    background: #f3be02;
    transform: rotate(10deg) scale(1.1);
}

.chicken-service-card h5 {
    font-weight: 600;
    color: #f3be02;
    margin-bottom: 10px;
}

.chicken-service-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* 🌟 Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chicken-service-card {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.chicken-service-card:nth-child(1) {
    animation-delay: 0.3s;
}

.chicken-service-card:nth-child(2) {
    animation-delay: 0.6s;
}

.chicken-service-card:nth-child(3) {
    animation-delay: 0.9s;
}

.chicken-service-card:nth-child(4) {
    animation-delay: 1.2s;
}

/* services end */


/* nutritions start */
/* ========== NUTRITION SECTION STYLING ========== */
#nutrition {
    background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

#nutrition h2 {
    color: #f3be02;
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

/* #nutrition h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d62828, #198754);
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
} */

#nutrition p.section-desc {
    color: #6c757d;
    max-width: 700px;
    margin: 10px auto 50px;
}

/* Table Styling */
#nutrition table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

#nutrition thead {
    background: linear-gradient(90deg, #f3be02, #f77f00);
    color: #fff;
}

#nutrition tbody tr {
    transition: all 0.3s ease;
}

#nutrition tbody tr:hover {
    background: rgba(214, 40, 40, 0.05);
    box-shadow: 0 0 10px rgba(214, 40, 40, 0.1);
}

#nutrition td,
#nutrition th {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

#nutrition td:first-child,
#nutrition th:first-child {
    text-align: left;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#nutrition .table {
    animation: fadeInUp 1s ease forwards;
}

/* Mobile Cards */
@media (max-width: 767px) {
    #nutrition .section-desc {
        padding: 0 12px;
    }

    #nutrition .nutrition-card {
        border: 1px solid #f0f0f0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        padding: 18px;
        transition: 0.3s ease;
    }

    #nutrition .nutrition-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    #nutrition .nutrition-card h6 {
        color: #f3be02;
        font-weight: 600;
    }

    #nutrition .nutrition-card strong {
        color: #198754;
    }

    #nutrition .nutri-badge {
        background: #198754;
        color: #fff;
        font-size: 0.75rem;
        border-radius: 10px;
        padding: 2px 8px;
    }
}

.nutri-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 25px;
}

/* nutrition end */

/* contact us start */
.contact-section {
    /* background: linear-gradient(135deg, #fff6d9, #fff0b3); */
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 💡 Form icon styling */
.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f3be02;
    font-size: 1rem;
}

.form-control {
    padding-left: 40px;
}

.form-group {
    position: relative;
}

.form-control:focus {
    border-color: #f3be02;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* contact us end */

/* footer start */
footer {
    background-color: #004025;
    color: #fff;
    padding: 60px 0 20px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

footer p,
footer a {
    color: #f8f9fa;
    font-size: 0.95rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #80ed99;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #004025;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #80ed99;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        margin: 5px;
    }
}

/* footer end */

/* mission start */
/* Mission & Vision Section */
/* Section Base */
#mission-vision {
    position: relative;
    background: linear-gradient(135deg, #fffdf6, #fff7d9);
    padding: 80px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Decorative circles */
#mission-vision::before,
#mission-vision::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(243, 190, 2, 0.1);
    z-index: 0;
}

#mission-vision::before {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
}

#mission-vision::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

/* Headings */
#mission-vision h2 {
    color: #2c2c2c;
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

#mission-vision .section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Layout */
#mission-vision .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

#mission-vision .col {
    flex: 1 1 320px;
    max-width: 450px;
}

/* Card Style */
.mission-card {
    background: #fff;
    border-radius: 18px;
    padding: 45px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #f3be02;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 190, 2, 0.25);
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(243, 190, 2, 0.15), transparent);
    transition: 0.6s;
}

.mission-card:hover::before {
    left: 100%;
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f3be02, #f9d54a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(243, 190, 2, 0.3);
    transition: all 0.4s ease;
}

.mission-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

/* Text */
.mission-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.mission-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.mission-card:hover h3 {
    color: #f3be02;
}

/* Responsive Design */
@media (max-width: 768px) {
    #mission-vision {
        padding: 60px 15px;
    }

    #mission-vision h2 {
        font-size: 1.8rem;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* mission end */

/* what makes us different start  */
/* ===== What Makes Us Different Section ===== */
#difference {
    background: linear-gradient(135deg, #fff9e6, #fff4cc);
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
}

#difference .container {
    max-width: 1200px;
    margin: auto;
}

#difference h2 {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(to right, #004025, #006633);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    transition: all 0.5s ease;
}

#difference .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

#difference .card {
    flex: 1 1 280px;
    background: white;
    padding: 40px 25px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

/* Stagger animation for each card */
#difference .card:nth-child(1) {
    animation-delay: 0.2s;
}

#difference .card:nth-child(2) {
    animation-delay: 0.4s;
}

#difference .card:nth-child(3) {
    animation-delay: 0.6s;
}

#difference .card:nth-child(4) {
    animation-delay: 0.8s;
}

#difference .card:nth-child(5) {
    animation-delay: 1s;
}

#difference .card:nth-child(6) {
    animation-delay: 1.2s;
}

#difference .card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

#difference .icon {
    font-size: 55px;
    margin-bottom: 20px;
    color: #f3be02;
    transition: transform 0.3s, color 0.3s;
}

#difference .card:hover .icon {
    transform: scale(1.4) rotate(20deg);
    color: #edcb4d;
}

#difference p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    #difference .card {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    #difference .row {
        flex-direction: column;
        gap: 30px;
    }

    #difference .card {
        flex: 1 1 100%;
    }
}

/* what makes us different end */

/* our promises start */
#chicken-promise {
    padding: 100px 8%;
    background: linear-gradient(135deg, #fffaf0, #fff7cc);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.promise-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* ---------- TEXT BOX ---------- */
.promise-text {
    flex: 1 1 45%;
    animation: fadeInLeft 1s ease-out forwards;
}

.promise-text h2 {
    font-size: 2.6rem;
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.promise-text h4 {
    font-size: 1.3rem;
    font-style: italic;
    color: #c75a00;
    margin: 20px 0;
}

.promise-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.promise-text span {
    color: #f3be02;
    font-weight: 600;
}

/* ---------- IMAGE BOX ---------- */
.promise-image {
    flex: 1 1 45%;
    text-align: right;
    animation: fadeInRight 1s ease-out forwards;
}

.promise-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.promise-image img:hover {
    transform: scale(1.05);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    #chicken-promise {
        padding: 80px 6%;
    }

    .promise-flex {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .promise-text,
    .promise-image {
        flex: 1 1 100%;
        text-align: center;
        animation: none;
    }

    .promise-text h2 {
        font-size: 2.2rem;
    }

    .promise-text h4 {
        font-size: 1.1rem;
        margin: 12px 0;
    }

    .promise-text p {
        font-size: 1rem;
    }

    .promise-image img {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    #chicken-promise {
        padding: 70px 5%;
    }

    .promise-text h2 {
        font-size: 2rem;
    }

    .promise-text h4 {
        font-size: 1rem;
    }

    .promise-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .promise-image img {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    #chicken-promise {
        padding: 60px 5%;
    }

    .promise-text h2 {
        font-size: 1.8rem;
    }

    .promise-text h4 {
        font-size: 0.95rem;
    }

    .promise-text p {
        font-size: 0.9rem;
    }

    .promise-image img {
        max-width: 270px;
    }
}

/* our promises end */

/* welcome start */
/* 🌟 Welcome Heading Section */
#welcome-heading {
    background: linear-gradient(135deg, #fffef6, #fffbe8);
    text-align: center;
    padding: 50px 15px;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    position: relative;
}

/* ✨ Heading */
#welcome-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #00442c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1.2s ease-out;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 🌟 Highlighted Word */
#welcome-heading h2 span {
    color: #ffdb4d;
    position: relative;
}

/* Underline Animation */
#welcome-heading h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 5px;
    background: #ffdb4d;
    border-radius: 3px;
    animation: slideIn 1.3s ease-out;
}

/* 💬 Tagline */
#welcome-heading .tagline {
    font-size: 1.3rem;
    color: #00442c;
    font-weight: 600;
    letter-spacing: 1.8px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.6s;
    text-transform: capitalize;
}

/* 🌈 Subtle Glow Effect */
/* #welcome-heading h2 span {
    animation: glowPulse 2s ease-in-out infinite alternate;
} */

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 5px #ffdb4d55, 0 0 10px #ffdb4d33;
    }

    100% {
        text-shadow: 0 0 15px #ffdb4d, 0 0 25px #ffdb4d;
    }
}

/* 🎬 Animations */
@keyframes fadeInDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    #welcome-heading {
        padding: 30px 10px;
    }

    #welcome-heading h2 {
        font-size: 1.4rem;
    }

    #welcome-heading .tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* welcome end */


/* fixed btn start */
/* ✅ Fixed WhatsApp, Email & Facebook Buttons */
.fixed-contact-buttons {
  position: fixed;
  left: 25px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* === 3D Button Base Style === */
.fixed-contact-buttons a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25),
              inset 0 2px 4px rgba(255, 255, 255, 0.3),
              inset 0 -4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* === Inner Shine (3D reflection) === */
.fixed-contact-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 70%);
  transition: all 0.3s ease;
}

/* === WhatsApp (Official) === */
.whatsapp-btn {
  background: linear-gradient(145deg, #4cdb55, #128C7E);
}


/* === Gmail (Official) === */
.email-btn {
  background: linear-gradient(145deg, #EA4335, #C5221F);
}

/* === Facebook (Official) === */
.facebook-btn {
  background: linear-gradient(145deg, #1877F2, #0E5BD9);
}

/* === Hover Effects === */
.fixed-contact-buttons a:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.4);
}

.fixed-contact-buttons a:hover::before {
  transform: scale(1.4);
  opacity: 0.7;
}

/* === Icon Animation === */
.fixed-contact-buttons a i {
  transition: transform 0.3s ease;
}

.fixed-contact-buttons a:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* === Responsive === */
@media (max-width: 768px) {
  .fixed-contact-buttons a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

/* fixed btn end */

/* order now btn  */

.order-btn {
    background-color: #ffcc00;
    /* Yellow background */
    color: #000;
    /* Black text */
    border: none;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-decoration: none;
}

/* Hover effect */
.order-btn:hover {
    background-color: #ffdb4d;
    /* Lighter yellow on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ✅ Center on mobile screens */
@media (max-width: 768px) {
    .order-btn {
        display: block;
        margin: 15px auto;
        /* Centers horizontally */
        text-align: center;
    }
}

/* order now btn end */

/* stats start */
.stats-section {
    /* background: url('images/bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
}

.stats-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border-radius: 20px;
    padding: 40px 30px;
    width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.stat-box i {
    font-size: 40px;
    color: #F3BE02;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-box {
        width: 45%;
    }
}

@media (max-width: 500px) {
    .stat-box {
        width: 100%;
    }
}

/* stats end */

/* banner start */

/* 🍗 Middle Banner with reduced height */
.middle-banner {
    width: 100%;
    height: 70vh;
    /* 👈 Desktop height */
    background: url('images/hii.jpg') center/cover no-repeat;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .middle-banner {
        height: 35vh;
        /* 👈 Smaller height for mobile */
    }
}

@media (max-width: 480px) {
    .middle-banner {
        height: 20vh;
        /* 👈 Extra small devices */
    }
}

/* banner end */

.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Reduced height */
    background-image: url('images/ch.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 64, 37, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0 0 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.btn-order {
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #f3be02;
    /* Yellow button */
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        height: 35vh;
        /* Reduced height on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-order {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* crousel start */
.main-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("images/qwe.webp") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.main-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 20, 50, 0.85), rgba(0, 64, 37, 0.6));
    z-index: 1;
}

.main-banner-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.main-banner-title {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #f3be02, #ffe45e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInDown 1.2s ease forwards;
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-banner-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    animation: slideInUp 1.6s ease forwards;
}

.main-banner-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 10px;
    animation: slideInUp 1.8s ease forwards;
    padding: 0 80px;
    /* desktop ke liye */
}

@media (max-width: 768px) {
    .main-banner-text {
        padding: 0 25px;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.main-btn-order {
    background-color: #f3be02;
    color: #fff;
}

.main-btn-contact {
    background-color: #fff;
    color: #004025;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .main-banner {
        height: 50vh;
    }

    .main-banner-title {
        font-size: 2.2rem;
    }

    .main-banner-subtitle {
        font-size: 1rem;
    }

    .main-banner-text {
        font-size: 0.9rem;
    }

    .main-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* crousel end */

/* pop up start */

/* ===== Popup Overlay ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
    padding: 15px;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* ===== Popup Box ===== */
.popup-box {
    background: linear-gradient(135deg, #ffffff, #f0f5f0);
    color: #333;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.6s ease;
    font-family: 'Poppins', sans-serif;
}

.popup-box h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00442c;
}

.popup-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

/* ===== Buttons ===== */
.popup-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

.call-btn {
    background: #00442c;
    color: #FFDB4D;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 68, 44, 0.4);
}

.whatsapp-btn {
    /*background: #128C7E;*/
    color: #00442c;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 219, 77, 0.4);
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #00442c;
    cursor: pointer;
    transition: 0.3s;
}

.close-popup:hover {
    color: #FFDB4D;
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .popup-box {
        padding: 25px 20px;
    }

    .popup-box h2 {
        font-size: 1.5rem;
    }

    .popup-box p {
        font-size: 0.95rem;
    }

    .popup-btn {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .close-popup {
        font-size: 20px;
        top: 8px;
        right: 12px;
    }
}

@media (max-width: 360px) {
    .popup-box h2 {
        font-size: 1.4rem;
    }

    .popup-box p {
        font-size: 0.9rem;
    }

    .popup-btn {
        padding: 10px 0;
        font-size: 0.9rem;
    }
}

/* pop up end */

/* company start */
.highlight-text {
    color: #145443;
    /* Dark green for emphasis */
    font-weight: 700;
    /* Bold */
    background-color: rgba(255, 219, 77, 0.25);
    /* Light yellowish highlight */
    padding: 2px 6px;
    border-radius: 4px;
}


/* company end */

/* services start */
/* ===== Section Styling ===== */
.services-section {
    background-color: #ffffff;
}

.section-title {
    color: #00442c;
    font-weight: 700;
    font-size: 2rem;
}

/* ===== Card Styling ===== */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.service-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
}

.service-card .card-title {
    color: #00442c;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-card .card-text {
    color: #333;
    font-size: 0.95rem;
}

/* ===== Hover Effect ===== */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 219, 77, 0.4);
}

.service-card:hover .card-title {
    color: #FFDB4D;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.8rem;
    }

    .service-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .service-card .card-title {
        font-size: 1rem;
    }

    .service-card .card-text {
        font-size: 0.9rem;
    }

    .service-card img {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-card img {
        height: 160px;
    }

    .service-card .card-title {
        font-size: 1rem;
    }

    .service-card .card-text {
        font-size: 0.9rem;
    }
}

/* services end */