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

:root {
    --primary-blue: #0b2553;
    --accent-yellow: #ffb703;
    --whatsapp-green: #25d366;
    --text-dark: #0f1c3f;
    --text-light: #666666;
    --transition-speed: 0.3s;
}


/* ===================================================
   2. HEADER / NAVBAR (Desktop)
=================================================== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 70px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* --- Logo Section --- */
.brand-identity {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 15px;
    text-decoration: none;
}

.brand-logo {
    position: relative;
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text-img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* --- Navigation List --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 12px;
    transition: color var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #0056b3;
}

/* --- Dropdown Engine (Desktop Hover) --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-speed), transform var(--transition-speed), visibility var(--transition-speed);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: background var(--transition-speed);
}

.dropdown-menu li a:hover {
    background-color: #f4f7fa;
    color: #0056b3;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform var(--transition-speed);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* --- Mobile Menu Toggle Button (hidden on desktop) --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}


/* ===================================================
   3. HERO SECTION (Desktop)
=================================================== */
.hero-section {
    width: 100%;
    height: 600px;
    background:
        linear-gradient(
            to right,
            #ffffff 0%,
            #ffffff 25%,
            rgba(255, 255, 255, 0) 50%
        ),
        url("bg1.png");
    background-size: 100% 100%, cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 6%;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: center;
    gap: 20px;
}

/* --- LEFT CONTENT --- */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    color: var(--primary-blue);
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    
}

.main-heading {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    margin-bottom: 20px;
}

.main-heading span {
    color: var(--accent-yellow);
}

