* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-weight: 600;

}

/* --- Global Resets --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #FFAC1C;
    --secondary-color: #C23571;
    --text-dark: #333;
}

nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
}

/* --- Maxnav --- */
.maxnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 5px 5%;
    color: white;
}
.box1, .contact, .email { display: flex; align-items: center; gap: 10px; }
.box1 h2, .box2 h2 { font-size: 14px; margin: 0; }
.divider { width: 1px; height: 20px; background: white; margin: 0 15px; }

.save-btn {
    background: #4CAF50;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.save-btn a { color: white; text-decoration: underline; font-weight: bold; }

/* --- Minnav --- */
.minnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background: white;
}

.logo img { width: 180px; }

.wq {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.wq li {
    position: relative;
    padding: 15px 0;
}

.wq li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

/* --- MEGA MENU & CITIES FIXED (Desktop) --- */
.mega-dropdown { position: static !important; }
.minnav .list .wq li:last-child { position: relative !important; }

.mega-menu, .simple-menu {
    position: absolute;
    margin-top: -10px; 
    top: 100%; 
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 9999;
}

.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
}

.simple-menu {
    left: 0;
    width: 250px !important;
    padding: 20px !important;
}

/* Hover Bridge */
.mega-menu::before, .simple-menu::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.wq li:hover > .mega-menu,
.wq li:hover > .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0px;
}

