/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdfaf4;
    color: #333;
}

/* --- MAIN HEADER (TOP BAR) --- */
/* .main-header {
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
} */
.main-header {
    position: sticky;
    top: 0;
    z-index: 9999; /* Taaki header page ke baaki content ke upar rahe */
    background-color: #ffffff; /* Aapke main header ka background color (agar transparent dikhe toh ise set karein) */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Scroll karte waqt niche ek halki premium shadow dikhegi */
}

.top-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    flex-wrap: wrap;
    gap: 15px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer; /* Mouse hover par hand icon dikhane ke liye */
}

.main-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #d62828;
  font-weight: 700;
}

/* .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #d62828;
    font-weight: 700;
} */

/* Search Box UI */
.search-box-container {
    display: flex;
    align-items: center;
    width: 40%;
    border: 2px solid #fde895;
    border-radius: 4px;
    overflow: hidden;
}

.search-box-container input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
}

.search-box-container button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
}

.header-right-info {
    display: flex;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    background-color: #ffcc00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.info-text small {
    display: block;
    color: #666;
    font-size: 0.75rem;
}

/* --- NAVIGATION MENU ROW --- */
.navigation-menu {
    background-color: #fde895;
    padding: 10px 0;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover, .active-link {
    color: #d62828 !important;
}

/* --- MAIN FOOTER STYLES --- */
.main-footer {
    background-color: #4a0404;
    color: #f5ebd6;
    padding-top: 40px;
    border-top: 5px solid #ffcc00;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 5% 40px 5%;
}

.footer-col h3 {
    color: #ffcc00;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,204,0,0.3);
    padding-bottom: 8px;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e5d4bc;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #e5d4bc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow-links a {
    color: #e5d4bc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: 0.3s;
}

.arrow-links a:hover {
    color: #ffcc00;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    margin: 15px 0;
}

.social-icons-row a {
    width: 35px;
    height: 35px;
    border: 1px solid #e5d4bc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e5d4bc;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons-row a:hover {
    background-color: #ffcc00;
    color: #4a0404;
    border-color: #ffcc00;
}

.slogan-footer {
    font-style: italic;
    color: #ffcc00 !important;
    margin-top: 15px;
}

/* Contact strip bar */
.footer-contact-strip {
    background-color: #380202;
    display: flex;
    justify-content: space-around;
    padding: 20px 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-info i {
    color: #ffcc00;
    font-size: 1.5rem;
}

.c-info small {
    color: #aaa;
    font-size: 0.75rem;
}

.c-info p {
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-copyright-bar {
    background-color: #2b0101;
    text-align: center;
    padding: 15px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .search-box-container { width: 100%; order: 3; }
    .top-header-bar { justify-content: center; }
    .nav-links { gap: 15px; flex-wrap: wrap; }
}










/* ==========================================
   EXACT GOLDEN BANNER WITH BLENDED IMAGES
   ========================================== */
.franchise-banner-section {
    position: relative;
    background: linear-gradient(180deg, #ffc800 0%, #ffb300 100%); /* Bright Golden Background */
    padding: 30px 20px 45px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* White Box Removal Magic for JPG/White Images */
.fran-img-left {
    position: absolute;
    left: 10px;
    bottom: 8px;
    /* height: 85%; */
    max-height: 330px;
    z-index: 1;
    mix-blend-mode: multiply; /* Removing white background */
    object-fit: contain;
}

.fran-img-right {
    position: absolute;
    right: 0;
    bottom: 8px;
    height: 85%;
    max-height: 250px;
    z-index: 1;
    mix-blend-mode: multiply; /* Removing white background */
    object-fit: contain;
}

/* Center Content Area */
.fran-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    width: 100%;
}

.fran-center-content h2 {
    color: #4a0303;
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

/* Lotus Line Divider */
.fran-lotus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 6px 0;
}

.fran-lotus-divider .line {
    width: 150px;
    height: 1.5px;
    background-color: #4a0303;
}

.fran-lotus-divider .lotus-icon {
    color: #4a0303;
    font-size: 1.2rem;
}

.fran-sub {
    /* color: #4a0303; */
    color:#ffca6f;
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

/* Dark Maroon Capsule Box */
.franchise-capsules {
    display: inline-flex;
    align-items: center;
    background-color: #4a0000; /* Deep Maroon */
    border-radius: 50px;
    padding: 8px 35px;
    gap: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.capsule {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}


.capsule i {
    color: #110e02;
    font-size: 1.3rem;
}

.capsule span { display: block; font-size: 0.75rem; color: #aaa; text-align: left;}
.capsule strong { font-size: 1.1rem; color: #fff;}

/* --- OPENING ANIMATION EFFECT --- */
.animate-fade-in {
    opacity: 0;
    animation: fadeInPage 1.5s forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* .capsule-icon {
    width: 38px;
    height: 38px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a0000;
    font-size: 1.05rem;
    flex-shrink: 0;
} */

.capsule-text span {
    display: block;
    font-size: 0.72rem;
    color: #ffc800;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.capsule-text strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 700;
}

.capsule-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 200, 0, 0.35);
}

/* Bottom Border Strip */
.fran-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #4a0000;
    border-top: 1px solid #ffc800;
}

/* Responsive Handling */
@media (max-width: 992px) {
    .fran-img-left, .fran-img-right {
        max-height: 150px;
    }
}

@media (max-width: 650px) {
    .fran-center-content h2 {
        font-size: 1.25rem;
    }
    .franchise-capsules {
        flex-direction: column;
        gap: 12px;
        border-radius: 20px;
        padding: 12px 20px;
    }
    .capsule-divider {
        width: 80%;
        height: 1px;
    }
    .fran-img-left, .fran-img-right {
        display: none; /* Mobile view par images ko hide kar diya h taaki clean dikhe */
    }
}













/* ==================== POPUP MODAL STYLES ==================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    padding: 15px;
}

/* Popup dikhane ke liye class */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #730606; /* Bottom Dark Red Background */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.popup-overlay.active .popup-modal-card {
    transform: scale(1);
}

/* Close Button (X) */
.popup-close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4a0404;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.2s ease;
}

.popup-close-icon:hover {
    transform: scale(1.2);
    color: #800000;
}

/* Header Area (Cream Gold Top) */
.popup-header-section {
    background: linear-gradient(180deg, #fdf8e2 0%, #f7e8bd 100%);
    text-align: center;
    padding:   8px 20px 21px 20px;
    border-bottom-left-radius: 50% 25px;
    border-bottom-right-radius: 50% 25px;
    position: relative;
}

.lotus-symbol {
    font-size: 1.8rem;
    color: #800000;
    margin-bottom: 5px;
}

.popup-main-title {
    font-family: 'Cinzel', serif, Georgia;
    color: #800000;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
}

.popup-subtitle {
    color: #4a0404;
    font-size: 1rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Floating White Inner Form */
.popup-body-section {
    padding: 0 25px 30px 25px;
    margin-top: -25px; /* Pulls form upwards over curved header */
}

.white-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-heading-divider {
    text-align: center;
    color: #800000;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-heading-divider .ornament {
    color: #c09030;
    margin: 0 8px;
}

/* Input Fields Styling */
.popup-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.input-box i {
    position: absolute;
    left: 15px;
    color: #800000;
    font-size: 1rem;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 1px solid #e2d3be;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background-color: #fafafa;
    font-family: 'Poppins', sans-serif;
    color: #333;
    transition: border-color 0.3s ease;
}

.input-box textarea {
    resize: none;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #800000;
    background-color: #ffffff;
}

.input-box.textarea-box i {
    top: 15px;
}

/* Submit Button */
.submit-btn-wrapper {
    text-align: center;
    margin-top: 5px;
}

.popup-submit-btn {
    background: linear-gradient(135deg, #800000 0%, #500000 100%);
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.4);
    background: linear-gradient(135deg, #a00000 0%, #600000 100%);
}

/* Responsive Support */
@media (max-width: 600px) {
    .form-input-row {
        grid-template-columns: 1fr;
    }
    .white-form-card {
        padding: 20px 15px;
    }
    .popup-main-title {
        font-size: 1.7rem;
    }
}