body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ===== LOGO ===== */
.logo a img {
    width: 60px;
}

/* ===== NAVBAR ===== */
.desktop-nav {
    display: none;
}

.desktop-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 10px;
    display: inline-block;
    color: black;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2C3E50;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    background-color: #f8f9fa;
}

.mobile-menu.show {
    max-height: 400px;
    /* jitna content hoga utna */
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.mobile-menu a:hover,
.desktop-nav a:hover {
    background-color: #d10000;
    color: white;
}

/* Footer */

.footer-section {
    background: #0b1628;
    /* Dark navy shade */
    color: #d7dce3;
    font-size: 15px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links li a {
    color: #d7dce3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #ffffff;
}

.service-badge {
    width: 85px;
    height: auto;
}

.payments-icon {
    width: 100px;
    margin-right: 5px;
}

.footer-bottom a {
    color: #d7dce3;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-badge {
        width: 70px;
    }
}

/* =============================First Banner============================= */
/* ============================= Slider + Fixed Form Section ============================= */

.kfc-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* LEFT SLIDER (70%) */
.slider-left {
    width: 70%;
    height: 100vh;
    overflow: hidden;
}

/* override banner hight */
.slider-bg {
    height: 100vh !important;
}
.content-box {
    background: #fff;
    display: inline-block; /* content जितना width */
    padding: 20px;
    border-radius: 10px;
    color: #000;
}

/* .content-box{
    background-color: white;
} */

/* RIGHT FORM (FIXED SIZE) */
.form-right {
    width: 30%;
    background: #ffffff;
    padding: 25px;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
}

/* Form input styling */
.form-right input,
.form-right select {
    height: 45px;
    font-size: 15px;
}

/* Scrollbar styling (optional) */
.form-right::-webkit-scrollbar {
    width: 6px;
}

.content-box h4{
    color: #d10000;

}

.form-right::-webkit-scrollbar-thumb {
    background: #d10000;
    border-radius: 3px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .kfc-slider-wrapper {
        display: block;
        height: auto;
    }

    .slider-left {
        width: 100%;
        height: 350px;
    }

    .slider-bg {
        height: 350px !important;
    }

    .form-right {
        width: 100%;
        height: auto;
        box-shadow: none;
        padding: 15px;
    }
}

/* Responsive */
/* @media (max-width: 768px) {
    .slider-bg {
        height: 70vh;
    }

    .content-box {
        padding: 15px;
    }

    .custom-caption {
        left: 0;
        right: 0;
        text-align: center;
        bottom: 5%;
    }

    .content-box {
        width: 90%;
        margin: 0 auto;
    }
} */

/* ==================================aboutus banner============================== */
.about-section {
    background: #fff;
}

.about-img {
    max-width: 360px;
}

.about-subtitle {
    color: #d10000;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-small-text {
    margin-top: -8px;
    font-size: 14px;
    color: #7a7a7a;
}

.about-title {
    font-weight: 800;
    color: #d10000;
    margin: 15px 0;
}

.about-meta {
    color: #c40000;
    font-style: italic;
    font-size: 15px;
}

.about-info p {
    font-size: 15px;
    color: #333;
}

.about-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

@media(max-width: 768px) {
    .about-section {
        text-align: center;
    }

    .about-title {
        font-size: 26px;
    }

    .about-img {
        max-width: 260px;
        margin-bottom: 20px;
    }
}

/* ============================= banner3 =================================== */
.steps-section {
    background: #ffffff;
}

.steps-heading {
    font-weight: 700;
    font-size: 28px;
    color: #444;
    letter-spacing: 0.5px;
}

/* Paragraph styling */
.steps-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 18px;
}

/* Number styling */
.steps-content strong {
    color: #c00000;
    /* Highlighted red numbers */
    font-weight: 600;
}

/* Responsive */
@media(max-width: 768px) {
    .steps-heading {
        font-size: 22px;
        padding: 0 10px;
    }

    .steps-content p {
        font-size: 15px;
    }
}

/* ============================= banner4 =================================== */
.gallery-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a2740;
}

.underline {
    width: 60px;
    height: 3px;
    background: #c00000;
    margin: 8px auto 30px;
    border-radius: 5px;
}

/* Gallery box */
.gallery-box {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.gallery-box img {
    border-radius: 8px;
}

.gallery-box:hover {
    transform: scale(1.03);
}

/* Arrow styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive */
@media(max-width: 768px) {
    .gallery-box {
        margin-bottom: 20px;
    }
}

/* ============================= banner5 =================================== */
.kfc-business-section {
    margin-top: 40px;
}

.business-img {
    background-color: #d4002a;
    /* KFC Red */
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.business-content {
    background: #d4002a;
    /* KFC Red */
    /* padding: 5px; */
    color: white;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.business-content .title {
    font-size: 20px;
    font-weight: 700;
}

.business-content .subtitle {
    font-size: 20px;
    margin-top: 25px;
    font-weight: 600;
}

.inner-box {
    padding: 0 5%;
}

/* Responsive */
@media (max-width: 768px) {
    .business-content {
        padding: 30px 20px;
        text-align: center;
    }

    .business-content .title {
        font-size: 20px;
    }

    .business-content .subtitle {
        font-size: 16px;
    }
}

/* ============================= banner6 =================================== */

/* 🔥 Full-width Image Banner Styling */
.full-banner {
    width: 100%;
    margin-top: 0;
}

.full-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================= About Page banner1 =================================== */
/* Main Banner Style */
.about-banner {
    background: url("/images/about-banner-md.jpg") center/cover no-repeat;
    width: 100%;
    height: 80vh;
    position: relative;
}


/* ============================= About Page banner2 =================================== */

.history-main {
        margin: 0;
        background: #c70324;
        font-family: Arial, sans-serif;
        color: white;
        padding: 40px 0;
    }

    h1 {
        text-align: center;
        font-size: 55px;
        font-weight: 800;
    }

    .history-container {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
        justify-items: center;
    }

    .history-card {
        width: 250px;
        background: black;
        border-radius: 20px;
        overflow: hidden;
        padding: 25px 15px;
        text-align: center;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .history-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 10px 25px rgba(0,0,0,0.6);
    }

    .history-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        margin-top: 20px;
        filter: grayscale(100%);
        transition: 0.3s;
    }

    .history-card:hover img {
        filter: grayscale(0%);
    }

    .title {
        color: #ffb3b3;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .year {
        font-size: 38px;
        font-weight: 800;
        margin: 5px 0;
    }

    .desc {
        font-size: 13px;
        line-height: 18px;
        margin-top: 10px;
    }

/* ============================= About Page banner3 =================================== */



/* ============================= Apply Now banner1 =================================== */
.franchise-form-section{
    background: url('/images/banner2.jpg') no-repeat center center/cover;
}
.franchise-form-section .container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.underline {
    width: 60px;
    height: 3px;
    background: #ff0000;
}

.form-top-text {
    font-size: 15px;
    line-height: 1.6;
}

.btn-danger {
    background: #d60000 !important;
    border: none;
}
.contact-info-section {
    background: #ffffff;
}

.contact-info-section .contact-icon {
    width: 45px;
    opacity: 0.9;
}

.contact-info-section h5 {
    font-size: 17px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.contact-info-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* =================Contact Baner */
.contact-banner{
    background: url("/images/contact-us-banner-1-860x280.jpg") center/cover no-repeat;
    width: 100%;
    height: 80vh;
    position: relative;
}