.description {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-call {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.btn-services {
    background-color: transparent;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.btn-call:hover,
.btn-services:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
/* +++++++++++++++++++++==BOOKING CARD+++++++++ */
.booking-card {
        padding: 40px;
        border-radius: 15px;

    }

    .booking-card h3 { font-size: 20px; }

   
    .form-control {
        height: 45px;
        font-size: 13px;
        padding: 0 12px 0 38px;
    }

    .btn-book {
        height: 46px;
        font-size: 15px;
        margin-bottom: 0;
    }

    .form-reviews {
        margin-top: 15px;
        justify-content: center;
    }

/* --- Trusted customers badges --- */
.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.badge-item i {
    color: var(--accent-yellow);
    font-size: 18px;
}

/* --- MIDDLE IMAGE (TECHNICIAN) --- */
.hero-middle {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

.technician-img {
    max-width: 180%;
    padding-top: 20px;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
    transform-origin: bottom center;
    z-index: 3;
    
}

/* --- RIGHT CONTENT (FORM) --- */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.booking-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.booking-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 13px 15px 13px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background-color: #fafafa;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    background-color: #ffffff;
}

select.form-control {
    appearance: none;
}

.btn-book {
    width: 100%;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-bottom: 20px;
}

.btn-book:hover {
    background-color: #e5a400;
}

.form-reviews {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.customer-avatars {
    display: flex;
}

.customer-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -10px;
    object-fit: cover;
}

.review-text-box {
    display: flex;
    flex-direction: column;
}

.review-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
}

.stars {
    color: var(--accent-yellow);
    font-size: 11px;
}


/* ===================================================
   4. SERVICES SECTION (Desktop)
=================================================== */
.services {
    padding: 30px 6%;
}

.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading span {
    color: #f89b00;
    font-weight: 1000;
    font-size: 14px;
}

.heading h2 {
    font-size: 42px;
    margin-top: 10px;
    color: #0b1b52;
}

.service-grid,
.more-services {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.card i {
    font-size: 45px;
    color: #f8b400;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    color: #091d58;
    margin-bottom: 5px;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card a {
    text-decoration: none;
    font-weight: 600;
    color: #091d58;
}

.card a i {
    font-size: 14px;
    margin-left: 8px;
    color: #091d58;
}

.more-services {
    margin-top: 35px;
    display: none;
}

.more-services.active {
    display: grid;
}
/* =======================================================/* ==========================
                                                WHY CHOOSE SECTION
================================================================================= */ */

.why-choose{

    width:100%;
    padding:80px 6%;
    background:#fff;
    

   

}

.why-container{

    display:grid;
    padding: 60px;

    grid-template-columns:
    1fr
    1fr
    1fr;

    gap:40px;

    align-items:center;

}

/* Left */

.sub-title{

    color:#1ca64b;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;

}

.why-left h2{

    font-size:42px;
    color:#0b1b52;
    margin:12px 0;

    line-height:1.2;

}

.why-left h2 span{

    color:#f6a400;

}

.why-left p{

    color:#555;
    line-height:1.8;
    margin-bottom:25px;

}

.why-list{

    list-style:none;
    padding:0;
    margin:0 0 30px;

}

.why-list li{

    margin-bottom:15px;
    color:#333;
    font-weight:500;

}

.btn{

    display:inline-block;
    padding:15px 28px;

    background:#0b1b52;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;

}

.btn:hover{

    background:#173d92;

}

/* Center Image */

.why-image{

    position:relative;

}

.why-image img{

    width:130%;
    border-radius:18px;
    display:block;


}

/* ///////////////////////////////////////////Experience Box */

.experience{

    position:absolute;

    left:20px;
    bottom:20px;

    background:#fff;

    padding:12px;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.experience h3{

    color:#f6a400;
    font-size:22px;
    margin-bottom:5px;

}

.experience p{

    color:#555;
    line-height:1.4;
    font-size: 12px;
    font-weight: 400;

}

/* Right */

.service-area{

    position:relative;
    padding-left: 120px;

}

.service-area h3{

    margin:15px 0 25px;

    color:#0b1b52;

    font-size:30px;
    

}

.area-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    padding-bottom: 60PX;

}

.area-grid span{

    color:#333;
    font-weight:500;

}

.more{

    font-weight:bold;
    padding-bottom: 120px;

}
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@   RESENT   PROJEXT   @@@@@@@@@@@@@@@@@@@@@@@ */

.projects{

    width:100%;
    padding:10px 6%;
    background:#d69e6a25;
    position:relative;
    overflow:hidden;

}

/* Heading */

.heading{

    text-align:center;
    margin-bottom:40px;

}

.heading span{

    color:#20a84a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

}

.heading h2{

    font-size:40px;
    color:#0b1b52;
    margin-top:10px;

}

/* Slider */

.slider{

    overflow:hidden;
    width:100%;

}

.project-track{

    display:flex;
    gap:18px;

    transition:.5s ease;

}

/* Card */

.card{

    min-width:180px;
    flex:0 0 180px;
    text-align:center;

}

.card img{

    width:100%;
    height:130px;

    object-fit:cover;

    border-radius:12px;

    transition:.4s;

    cursor:pointer;

}

.card img:hover{

    transform:scale(1.06);

}

.card h4{

    margin-top:12px;

    color:#0b1b52;

    font-size:15px;

    font-weight:600;

}

/* ==========================
   ARROWS
========================== */

.arrow{

    position:absolute;

    top:52%;

    transform:translateY(-50%);

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 18px rgba(0,0,0,.15);

    cursor:pointer;

    font-size:18px;

    z-index:20;

    transition:.3s;

}

.arrow:hover{

    background:#0b1b52;

    color:#fff;

}

.left{

    left:20px;

}

.right{

    right:20px;

}

/* ==========================
   BUTTON
========================== */

.btn-box{

    text-align:center;

    margin-top:35px;

}

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 34px;

    border:2px solid #0b1b52;

    color:#0b1b52;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.project-btn:hover{

    background:#0b1b52;

    color:#fff;

}
/* <!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% MAP SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --> */
.map-section{
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #ffB703;
}

/* GOOGLE MAP */
.map-frame{
    width: 100%;
    height: 500px;
    border: 0;
    padding-bottom: 20px;
}

/* TOP BADGE */
.map-badge{
    position: absolute;
    top: 8px;
    left: 5px;
    background: #ffB703;
    color: #0b1b52;
    padding: 20px 18px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10;
}

/* BOTTOM BAR */
.map-info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.info-box{
    text-align: center;
    font-weight: 600;
    color: #ffB703;
}

.info-box span{
    display:block;
    font-size: 12px;
    color: #0b1b52;
}
/* <!-- ////////////////////////////////////////////////////////// FOOTER START///////////////////////////////// --> */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

.footer{

background:#041b46;

color:#fff;

}

.footer-top{

display:flex;

justify-content:space-between;

align-items:center;

padding:25px 8%;

border-bottom:1px solid rgba(255,255,255,.15);

}

.top-box{

display:flex;

align-items:center;

gap:18px;

}

.top-box i{

font-size:38px;

color:#f9b400;

}

.top-box h2{

color:#f9b400;

font-size:35px;

}

.footer-container{

padding:60px 8%;

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr 1.2fr;

gap:35px;

}

.about img{

width:110px;
margin-bottom:20px;
border-radius: 50px;
 display:block;
    margin-left:auto;
    margin-right:auto;
}

.about p{

line-height:28px;

color:#d5d5d5;

margin-bottom:25px;

}

.footer-col h3{

margin-bottom:18px;

font-size:20px;

}

.footer-col ul{

list-style:none;

}

.footer-col ul li{

margin:12px 0;

color:#d5d5d5;

}

.footer-col ul li a{

color:#d5d5d5;

text-decoration:none;

transition:.3s;

}

.footer-col ul li a:hover{

color:#f9b400;

padding-left:8px;

}

.social{

display:flex;

gap:15px;

margin-top:20px;

}

.social a{

width:45px;

height:45px;

border:1px solid #fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:20px;

text-decoration:none;

transition:.3s;

}

.social a:hover{

background:#f9b400;

border-color:#f9b400;

color:#000;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.15);

padding:20px 8%;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom a{

color:#fff;

text-decoration:none;

margin-left:20px;

}

.footer-bottom a:hover{

color:#f9b400;

}
/* <!-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ FLOOTING BUTTAN @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ --> */
body{
    font-family:'Poppins',sans-serif;
}

/* Floating Box */
.floating-contact{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
    transition:.4s;
}

/* Hide On Scroll */
.floating-contact.hide{
    transform:translateX(120px);
    opacity:0;
}

/* Buttons */
.contact-btn{
    width:64px;
    height:64px;

    border-radius:50%;
    text-decoration:none;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:30px;

    position:relative;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* WhatsApp */
.whatsapp{
    background:#25D366;
}

/* Call */
.call{
    background:linear-gradient(135deg,#ff5a5f,#ff2d55);
}

/* Hover */
.contact-btn:hover{
    transform:translateY(-8px) scale(1.12);
}

/* Tooltip */
.contact-btn::before{
    content:attr(data-text);

    position:absolute;
    right:78px;

    background:#111827;
    color:#fff;

    padding:10px 14px;

    border-radius:10px;

    font-size:13px;
    font-weight:500;

    white-space:nowrap;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.contact-btn:hover::before{
    opacity:1;
    visibility:visible;
    right:85px;
}

/* Pulse Ring */
.contact-btn::after{
    content:"";
    position:absolute;

    width:100%;
    height:100%;
    border-radius:50%;

    border:2px solid rgba(255,255,255,.4);

    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
opacity:1;
}

70%{
transform:scale(1.5);
opacity:0;
}

100%{
opacity:0;
}

}






/* =========================================/* ==============================================================================================
 /* =========================================  5. MEDIA QUERIES (Responsive - Tablet & Mobile) ===========================================*/
/* =========================================   Sab responsive rules yahan se neeche hain=========================================== */
/* ======================================================================================================================================= */  

/* ===================================================
   MOBILE RESPONSIVE MEDIA QUERIES
=================================================== */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
/* Global safety */
img { max-width: 100%; height: auto; }

/* ===================================================
   NAVBAR
=================================================== */
@media (max-width: 991px) {
    .nav-container {
        justify-content: space-between;
        padding: 10px 4%;
    }

    .menu-toggle {
        display: block;
        background-color: var(--accent-yellow);
        border-radius: 8px;
        padding: 8px 14px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        border-top: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-menu.active {
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .nav-link {
        padding: 15px 24px;
        border-bottom: 1px solid #fafafa;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f9fbfd;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu.open {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 40px;
    }
}

@media (max-width: 480px) {
    .brand-logo { height: 45px; }
    .nav-container { height: 60px; }
}


/* ===================================================
   HERO SECTION
=================================================== */
/* ===================================================
   HERO SECTION - FINAL CLEAN VERSION
=================================================== */

@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding: 40px 5%;
        /* Background image ka size chota + halka overlay color */
        background: 
            linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.208) 0%,
                rgba(255,255,255,0.6) 100%
            ),
            url("bg1.png");
        background-size: 140%;      /* <-- bg pic ka size, chota karne ke liye value ghatayein e.g. 40% */
        background-position: center 45%;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-left,
    .hero-middle,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

    .description {
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-middle {
        justify-content: center;
        align-items: center;
        overflow: hidden;
        max-width: 100%;
    }

    .technician-img {
        max-width: 100%;
        width: auto;
        transform: none;
        padding-top: 0;
    }

    .hero-right {
        display: flex;
        justify-content: center;
    }

    .booking-card {
        width: 100%;
        max-width: 420px;
    }
}
@media (max-width: 768px) {
    #whatsappForm {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .btn-book {
        grid-column: 1 / 3;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .main-heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .description {
        font-size: 15px;
    }

    .cta-buttons {
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }

    .btn-call,
    .btn-services {
        flex: 1;
        min-width: 0;
        padding: 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .trust-badges {
        display: none;
    }

    .technician-img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .technician-img {
        max-width: 80%;
    }
}
        /* ============================ booking card ============================= */
    

    


@media (max-width: 480px) {
    .technician-img { max-width: 70%; }
    .booking-card { padding: 15px; }
    #whatsappForm { gap: 8px; }
    .form-control { height: 42px; font-size: 12px; }
    .btn-book { height: 42px; font-size: 14px; }
}


/* ===================================================
   SERVICES SECTION
=================================================== */
@media (max-width: 991px) {
    .services { padding: 40px 5%; }

    .heading h2 { font-size: 30px; }

    .service-grid,
    .more-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .heading span { font-size: 12px; }
    .heading h2 { font-size: 26px; }

    .service-grid .card,
    .more-services .card {
        padding: 18px 10px;
    }

    .service-grid .card i,
    .more-services .card i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-grid .card h3,
    .more-services .card h3 {
        font-size: 14px;
    }

    .service-grid .card p,
    .more-services .card p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .service-grid .card a,
    .more-services .card a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .service-grid,
    .more-services {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===================================================
   WHY CHOOSE / ABOUT US SECTION
=================================================== */
@media (max-width: 991px) {
    .why-choose { padding: 60px 5%; }

    .why-container {
        grid-template-columns: 1fr;
        padding: 20px;
        text-align: center;
    }

    .why-left h2 { font-size: 32px; }

    .why-list {
        text-align: left;
        display: inline-block;
    }

    /* FIX: image overflow */
    .why-image img {
        width: 100%;
        margin: 0 auto;
    }

    .experience {
        left: 50%;
        transform: translateX(-50%);
    }

    /* FIX: remove side padding causing cut-off */
    .service-area {
        padding-left: 0;
        text-align: center;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        padding-bottom: 20px;
    }

    .more {
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .why-left h2 { font-size: 28px; }
    .service-area h3 { font-size: 22px; }
    .experience h3 { font-size: 28px; }
}

@media (max-width: 991px) {
    .area-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        justify-items: center;
        padding-bottom: 20px;
    }

    .area-grid span {
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================================
   RECENT PROJECTS SECTION
=================================================== */
@media (max-width: 992px) {
    .projects { padding: 50px 5%; }
    .heading h2 { font-size: 30px; }

    .project-track .card {
        min-width: 220px;
        flex: 0 0 220px;
    }

    .project-track .card img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .projects { padding: 50px 4%; }
    .heading h2 { font-size: 26px; }
    .heading span { font-size: 13px; }

    .project-track .card {
        min-width: 85%;
        flex: 0 0 85%;
        margin: auto;
    }

    .project-track .card img {
        height: 200px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
        top: 45%;
    }

    .left { left: 8px; }
    .right { right: 8px; }

    .project-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .project-track .card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .project-track .card img {
        height: 180px;
    }

    .heading h2 { font-size: 22px; }
}


/* ===================================================
   MAP SECTION
=================================================== */
@media (max-width: 768px) {
    .map-section {
        border-radius: 10px;
    }

    .map-frame {
        height: 300px;
    }

    /* FIX: absolute positioning breaks stacking on mobile */
   @media (max-width: 768px) {
    .map-info {
        position: relative;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px;
        padding: 12px 8px;
    }

    .info-box {
        font-size: 10px;
        flex: 1;
    }

    .info-box span {
        font-size: 9px;
    }
}
}


/* ===================================================
   FOOTER SECTION
=================================================== */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding: 15px 4%;
    }

    .top-box {
        gap: 8px;
    }

    .top-box i {
        font-size: 22px;
    }

    .top-box h3 {
        font-size: 13px;
    }

    .top-box p {
        font-size: 11px;
    }

    .top-box h2 {
        font-size: 18px;
    }
}

   @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        gap: 25px 15px;
    }

    /* About section pura width le (logo/text bara hota hai) */
    .footer-col.about {
        grid-column: 1 / 3;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col ul li {
        font-size: 14px;
    }
}

    .social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 5%;
    }

    .footer-bottom a {
        margin: 0 10px;
    }

    .top-box {
        justify-content: center;
    }

    .about img {
        margin: 0 auto 40px;
        
        ;
    }



/* ===================================================
   FLOATING CONTACT BUTTONS
=================================================== */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .contact-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    /* Tooltip hover doesn't work well on touch, hide it */
    .contact-btn::before {
        display: none;
    }
}
/* &&&&&&&&&&&&&&&&&&&&&&&&&&&& PAGE &&&&&&&&&&&&&&&&&&&&&&&&&&&&& */