/* Mega Menu Internal Layout (Desktop) */
.mega-container { display: flex; justify-content: space-between; gap: 30px; }
.mega-col { flex: 1; }
.col-title { font-size: 17px; margin-bottom: 15px; color: #000; position: relative; padding-bottom: 8px; font-weight: bold; }
.col-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary-color); }
.mega-links { list-style: none; padding: 0; }
.mega-links li { margin-bottom: 8px; padding: 0; }
.mega-links li a { font-weight: 400; color: #666 !important; font-size: 14px; display: block; }
.mega-links li a:hover { color: var(--primary-color) !important; transform: translateX(5px); }

/* Order Button (Desktop Only) */
.order-btn {
    background: #FFAC1C;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}
.order-btn a { color: white; text-decoration: none; font-weight: bold; }

/* --- RESPONSIVE SETTINGS (MOBILE & TABLET) --- */
.menu-toggle { display: none; font-size: 25px; cursor: pointer; }

@media (max-width: 1024px) {
    /* 1. Navbar CTA (Order Now) Hata diya */
    .minnav .button {
        display: none !important;
    }

    /* 2. Menu Toggle Show */
    .menu-toggle { display: block; order: 2; }
    .minnav .logo { order: 1; }

    /* 3. List Styles */
    .minnav .list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .minnav .list.active { height: auto; padding: 20px 0; }
    .minnav .list .wq { 
        flex-direction: column; 
        padding-left: 20px; 
        gap: 0; 
    }
    .wq li { padding: 10px 0; }

    /* 4. Dropdown "Aik Dosray Kay Nichay" (Stacked) */
    .mega-menu, .simple-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none; /* JS ya Hover se khulega */
        box-shadow: none;
        padding: 15px !important;
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
    }
    
    /* Mobile Hover/Click support */
    .wq li:hover > .mega-menu, 
    .wq li:hover > .simple-menu { 
        display: block; 
    }

    /* Columns ko aik line mein hone ke bajaye vertical kar diya */
    .mega-container { 
        flex-direction: column; 
        gap: 20px; 
    }

    .mega-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .maxnav { display: none; }
}



/* Footer Styling */
.main-footer {
    background: #2A2A2A;
    color: white;
    padding: 50px 20px 20px;
    position: relative;
    /* Essential for overall structure */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Tablet aur mobile pe line break karne ke liye */
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-section {
    width: 20%;
    min-width: 200px;
    /* Sections ko ek had tak chota hone dega phir niche bhej dega */
    margin-bottom: 20px;
}

.footer-section .icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-section .icons .fa-brands {
    font-size: 20px;
}

.footer-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: white;
}

/* --- Security Section (Modified for Responsiveness) --- */
.security {
    /* Absolute position sirf baray screens (desktop) ke liye media query mein rakhi hai */
    margin-bottom: 20px;
}

.security p {
    margin-bottom: 10px;
}

.security .img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.security .img img {
    width: 50px;
}

.security2 {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.security2 img {
    width: 80px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    width: 100%;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* WhatsApp Icon */
.section11 {
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
}

.section11 img {
    width: 55px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop only behavior for Security (Jaise aapne set kiya tha) */
@media (min-width: 1025px) {
    .security {
        position: absolute;
        top: 180px;
        left: 73%;
    }
}

/* Tablet & Mobile Screens */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        width: 45%;
        /* Aik line mein do boxes */
        min-width: 250px;
    }

    .footer-section p {
        text-align: start;
    }

    .footer-section h2 {
        text-align: start;
    }

    .footer-section ul li {
        text-align: start;
    }

    .footer-section .icons {
        justify-content: center;
        margin-left: 0;
    }

    .security {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .security .img,
    .security2 {
        justify-content: center;
    }
}

/* Small Mobile Screens */
@media (max-width: 600px) {
    .footer-section {
        width: 100%;
        /* Aik line mein sirf aik box */
    }

    .section11 img {
        width: 45px;
        /* Mobile pe WhatsApp icon thora chota */
    }
}




.section10 {
    margin-bottom: 50px;
    background-color: #e7b256d3;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
}

/* Desktop sizing */
.section10 .box1 img,
.section10 .box3 img {
    opacity: 0.60;
    width: 350px;
    /* Laptop size */
    height: auto;
    display: block;
}

.section10 .box2 {
    display: flex;
    flex-direction: column;
    /* Text upar, Button niche */
    align-items: center;
}

.section10 .box2 h2 {
    font-size: 25px;
    width: 350px;
    margin: 0;
    color: #000;
    font-weight: bold;
}

.section10 .box2 button {
    background-color: var(--primary-color);
    border-radius: 5px;
    border: none;
    padding: 12px 40px;
    margin-top: 25px;
    /* Button text ke niche gap */
    cursor: pointer;
}

.section10 .box2 button a {
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* --- RESPONSIVE LOGIC --- */

@media (max-width: 850px) {
    .section10 {
        flex-direction: column;
        /* Sab kuch ek dusre ke upar niche aa jayega */
        gap: 20px;
    }

    .section10 .box1 img,
    .section10 .box3 img {
        width: 280px;
        /* Mobile pe images thori choti */
        margin: 0 auto;
    }

    /* Mobile pe images ki opacity thori kam takay text saaf dikhay */
    .section10 .box1 img {
        margin-bottom: -10px;
    }

    .section10 .box3 img {
        margin-top: -10px;
    }

    .section10 .box2 h2 {
        width: 100%;
        max-width: 300px;
        font-size: 22px;
    }
}





/* Parent container */
.faq-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

/* Flexbox for 2 Columns */
.faq-columns {
    display: flex;
    gap: 30px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    /* Light separator */
}

/* Question styling */
.faq-question {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    transition: 0.3s;
}

/* Plus icon using ::after */
.faq-question::after {
    content: "+";
    font-size: 22px;
    transition: transform 0.3s;
    color: #f7a400;
    /* Matching your theme color */
}

/* Active State Styles */
.faq-item.active .faq-question {
    background-color: #f9f9f9;
}

.faq-item.active .faq-question::after {
    content: "-";
    transform: rotate(180deg);
}

/* Answer styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Smooth slide */
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    padding: 10px 15px 20px 15px;
}

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 992px) {
    .faq-columns {
        flex-direction: column;
        /* Tablet/Mobile pe 1 column */
        gap: 0;
    }

    .faq-container h2 {
        font-size: 26px;
    }
}










.section11 {
    z-index: 999;
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section11 img {
    width: 55px;
}


/* --- About Hero Section --- */
.about-hero {
    background: linear-gradient(to bottom, #fff, rgba(241, 138, 21, 0.05));
    padding: 60px 5%;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side: Content Styling */
.about-content {
    flex: 1.2;
    /* Text ko thoda zyada space diya */
}

.sub-title {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 20px;
    line-height: 1.3;
    color: #222;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    max-width: 550px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

/* Right Side: Image Styling */
.about-image {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.img-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.img-frame img {
    width: 100%;
    border-radius: 15px;
    /* Left side par border-shadow di hai kyunke image right mein hai */
    box-shadow: -15px 15px 0px var(--primary-color);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--secondary-color);
    /* C23571 */
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge span {
    font-size: 20px;
    font-weight: bold;
    display: block;
}

.experience-badge p {
    font-size: 10px;
    margin: 0;
}

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        /* Mobile par stack karega */
        text-align: center;
    }

    .about-content {
        order: 1;
        /* Content pehle */
        margin-bottom: 50px;
    }

    .about-image {
        order: 2;
        /* Image niche */
        justify-content: center;
    }

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }

    .img-frame img {
        box-shadow: -10px 10px 0px var(--primary-color);
    }
}





/* --- Detail About Section --- */
.detail-about {
    padding: 80px 5%;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Grid on Right */
.about-features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-box {
    background: #fff8ee;
    /* Very light theme color */
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateX(10px);
}

.icon-circle {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-box h3 {
    margin-bottom: 8px;
    color: #333;
}

/* Divider */
.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 60px 0;
}

/* Process Section */
.center-head {
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-num {
    font-size: 50px;
    font-weight: 800;
    color: rgba(241, 138, 21, 0.15);
    /* Faded theme color */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    font-size: 22px;
}

.step p {
    color: #666;
    font-size: 15px;
}

/* --- Responsive Detail Section --- */
@media (max-width: 992px) {
    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .process-grid {
        flex-direction: column;
        gap: 40px;
    }

    .feature-box:hover {
        transform: translateY(-5px);
    }
}


/* --- Stylish Long Content Section --- */
.stylish-about {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
}

/* Background decorative element (stylish look ke liye) */
.stylish-about::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 10%;
    font-size: 200px;
    color: rgba(241, 138, 21, 0.05);
    /* Halka sa orange shadow quote */
    font-family: serif;
}

.stylish-about .container {
    max-width: 900px;
    /* Text reading ke liye tight width behtar hai */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stylish-about h2 {
    font-size: clamp(28px, 5vw, 45px);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    color: #222;
}

.stylish-about h2 span {
    color: var(--primary-color);
}

.prose-container {
    border-left: 4px solid var(--primary-color);
    /* Side border for style */
    padding-left: 40px;
}

.prose-container h3{
    color: #f7a400;
    font-size: 25px;
}
.prose-container p{
    font-size: 17px;
    line-height: 2;
    /* Boht smooth reading */
    color: #444;
    text-align: justify;
    font-weight: 400;
}

.long-para {
    font-size: 20px;
    line-height: 2;
    /* Boht smooth reading */
    color: #444;
    text-align: justify;
    font-weight: 400;
}

/* PEHLA LAFZ BARA (Drop Cap Style) */
.long-para::first-letter {
    font-size: 60px;
    font-weight: bold;
    color: var(--primary-color);
    float: left;
    margin-right: 15px;
    line-height: 1;
    font-family: serif;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .prose-container {
        padding-left: 20px;
        border-left: 3px solid var(--primary-color);
    }

    .long-para {
        font-size: 17px;
        text-align: left;
    }

    .long-para::first-letter {
        font-size: 50px;
    }
}



/* --- Review Section & Title --- */
.review-section {
    padding: 60px 0;
    background-color: transparent;
    /* Taake aapke page ke background se match kare */
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    /* Default dark color */
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.section-title span {
    color: #f7a400;
    /* Aapki theme ka Orange color */
}

/* --- Carousel Parent --- */
.carousel {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin: 20px auto 50px auto;
    border-radius: 10px;
    padding: 20px 0;
    background: none;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    /* Space between cards */
}

/* --- Individual Card (Back to your Dark Theme) --- */
.card {
    flex: 0 0 calc(33.33% - 14px);
    /* Desktop: 3 cards */
    max-width: 350px;
    background: #f9f9f9;
    /* Your original dark color */
    border-radius: 10px;
    padding: 25px 20px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid #f7a400;
    /* Nichay orange line for style */
}

.card img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #f7a400;
}

.card h3 {
    margin: 10px 0 5px 0;
    font-size: 18px;
    color: #f7a400;
    /* Name orange kar diya taake dark bg pe chamke */
}

.rating {
    margin: 5px 0;
    color: gold;
}

.card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    text-align: center;
}

/* --- Navigation Buttons --- */
.buttons {
    position: absolute;
    /* 50% se badha kar 60% ya 65% kar diya taake niche aa jayein */
    top: 60%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 5px;
    /* Cards ke thoda aur kareeb */
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
}

.buttons button {
    background-color: #fff;
    border: none;
    color: #111;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    transition: 0.3s;
}

.buttons button:hover {
    background-color: #f7a400;
    color: #fff;
}

/* --- RESPONSIVE LOGIC --- */

@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc(50% - 10px);
        /* Tablet: 2 Cards */
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 100%;
        /* Mobile: 1 Card poori screen pe */
    }

    .slides {
        gap: 0;
    }

    .carousel {
        width: 95%;
    }

    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }
}