* {
    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;
}


/* Order Page Styles */
.order-section {
    padding: 60px 5%;
    background-color: #fff;
}

.order-container {
    max-width: 1100px;
    margin: 0 auto;
}

.order-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.input-field {
    margin-bottom: 25px;
}

.input-field label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.input-field label span {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
}

/* Specific Rows */
.phone-row,
.deadline-row,
.counter-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.phone-row select {
    width: 35%;
}

.deadline-row input {
    width: 65%;
}

/* Counter Logic */
.counter-row button {
    width: 40px;
    height: 40px;
    background: #bbb;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
}

#plus {
    background: #888;
}

/* Thora dark jaisa image mein hai */

.counter-row input {
    width: 60px;
    text-align: center;
}

.counter-row span {
    font-weight: 400;
    color: #555;
}

/* Description & Right Side */
.add-files {
    color: #FFAC1C;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}

.experts-status {
    color: #28a745;
    font-size: 14px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
}

.terms-check {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-bottom: 25px;
}

.order-submit-btn {
    width: 100%;
    background: #FF7F00;
    /* Bright Orange */
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 850px) {
    .order-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 250px;
}

.check-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    line-height: 60px;
    margin: 0 auto 15px;
}

.popup-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.popup-content button {
    background: #FF7F00;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
}

/* Chrome/Safari mein arrows hatane ke liye */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

textarea {
    resize: none;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    width: 100%;
}

@media (max-width: 768px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
}