/* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#0F172A;

    overflow-x:hidden;

    line-height:1.7;
}

img{

    max-width:100%;

    display:block;
}

a{

    text-decoration:none;
}

ul{

    list-style:none;
}

/* ===================================
   ROOT VARIABLES
=================================== */

:root{

    --primary:#1E4DFF;

    --primary-dark:#0A2F8F;

    --primary-light:#EDF2FF;

    --heading:#0F172A;

    --text:#64748B;

    --white:#FFFFFF;

    --border:#E5E7EB;

    --section:#F8FAFC;

    --shadow:
    0 15px 40px rgba(30,77,255,.08);

    --radius:20px;

    --transition:.35s ease;
}

/* ===================================
   CONTAINER
=================================== */

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding-left:20px;

    padding-right:20px;
}

/* ===================================
   COMMON BUTTONS
=================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:600;

    border-radius:14px;

    transition:var(--transition);

    box-shadow:
    0 12px 25px rgba(30,77,255,.18);
}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);
}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    background:#fff;

    border:1px solid var(--border);

    color:var(--heading);

    font-size:15px;

    font-weight:600;

    border-radius:14px;

    transition:var(--transition);
}

.btn-secondary:hover{

    border-color:var(--primary);

    color:var(--primary);
}

/* ===================================
   HEADER
=================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    border-bottom:1px solid #EEF2F7;
}

.navbar{

    height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

.logo img{

    height:60px;
}

.nav-links{

    display:flex;

    align-items:center;

    gap:40px;
}

.nav-links a{

    position:relative;

    color:#0F172A;

    font-size:15px;

    font-weight:500;

    transition:.3s;
}

.nav-links a:hover{

    color:var(--primary);
}

.nav-links .active{

    color:var(--primary);
}

.nav-links .active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:100%;

    height:3px;

    background:var(--primary);

    border-radius:20px;
}

/* ===================================
   HERO SECTION
=================================== */

.hero{
    padding:130px 0 50px;
    background:#fff;
}

.hero-content{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#1E4DFF;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#64748B;
    max-width:620px;
}

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-abstract-bg{
    position:absolute;
    width:100%;
    height:100%;
    z-index:0;
}

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(5px);
}

/* Main Blue Shape */
.blob-1{
    width:420px;
    height:420px;
    background:linear-gradient(
        135deg,
        #1E4DFF,
        #0A2F8F
    );

    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* Light Blue Layer */
.blob-2{
    width:320px;
    height:320px;

    background:
    rgba(30,77,255,.20);

    top:20px;
    right:20px;
}

/* Bottom Layer */
.blob-3{
    width:280px;
    height:280px;

    background:
    rgba(30,77,255,.12);

    bottom:10px;
    left:50px;
}

.hero-right img{
    position:relative;
    z-index:5;
    max-width:500px;
    width:100%;
}

.hero-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:20;
}

.hero-card i{
    color:#1E4DFF;
    font-size:24px;
}

.pickup-card{
    left:-40px;
    top:45%;
}

.tracking-card{
    right:-30px;
    bottom:50px;
}

.hero-card h4{
    font-size:16px;
    margin-bottom:5px;
}

.hero-card p{
    font-size:13px;
    color:#64748B;
}

.service-area{
    margin-top:25px;
    font-weight:500;
    color:#64748B;
}

.hero-left p{
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: #64748B;
    margin: 25px 0;
}

/* Features */
.hero-features{
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
    margin: 25px 0 35px;
}

.hero-features span{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
}

.hero-features i{
    color: #1E4DFF;
}

/* Buttons */
.hero-buttons{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary{
    min-width: 220px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary{
    background: #1E4DFF;
    color: #fff;
}

.btn-secondary{
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #111827;
}

.service-area{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #64748B;
    font-weight: 500;
}
/* ===================================
   COMMON SECTION SPACING
=================================== */

.services,
.stats,
.why-us,
.process,
.testimonials,
.cta{

    padding: 70px 0;
}


/* ===================================
   SERVICES SECTION
=================================== */

.services{

    background:#FFFFFF;
}

.services-wrapper{

    background:#FFFFFF;

    border:1px solid #EEF2F7;

    border-radius:24px;

    padding:40px;
}

.services-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:35px;
}

.services-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-size:15px;

    font-weight:600;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;
}

.service-card{

    background:#FFFFFF;

    border:1px solid #EEF2F7;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:var(--transition);
}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(30,77,255,.08);

    border-color:#DCE7FF;
}

.service-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;
}

.service-icon i{

    font-size:32px;

    color:#1E4DFF;
}

.service-card:hover .service-icon{

    background:#1E4DFF;
}

.service-card:hover .service-icon i{

    color:#FFFFFF;
}

.service-card h3{

    font-size:18px;

    color:var(--heading);

    margin-bottom:10px;
}

.service-card p{

    font-size:14px;

    color:var(--text);

    line-height:1.7;
}

.service-card a{

    display:inline-block;

    margin-top:18px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;
}


.services-grid{
    display:grid !important;
    grid-template-columns:repeat(5,1fr) !important;
    gap:20px;
}

.service-card{
    min-width:0;
    width:100%;
    box-sizing:border-box;
}

/* Tablet */

@media (max-width: 992px){

    .services-grid{
        grid-template-columns: repeat(3, 1fr) !important;
    }

}

/* Small Tablet */

@media (max-width: 768px){

    .services-grid{
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

}

/* Mobile */

@media (max-width: 576px){

    .services-grid{
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .service-card{
        max-width: 100%;
    }

}

/* ===================================
   BLUE STATS STRIP
=================================== */

.stats{

    padding-top:40px;

    padding-bottom:40px;

    background:#fff;
}

.stats-box{

    background:
    linear-gradient(
    135deg,
    #0A2F8F,
    #1E4DFF
    );

    border-radius:20px;

    padding:35px;
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;
}

.stat-item{

    text-align:center;

    color:white;

    position:relative;
}

.stat-item:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;

    right:-12px;

    width:1px;

    height:45px;

    background:
    rgba(255,255,255,.25);

    transform:translateY(-50%);
}

.stat-item h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:5px;
}

.stat-item p{

    font-size:14px;

    opacity:.9;
}

/* ===================================
   WHY CHOOSE US
=================================== */

.why-us{

    background:#FFFFFF;
}

.why-wrapper{

    display:grid;

    grid-template-columns:450px 1fr;

    gap:30px;
}

.why-left{

    background:
    linear-gradient(
    180deg,
    #021B60,
    #0A2F8F
    );

    border-radius:24px;

    padding:40px;

    color:white;
}

.why-left span{

    color:#8CB0FF;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;
}

.why-left h2{

    font-size:42px;

    line-height:1.2;

    margin-top:15px;

    margin-bottom:25px;
}

.why-features{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.why-feature{

    display:flex;

    gap:15px;
}

.why-feature-icon{

    min-width:45px;

    height:45px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;
}

.why-feature h4{

    font-size:16px;

    margin-bottom:5px;
}

.why-feature p{

    font-size:14px;

    opacity:.85;
}

.why-image{

    margin-top:30px;

    border-radius:18px;

    overflow:hidden;
}

.why-image img{

    width:100%;
}

/* ===================================
   PROCESS SECTION
=================================== */

.process{

    background:#FFFFFF;
}

.process-card{

    background:#FFFFFF;

    border:1px solid #EEF2F7;

    border-radius:24px;

    padding:35px;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:40px;
}

.step{

    text-align:center;

    position:relative;
}

.step-number{

    width:55px;

    height:55px;

    background:#EDF2FF;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:18px;

    font-size:18px;

    font-weight:700;
}

.step-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#F8FAFC;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:15px;
}


.step-icon i{

    font-size:28px;

    color:#1E4DFF;
}

.step:hover .step-icon i{
    color:#fff;
}

.step-icon img{

    width:42px;
}

.step h3{

    font-size:18px;

    color:var(--heading);

    margin-bottom:8px;
}

.step p{

    font-size:14px;

    color:var(--text);
     line-height:1.6;
}

.process-grid .step:not(:last-child)::after{

    content:"";

    position:absolute;

    top:72px;

    right:-10px;

    width:20px;

    height:2px;

    background:#DCE7FF;
}   

.process-card{
    padding:60px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    position:relative;
    margin-top:40px;
}

/* Roadmap Line */

.process-grid::before{
    content:'';
    position:absolute;
    top:55px;
    left:12%;
    width:76%;
    border-top:3px dashed #2d55f4;
    z-index:0;
}

.step{
    position:relative;
    z-index:2;
    text-align:center;
    padding:15px 10px;
}

.step-number{
    position:absolute;
    top:-10px;
    right:20px;
    font-size:14px;
    font-weight:700;
    color:#2d55f4;
    opacity:.3;
}

.step-icon{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    background:#f3f6ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#2d55f4;
    transition:.3s;
}

.step:hover .step-icon{
    transform:translateY(-5px);
    background:#2d55f4;
    color:#fff;
}

.step h3{
    font-size:30px;
    margin-bottom:12px;
}

.step p{
    font-size:20px;
    line-height:1.7;
    color:#666;
}

/* Mobile */

@media(max-width:768px){

    .process-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .process-grid::before{
        display:none;
    }

}

/* ===================================
   TESTIMONIALS SECTION
=================================== */

.testimonials{

    background:#FFFFFF;
}

.testimonial-wrapper{

    display:grid;

    grid-template-columns:
    1fr 320px;

    gap:30px;

    align-items:stretch;
}

.review-section{

    background:#FFFFFF;
}

.review-heading{

    margin-bottom:35px;
}

.review-heading span{

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;
}

.review-heading h2{

    font-size:44px;

    color:var(--heading);

    margin-top:10px;
}

.review-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.review-card{

    background:#FFFFFF;

    border:1px solid #EEF2F7;

    border-radius:20px;

    padding:25px;

    transition:.3s;
}

.review-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.05);
}

.review-user{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;
}

.review-user img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;
}

.review-user h4{

    font-size:16px;

    color:var(--heading);
}

.review-user span{

    font-size:13px;

    color:var(--text);
}

.review-stars{

    color:#FDBA12;

    margin-bottom:15px;
}

.review-card p{

    color:var(--text);

    font-size:14px;
}

/* ===================================
   CTA CARD
=================================== */

.cta-side{

    background:
    linear-gradient(
    135deg,
    #0A2F8F,
    #1E4DFF
    );

    border-radius:24px;

    overflow:hidden;

    position:relative;

    padding:35px;

    color:white;
}

.cta-side h3{

    font-size:34px;

    line-height:1.2;

    margin-bottom:15px;
}

.cta-side p{

    opacity:.9;

    margin-bottom:30px;
}

.cta-side .btn-primary{

    background:#fff;

    color:var(--primary);
}

.cta-phone{

    position:absolute;

    bottom:-40px;

    right:-40px;

    width:220px;
}

/* ===================================
   USP STRIP
=================================== */

.usp-strip{

    background:#FFFFFF;

    border-top:1px solid #EEF2F7;

    border-bottom:1px solid #EEF2F7;

    padding:30px 0;
}

.usp-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;
}

.usp-item{

    display:flex;

    align-items:center;

    gap:15px;
}

.usp-item img{

    width:42px;
}

.usp-item h4{

    font-size:16px;

    color:var(--heading);

    margin-bottom:2px;
}

.usp-item p{

    font-size:13px;

    color:var(--text);
}

/* ===================================
   COMMON SECTION TITLE
=================================== */

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title span{
    display:block;
    color:#1E4DFF;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:48px;
    line-height:1.2;
    color:#0F172A;
    font-weight:700;
}

/* ===================================
   FOOTER
=================================== */

.footer{

    background:#03144B;

    padding-top:70px;

    color:white;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    1.4fr
    1fr
    1fr
    1fr
    1.2fr;

    gap:40px;

    padding-bottom:50px;
}

.footer-logo img{

    height:55px;

    margin-bottom:20px;
}

.footer-about{

    color:
    rgba(255,255,255,.75);

    font-size:14px;

    line-height:1.8;
}

.footer h4{

    font-size:18px;

    margin-bottom:20px;
}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.footer ul li a{

    color:
    rgba(255,255,255,.75);

    transition:.3s;
}

.footer ul li a:hover{

    color:#FFFFFF;
}

.footer-contact li{

    color:
    rgba(255,255,255,.75);

    margin-bottom:12px;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px 0;

    font-size:14px;

    color:
    rgba(255,255,255,.65);
}

.footer-contact li{
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.75);
    margin-bottom:14px;
}

.footer-contact li i{
    color:#ffffff;
    font-size:16px;
    width:18px;
    text-align:center;
}

/* ===================================
   SOCIAL ICONS
=================================== */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.08);

    transition:.3s;
}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-3px);
}


.faq-section{

    padding:50px 0;

    background:#ffffff;
}

.faq-wrapper{

    max-width:1000px;

    margin:auto;
}

.faq-item{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:25px;

    margin-bottom:20px;

    transition:.3s;
}

.faq-item:hover{

    box-shadow:0 15px 30px rgba(0,0,0,.05);
}

.faq-item h3{

    font-size:22px;

    color:#08122f;

    margin-bottom:12px;
}

.faq-item p{

    color:#64748b;

    line-height:1.8;
}

.cta-section{

    padding:60px 0;
}

.cta-box{

    background:
    linear-gradient(
    135deg,
    #0A2F8F,
    #1E4DFF
    );

    border-radius:30px;

    padding:70px;

    color:white;

    text-align:center;
}

.cta-box h2{

    color:white;

    font-size:52px;

    margin-bottom:20px;
}

.cta-box p{

    color:rgba(255,255,255,.85);

    max-width:800px;

    margin:auto;

    margin-bottom:35px;
}   

.usp-icon{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:50%;

    background:#EDF2FF;

    display:flex;

    align-items:center;

    justify-content:center;
}

.usp-icon i{

    font-size:22px;

    color:#1E4DFF;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px){

    .hero-content{

        gap:50px;
    }

    .services-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .stats-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .process-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .review-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:992px){

    .hero-content{

        grid-template-columns:1fr;
    }

    .hero-left{

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-features{

        justify-content:center;
    }

    .why-wrapper{

        grid-template-columns:1fr;
    }

    .testimonial-wrapper{

        grid-template-columns:1fr;
    }

    .usp-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .section-title h2{

        font-size:34px;
    }

    .hero-left h1{

        font-size:52px;
    }

    .services-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .process-grid{

        grid-template-columns:1fr;
    }

    .review-grid{

        grid-template-columns:1fr;
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

    .usp-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .hero{

        padding-top:140px;
    }

    .hero-left h1{

        font-size:42px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .services-grid{

        grid-template-columns:1fr;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .navbar{

        height:80px;
    }

    .nav-links{

        display:none;
    }
}

.hero-slider{
    position:relative;
    width:500px;
    height:600px;
    z-index:5;
}

.hero-slider img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:contain;

    opacity:0;
    transform:translateX(60px);

    transition:
    opacity .8s ease,
    transform .8s ease;
}

.hero-slider img.active{
    opacity:1;
    transform:translateX(0);
}

/* ===================================
   MOBILE FIX
=================================== */

@media (max-width:768px){

    .container{
        width:100%;
        padding-left:20px;
        padding-right:20px;
    }

    .hero-content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-left{
        text-align:center;
    }

    .hero-left p{
        max-width:100%;
        margin:20px auto;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
    }

    .service-area{
        justify-content:center;
    }

    .hero-right{
        width:100%;
    }

    .hero-slider{
        width:100%;
        max-width:320px;
        height:400px;
        margin:0 auto;
    }

    .pickup-card,
    .tracking-card{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        margin:15px auto;
        width:90%;
        max-width:280px;
    }

    .why-left,
    .process-card,
    .review-card,
    .faq-item,
    .service-card{
        text-align:center;
    }

    .why-feature{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .usp-item{
        justify-content:center;
        text-align:center;
        flex-direction:column;
    }

    .footer{
        text-align:center;
    }

    .footer-contact li{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }
}


/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    z-index:999;
    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

/* =========================
   SCROLL TOP BUTTON
========================= */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:100px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#1E4DFF;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(30,77,255,.25);
    z-index:998;
    transition:.3s ease;
}

.scroll-top:hover{
    transform:translateY(-5px);
    background:#0A2F8F;
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-btn{
        width:55px;
        height:55px;
        font-size:26px;
        right:15px;
        bottom:15px;
    }

    .scroll-top{
        width:50px;
        height:50px;
        right:15px;
        bottom:80px;
        font-size:20px;
    }
}


/* ===================================
   MOBILE RESPONSIVE FIX
=================================== */

@media (max-width:768px){

/* Container */

.container{
    padding-left:15px;
    padding-right:15px;
}

/* Navbar */

.navbar{
    height:auto;
    padding:12px 0;
    flex-wrap:wrap;
    gap:10px;
}

.logo{
    width:100%;
    display:flex;
    justify-content:center;
}

.logo img{
    height:45px;
}

.nav-links{
    display:none;
}

.navbar .btn-primary{
    width:100%;
    max-width:220px;
    margin:auto;
    height:50px;
    font-size:16px;
}

/* Hero */

.hero{
    padding-top:140px;
}

.hero-content{
    grid-template-columns:1fr;
    gap:40px;
}

.hero-left{
    text-align:center;
}

.hero-left h1{
    font-size:42px;
    line-height:1.15;
}

.hero-left p{
    font-size:16px;
}

.hero-features{
    justify-content:center;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.hero-buttons a{
    width:100%;
    max-width:320px;
}

.service-area{
    justify-content:center;
}

/* Hero Right */

.hero-right{
    min-height:auto;
}

/* Remove Slider Effect On Mobile */

.hero-slider{
    width:100%;
    height:auto;
    position:relative;
}

.hero-slider img{
    position:relative !important;
    opacity:1 !important;
    transform:none !important;
    display:none;
    max-width:260px;
    margin:auto;
}

.hero-slider img:first-child{
    display:block;
}

/* Smaller Blob */

.blob-1{
    width:260px;
    height:260px;
}

.blob-2{
    width:180px;
    height:180px;
}

.blob-3{
    width:150px;
    height:150px;
}

/* Hero Cards */

.hero-card{
    position:relative;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    margin:15px auto;
    width:90%;
}

.pickup-card,
.tracking-card{
    position:relative;
}

/* Services */

.services-grid{
    grid-template-columns:1fr;
}

/* Stats */

.stats-grid{
    grid-template-columns:1fr;
}

.stat-item::after{
    display:none !important;
}

/* Why Us */

.why-wrapper{
    grid-template-columns:1fr;
}

.why-left{
    padding:25px;
}

.why-left h2{
    font-size:30px;
}

/* Process */

.process-card{
    padding:25px;
}

.process-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.step{
    padding:10px;
}

.step-icon{
    width:70px;
    height:70px;
}

.step h3{
    font-size:22px;
}

.step p{
    font-size:15px;
}

/* Reviews */

.review-heading{
    text-align:center;
}

.review-heading h2{
    text-align:center;
}

.review-grid{
    grid-template-columns:1fr;
}

.review-card{
    text-align:center;
}

.review-user{
    justify-content:center;
}

/* CTA */

.cta-side{
    text-align:center;
}

.cta-phone{
    display:none;
}

/* USP */

.usp-grid{
    grid-template-columns:1fr;
}

/* Footer */

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    display:flex;
    justify-content:center;
}

.footer-logo img{
    margin:auto;
}

.footer-social{
    justify-content:center;
}

.footer-contact li{
    justify-content:center;
}

/* CTA BOX */

.cta-box{
    padding:35px 20px;
}

.cta-box h2{
    font-size:34px;
}

}

/* Footer First Column */

.footer-grid > div:first-child{
    text-align:center;
}

.footer-logo{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}

.footer-logo img{
    height:75px; /* pehle 55px tha */
    width:auto;
}

.footer-about{
    max-width:320px;
    margin:0 auto;
    text-align:center;
}

.footer-social{
    justify-content:center;
    margin-top:25px;
    margin-bottom:20px;
}

/* Footer Extra Bottom Space */

.footer{
    padding-bottom:30px;
}

.trust-badge{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:100%;
    max-width:100%;

    margin-bottom:20px;

    text-align:center;

    font-size:14px;
    color:#334155;

    line-height:1.6;
}

.service-area{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:8px;

    max-width:300px;
    margin:25px auto 0;

    text-align:center;
    line-height:1.6;
}

@media(max-width:768px){

    .trust-badge{
        width:100%;
        max-width:280px;
        margin:0 auto 15px;
    }

    .service-area{
        width:100%;
        max-width:280px;
        margin:20px auto 0;
    }

    .footer-about{
        max-width:280px;
    }

    .footer-logo img{
        height:85px;
    }

}

@media(max-width:768px){

.pickup-card,
.tracking-card{
    display:none;
}

}

@media(max-width:768px){

.trust-badge{
    font-size:13px;
    padding:0 15px;
}

}

@media(max-width:768px){

.trust-badge{
    font-size:12px;
}

}

@media(max-width:768px){

.trust-badge i{
    display:none;
}

.trust-badge{
    justify-content:center;
    text-align:center;
    font-size:13px;
    line-height:1.6;
    padding:0 10px;
}

}

/* ==========================
   NAVBAR
========================== */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
    position:relative;
}

.logo img{
    height:60px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:35px;
    align-items:center;
}

.nav-links a{
    color:#0F172A;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#1E4DFF;
}

.nav-btn{
    background:#1E4DFF;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

.nav-btn:hover{
background:#0A2F8F;
color:#fff;
transform:translateY(-3px);
transition:.3s ease;
box-shadow:0 12px 25px rgba(30,77,255,.18);
}

#check{
    display:none;
}

.checkbtn{
    display:none;
    font-size:24px;
    color:#0F172A;
    cursor:pointer;
}

@media(max-width:768px){

.navbar{
    height:80px;
}

.logo img{
    height:52px;
}

.checkbtn{
    display:block;
    order:3;
}

.nav-btn{
    margin-left:auto;
    margin-right:15px;
    padding:12px 18px;
    font-size:14px;
}

.nav-links{
    position:fixed;
    top:80px;
    left:-100%;
    width:100%;
    height:calc(100vh - 80px);

    background:#ffffff;

    flex-direction:column;
    justify-content:flex-start;

    padding-top:50px;

    gap:30px;

    transition:.4s;
    z-index:999;
}

.nav-links li{
    width:100%;
    text-align:center;
}

.nav-links a{
    font-size:18px;
}

#check:checked ~ .nav-links{
    left:0;
}

}

/* ===================================
   FINAL MOBILE FIX PACK
   PASTE AT VERY END OF CSS
=================================== */

@media (max-width:768px){

/* Container */

.container{
    padding-left:15px;
    padding-right:15px;
}

/* Navbar */

.navbar{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    width:auto;
}

.logo img{
    height:50px;
}

.nav-btn{
    display:none;
}

.checkbtn{
    display:block;
    font-size:24px;
}

.nav-links{
    position:fixed;
    top:80px;
    left:-100%;
    width:100%;
    height:calc(100vh - 80px);
    background:#fff;
    flex-direction:column;
    justify-content:flex-start;
    gap:25px;
    padding-top:40px;
    transition:.4s;
    z-index:999;
}

.nav-links a{
    font-size:18px;
}

#check:checked ~ .nav-links{
    left:0;
}

/* Hero */

.hero{
    padding:120px 0 40px;
}

.hero-content{
    grid-template-columns:1fr;
    gap:30px;
}

.hero-left{
    text-align:center;
}

.hero-left h1{
    font-size:34px;
    line-height:1.25;
}

.hero-left p{
    font-size:15px;
    line-height:1.7;
    margin:20px auto;
}

.trust-badge{
    font-size:13px;
    max-width:100%;
    text-align:center;
}

.hero-features{
    justify-content:center;
    gap:12px;
}

.hero-features span{
    font-size:14px;
}

.hero-buttons{
    flex-direction:column;
    gap:12px;
}

.btn-primary,
.btn-secondary{
    width:100%;
    max-width:280px;
    min-width:unset;
    height:55px;
    font-size:15px;
}

.service-area{
    justify-content:center;
    font-size:14px;
}

/* Hero Image */

.hero-right{
    width:100%;
}

.hero-slider{
    width:100%;
    max-width:280px;
    height:320px;
    margin:auto;
}

.hero-slider img{
    max-width:100%;
}

.blob-1{
    width:240px;
    height:240px;
}

.blob-2{
    width:170px;
    height:170px;
}

.blob-3{
    width:130px;
    height:130px;
}

.pickup-card,
.tracking-card{
    display:none;
}

/* Section Heading */

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:28px;
    line-height:1.3;
}

/* Services */

.services-grid{
    grid-template-columns:1fr;
    gap:15px;
}

.service-card{
    padding:25px 20px;
}

.service-card h3{
    font-size:18px;
}

.service-card p{
    font-size:14px;
}

/* Stats */

.stats-box{
    padding:25px;
}

.stats-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.stat-item::after{
    display:none !important;
}

.stat-item h3{
    font-size:28px;
}

/* Why Us */

.why-wrapper{
    grid-template-columns:1fr;
}

.why-left{
    padding:25px;
}

.why-left h2{
    font-size:28px;
}

.why-feature{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* Process */

.process-card{
    padding:25px;
}

.process-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.process-grid::before{
    display:none;
}

.step{
    padding:10px;
}

.step-icon{
    width:70px;
    height:70px;
}

.step-icon i{
    font-size:24px;
}

.step h3{
    font-size:18px;
}

.step p{
    font-size:14px;
}

.step-number{
    position:static;
    opacity:1;
    margin-bottom:10px;
}

/* Reviews */

.review-heading{
    text-align:center;
}

.review-heading h2{
    font-size:28px;
}

.review-grid{
    grid-template-columns:1fr;
}

.review-card{
    padding:20px;
}

.review-user{
    justify-content:center;
    text-align:center;
}

/* CTA Side */

.cta-side{
    text-align:center;
}

.cta-side h3{
    font-size:28px;
}

.cta-phone{
    display:none;
}

/* FAQ */

.faq-item{
    padding:20px;
}

.faq-item h3{
    font-size:18px;
}

/* USP */

.usp-grid{
    grid-template-columns:1fr;
}

.usp-item{
    flex-direction:column;
    text-align:center;
}

/* CTA BOX */

.cta-box{
    padding:35px 20px;
}

.cta-box h2{
    font-size:28px;
    line-height:1.3;
}

.cta-box p{
    font-size:15px;
}

/* Footer */

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
}

.footer-logo{
    justify-content:center;
}

.footer-logo img{
    height:70px;
    margin:auto;
}

.footer-about{
    max-width:300px;
    margin:auto;
}

.footer-social{
    justify-content:center;
}

.footer-contact li{
    justify-content:center;
    align-items:center;
}

.footer-bottom{
    font-size:13px;
}

/* Floating Buttons */

.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:26px;
    right:15px;
    bottom:15px;
}

.scroll-top{
    width:50px;
    height:50px;
    right:15px;
    bottom:80px;
}

}

@media(max-width:768px){

.review-heading h2{
    max-width:280px;
    margin:10px auto 0;
    line-height:1.2;
}

}

.mobile-break{
    display:inline;
}

@media(max-width:768px){

.mobile-break{
    display:block;
}

}
/* ===================================
DESKTOP ALIGNMENT FIX
=================================== */

@media (min-width:769px){

    /* 1. From Pick-Up To Delivery line align fix */

    .process-grid .step{
        text-align:center;
    }

    .process-grid .step h3{
        line-height:1.2;
        min-height:72px;
        display:flex;
        align-items:flex-start;
        justify-content:center;
    }

    /* 2. Proudly Serving Mumbai icon spacing fix */

    .service-area{
        justify-content:flex-start;
        margin-left:0;
        max-width:none;
        text-align:left;
        gap:6px;
    }

    .service-area i{
        margin-right:0;
        flex-shrink:0;
    }

    /* 3. Footer first column left align */

    .footer-grid > div:first-child{
        text-align:left !important;
    }

    .footer-logo{
        justify-content:flex-start !important;
        margin-bottom:10px !important;
    }

    .footer-logo img{
        margin:0 !important;
    }

    .footer-about{
        text-align:left !important;
        max-width:100% !important;
        margin:0 !important;
    }

    .footer-social{
        justify-content:flex-start !important;
        margin-top:18px !important;
    }

}

/* ===================================
DESKTOP ALIGNMENT FIX
=================================== */

@media (min-width:769px){

    /* 1. From Pick-Up To Delivery line align fix */

    .process-grid .step{
        text-align:center;
    }

    .process-grid .step h3{
        line-height:1.2;
        min-height:72px;
        display:flex;
        align-items:flex-start;
        justify-content:center;
    }

    /* 2. Proudly Serving Mumbai icon spacing fix */

    .service-area{
        justify-content:flex-start;
        margin-left:0;
        max-width:none;
        text-align:left;
        gap:6px;
    }

    .service-area i{
        margin-right:0;
        flex-shrink:0;
    }

    /* 3. Footer first column left align */

    .footer-grid > div:first-child{
        text-align:left !important;
    }

    .footer-logo{
        justify-content:flex-start !important;
        margin-bottom:10px !important;
    }

    .footer-logo img{
        margin:0 !important;
    }

    .footer-about{
        text-align:left !important;
        max-width:100% !important;
        margin:0 !important;
    }

    .footer-social{
        justify-content:flex-start !important;
        margin-top:18px !important;
    }

}

@media (min-width:769px){

.trust-badge{
    justify-content:flex-start !important;
    text-align:left !important;
    margin-left:0 !important;
}

}

@media (max-width:768px){

    /* Broken Phone? We've Got You Covered */
    .cta-side .btn-primary{
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
        max-width:260px;
        margin:0 auto;
    }

    /* Need Mobile Repair Without Leaving Home */
    .cta-action{
        display:flex;
        justify-content:center;
    }

    .cta-action .btn-primary{
        width:100%;
        max-width:260px;
        margin:0 auto;
    }

}

/* ===================================
ABOUT PAGE
=================================== */

.about-tagline{
    font-size:24px;
    font-weight:700;
    color:#1E4DFF;
    margin:15px 0 20px;
}

.about-description{
    font-size:17px;
    line-height:1.9;
    color:#64748B;
    margin-bottom:40px;
    max-width:650px;
}

.about-process{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.process-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.process-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#EDF2FF;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon i{
    font-size:26px;
    color:#1E4DFF;
}

.process-item span{
    font-size:14px;
    font-weight:600;
    color:#0F172A;
}

.process-arrow{
    font-size:28px;
    font-weight:700;
    color:#1E4DFF;
}

@media(max-width:768px){

    .about-tagline{
        font-size:20px;
    }

    .about-description{
        font-size:15px;
        text-align:center;
    }

    .about-process{
        justify-content:center;
    }

    .process-arrow{
        display:none;
    }

}

/* ===================================
SECTION TITLE
=================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#1E4DFF;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:12px;
    font-size:42px;
    color:#0f172a;
    line-height:1.3;
}

/* ===================================
STATS
=================================== */

.about-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:100px;
}

.about-stat{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.about-stat h3{
    font-size:38px;
    color:#1E4DFF;
    margin-bottom:10px;
}

.about-stat p{
    color:#64748b;
}

/* ===================================
VALUES
=================================== */

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:100px;
}

.value-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:45px;
    color:#1E4DFF;
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:10px;
    color:#0f172a;
}

.value-card p{
    color:#64748b;
}

/* ===================================
PARTNERS
=================================== */

.partners-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:100px;
}

.partners-content span{
    color:#1E4DFF;
    font-weight:700;
    font-size:13px;
}

.partners-content h2{
    font-size:44px;
    margin:15px 0 20px;
    color:#0f172a;
}

.partners-content p{
    color:#64748b;
    line-height:1.9;
}

.partners-points{
    margin-top:35px;
}

.partner-point{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.partner-point i{
    color:#1E4DFF;
    margin-top:4px;
}

.partner-point h4{
    margin-bottom:5px;
    color:#0f172a;
}

.partners-image{
    position:relative;
}

.partners-image img{
    width:100%;
    border-radius:25px;
}

.partner-badge{
    position:absolute;
    bottom:20px;
    right:-20px;
    background:#1E4DFF;
    color:#fff;
    padding:20px;
    border-radius:20px;
}

.partner-badge h3{
    font-size:32px;
}

/* ===================================
WHY CHOOSE US
=================================== */

.why-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

.why-about-item{
    display:flex;
    gap:20px;
    padding:25px;
    margin-bottom:20px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.why-about-item i{
    font-size:30px;
    color:#1E4DFF;
}

.why-about-item h3{
    margin-bottom:6px;
    color:#0f172a;
}

.why-about-item p{
    color:#64748b;
}

.why-about-right img{
    width:100%;
}

/* ===================================
PROMISE
=================================== */

.promise-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:100px;
}

.promise-card{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.promise-icon{
    width:75px;
    height:75px;
    background:#eef4ff;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.promise-icon i{
    color:#1E4DFF;
    font-size:30px;
}

.promise-card h3{
    margin-bottom:10px;
}

.promise-card p{
    color:#64748b;
    line-height:1.8;
}

/* ===================================
CTA
=================================== */

.about-cta-box{
    background:linear-gradient(135deg,#0A2F8F,#1E4DFF);
    padding:60px;
    border-radius:30px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:80px;
}

.about-cta-box h2{
    font-size:42px;
    margin-bottom:10px;
}

.about-cta-box p{
    opacity:.9;
}

.about-cta-box .btn-primary{
    white-space:nowrap;
}

/* ===================================
MOBILE
=================================== */

@media(max-width:991px){

    .about-hero-wrapper,
    .partners-wrapper,
    .why-about-grid{
        grid-template-columns:1fr;
    }

    .values-grid,
    .promise-grid,
    .about-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-hero{
        padding:180px 0 60px;
    }

    .about-content{
        text-align:center;
    }

    .about-content h1{
        font-size:36px;
    }

    .about-points{
        grid-template-columns:1fr;
    }

    .about-floating-card{
        position:static;
        margin-top:20px;
    }

    .section-title h2{
        font-size:30px;
    }

    .partners-content h2{
        font-size:32px;
    }

    .about-cta-box{
        flex-direction:column;
        text-align:center;
        padding:40px 25px;
    }

    .about-cta-box h2{
        font-size:30px;
    }

    .values-grid,
    .promise-grid,
    .about-stats-grid{
        grid-template-columns:1fr;
    }

    .why-about-item{
        flex-direction:column;
        text-align:center;
    }

}

/* ===================================
ABOUT HERO
=================================== */

.about-hero{
    padding:150px 0 100px;
    background:#fff;
}

.about-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content h1{
    font-size:58px;
    line-height:1.2;
    color:#0F172A;
    
}

.about-content h1 span{
    color:#1E4DFF;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    display:block;
}

.about-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content{
    margin-top:-8px;
}

/* RIGHT SIDE HALF CIRCLE CARD */

.hero-badge{
    position:absolute;
    right:-25px;
    bottom:50px;

    background:#1E4DFF;
    color:#fff;

    padding:18px 25px;

    border-radius:60px 0 0 60px;

    display:flex;
    align-items:center;
    gap:15px;

    box-shadow:0 15px 35px rgba(30,77,255,.25);
}

.hero-badge i{
    font-size:30px;
}

.hero-badge h4{
    font-size:24px;
    margin-bottom:3px;
}

.hero-badge p{
    font-size:13px;
    opacity:.9;
}

@media(max-width:991px){

    .about-hero-wrapper{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
        
    }

    .about-image{
        max-width:500px;
        margin:auto;
    }

    .hero-badge{
        right:0;
        bottom:20px;
    }

}

@media(max-width:768px){

    .about-hero{
        padding:130px 0 70px;
    }

    .about-content h1{
        font-size:38px;
    }

    .hero-badge{
        position:static;
        margin-top:20px;
        border-radius:20px;
        justify-content:center;
    }

}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    background:#1E4DFF;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    padding:14px 24px;
    border:2px solid #1E4DFF;
    border-radius:12px;
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
} 


/* ===================================
ABOUT PAGE - PARTNERS MOBILE FIX
=================================== */

@media (max-width:768px){

.partners-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.partners-content{
    text-align:center;
}

.partners-content h2{
    font-size:30px;
    line-height:1.3;
}

.partners-content p{
    text-align:center;
}

.partner-point{
    flex-direction:column;
    text-align:center;
    align-items:center;
    gap:10px;
}

.partner-point i{
    margin-top:0;
    font-size:20px;
}

.partners-image{
    max-width:320px;
    margin:0 auto;
}

.partner-badge{
    position:static;
    margin-top:20px;
    text-align:center;
    border-radius:20px;
}

.partner-badge h3{
    font-size:28px;
}

}

/* ==========================
   TESTIMONIAL MOBILE FIX
========================== */

@media (max-width: 768px) {

    .testimonial-wrapper{
        flex-direction: column;
        gap: 30px;
    }

    .review-section{
        width: 100%;
    }

    .review-grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review-card{
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .review-user{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .review-user img{
        margin: 0 auto;
    }

    .review-stars{
        text-align: center;
        margin: 10px 0;
    }

    .review-card p{
        text-align: center;
        font-size: 15px;
        line-height: 1.7;
    }

    .review-heading{
        text-align: center;
    }

    .review-heading h2{
        font-size: 30px;
        line-height: 1.3;
    }

    /* CTA Side */

    .cta-side{
        width: 100%;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-side h3{
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-phone{
        max-width: 220px;
        margin: 20px auto 0;
        display: block;
    }

}



@media (max-width: 768px) {

    /* Hero ko touch mat karo */
    .hero{
        padding-top: 120px; /* apne navbar height ke hisab se 100-130px */
        padding-bottom: 50px;
    }

    /* Baaki sections */
    .services,
    .stats,
    .why-us,
    .testimonials,
    .faq-section,
    .usp-strip,
    .cta-section{
        padding: 40px 0;
    }

}


/* ==================================
   SERVICES PAGE
================================== */

.services-hero{
    padding:140px 0 80px;
    background:#fff;
}

.services-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    background:#edf2ff;
    color:#1E4DFF;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.services-hero-content h1{
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    color:#081028;
    margin-bottom:20px;
}

.services-hero-content h1 span{
    color:#1E4DFF;
}

.services-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#5f6b85;
    margin-bottom:30px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.hero-features span{
    background:#f6f8ff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero-btn-primary{
    background:#1E4DFF;
    color:#fff;
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
}

.hero-btn-secondary{
    border:2px solid #1E4DFF;
    color:#1E4DFF;
}

.hero-btn-secondary:hover{
    background:#1E4DFF;
    color:#fff;
}

.services-hero-image{
    text-align:center;
}

.services-hero-image img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:auto;
}

/* SERVICES */

.services-section{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:48px;
    margin-bottom:15px;
    color:#081028;
}

.section-heading p{
    max-width:800px;
    margin:auto;
    color:#5f6b85;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border:1px solid #e6ebff;
    border-radius:20px;
    padding:35px;
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-icon{
    width:80px;
    height:80px;
    background:#edf2ff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:34px;
    color:#1E4DFF;
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#081028;
}

.service-card p{
    color:#5f6b85;
    line-height:1.8;
    margin-bottom:20px;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.service-card ul li{
    margin-bottom:10px;
    color:#5f6b85;
}

.service-card ul li i{
    color:#1E4DFF;
    margin-right:8px;
}

.service-cta{
    margin-top:auto;
}

.service-cta a{
    display:inline-block;
    padding:12px 22px;
    background:#1E4DFF;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

/* CTA */

.service-final-cta{
    padding:90px 0;
}

.cta-box{
    background:linear-gradient(135deg,#1638c9,#2d57ff);
    color:#fff;
    border-radius:40px;
    text-align:center;
    padding:80px 50px;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-box a{
    display:inline-block;
    background:#fff;
    color:#1E4DFF;
    text-decoration:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:700;
}

/* ==================================
   TABLET
================================== */

@media(max-width:1024px){

.services-hero-wrapper{
    grid-template-columns:1fr;
    text-align:center;
}

.services-hero-image{
    order:-1;
}

.hero-features{
    justify-content:center;
}

.hero-buttons{
    justify-content:center;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:40px;
}

.services-hero-content h1{
    font-size:48px;
}

}

/* ==================================
   MOBILE
================================== */

@media(max-width:768px){

.services-hero{
    padding:120px 0 60px;
}

.services-hero-content h1{
    font-size:38px;
}

.services-hero-content p{
    font-size:16px;
}

.services-grid{
    grid-template-columns:1fr;
}

.service-card{
    padding:25px;
}

.section-heading h2{
    font-size:32px;
}

.cta-box{
    padding:50px 25px;
}

.cta-box h2{
    font-size:32px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-btn{
    width:100%;
}

.services-hero-image img{
    max-width:300px;
}

}

/* ==================================
   SMALL MOBILE
================================== */

@media(max-width:480px){

.services-hero-content h1{
    font-size:32px;
}

.section-heading h2{
    font-size:28px;
}

.cta-box h2{
    font-size:28px;
}

.hero-tag{
    font-size:12px;
}

}

/* SERVICE INTRO */

.service-intro{
    padding:40px 0 80px;
    background:#fff;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto;
}

.section-title span{
    display:inline-block;
    background:#edf2ff;
    color:#1E4DFF;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-title h2{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    color:#081028;
    margin-bottom:20px;
}

.section-title p{
    font-size:18px;
    line-height:1.8;
    color:#667085;
    max-width:800px;
    margin:auto;
}

/* SERVICES GRID */

.services-page{
    padding:20px 0 100px;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    padding:35px;
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-box-icon{
    width:90px;
    height:90px;
    background:#EDF2FF;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-box-icon i{
    font-size:38px;
    color:#1E4DFF;
}

.service-box h3{
    font-size:28px;
    color:#081028;
    margin-bottom:15px;
    font-weight:700;
}

.service-box p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.service-cta{
    margin-top:auto;
    padding-top:20px;
    border-top:1px solid #eee;
}

.service-cta p{
    margin-bottom:12px;
    font-weight:600;
    color:#081028;
}

.service-cta a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:12px;
    background:#1E4DFF;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-cta a:hover{
    background:#1437C8;
}

@media(max-width:1200px){

.services-page-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.services-page{
    padding:20px 0 70px;
}

.services-page-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.service-box{
    padding:25px;
}

.service-box-icon{
    width:70px;
    height:70px;
}

.service-box-icon i{
    font-size:28px;
}

.service-box h3{
    font-size:24px;
}

}

/* FINAL CTA SECTION */

.service-final-cta{
    padding:80px 0;
}

.service-final-box{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    background:linear-gradient(135deg,#1E4DFF,#1437C8);
    padding:70px 50px;
    border-radius:30px;
}

.service-final-box h2{
    color:#fff;
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.service-final-box p{
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 30px;
}

.service-final-box .btn-primary{
    display:inline-block;
    background:#fff;
    color:#1E4DFF;
    text-decoration:none;
    padding:16px 34px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.service-final-box .btn-primary:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

.service-final-box{
    padding:40px 25px;
}

.service-final-box h2{
    font-size:28px;
}

.service-final-box p{
    font-size:16px;
}

}

.section-title,
.service-final-box,
.services-hero-content{
    text-align:center;
}

.hero-features{
    justify-content:center;
}

.hero-buttons{
    justify-content:center;
}

.services-hero-content p{
    margin-left:auto;
    margin-right:auto;
}

.services-hero-content h1{
    margin-left:auto;
    margin-right:auto;
}

/* HERO */
.services-hero{
    padding: 120px 0 70px;
}

/* OUR EXPERTISE */
.service-intro{
    padding: 30px 0 20px;
}

/* SERVICES GRID */
.services-page{
    padding: 20px 0 50px;
}

/* CTA */
.service-final-cta{
    padding: 40px 0 60px;
}

.services-hero-content{
    text-align: left !important;
    align-items: flex-start !important;
}

.services-hero-content h1{
    text-align: left !important;
}

.services-hero-content p{
    text-align: left !important;
}

.hero-features{
    justify-content: flex-start !important;
}

.hero-buttons{
    justify-content: flex-start !important;
}


/* ==========================
   SERVICES PAGE FIX
========================== */

/* Desktop */
@media (min-width: 769px){

    .services-hero-content{
        text-align:left !important;
    }

    .services-hero-content h1,
    .services-hero-content p{
        text-align:left !important;
        margin-left:0 !important;
        margin-right:0 !important;
    }

    .hero-features{
        justify-content:flex-start !important;
    }

    .hero-buttons{
        justify-content:flex-start !important;
    }

}

/* Mobile */
@media (max-width:768px){

    .services-hero-wrapper{
        grid-template-columns:1fr !important;
        text-align:center !important;
    }

    .services-hero-content{
        text-align:center !important;
    }

    .services-hero-content h1,
    .services-hero-content p{
        text-align:center !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    .hero-features{
        justify-content:center !important;
    }

    .hero-buttons{
        justify-content:center !important;
    }

    .hero-tag{
        margin-left:auto !important;
        margin-right:auto !important;
    }

    .services-hero-image{
        order:-1;
        margin-bottom:30px;
    }

}

/* MOBILE - HIDE HERO IMAGE */

@media (max-width:768px){

    .services-hero-image{
        display:none !important;
    }

    .services-hero-wrapper{
        grid-template-columns:1fr !important;
    }

}

/* ==================================
   BRANDS SECTION
================================== */

.brands-section{
    padding:60px 0 80px;
    background:#fff;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.brand-card{
    background:#fff;
    border:1px solid #e8ecf7;
    border-radius:20px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    overflow:hidden;
    transition:.3s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

.brand-card i{
    font-size:48px;
    color:#1E4DFF;
    margin-bottom:18px;
    display:block;
}

.brand-card h3{
    font-size:20px;
    font-weight:700;
    color:#081028;
    margin:0;
}

.brand-card img{
    width:120px;
    height:60px;
    object-fit:contain;
    object-position:center;
    display:block;
    margin:auto;
    transition:.3s ease;
}

.brand-card{
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand-card img{
    width:100%;
    max-width:120px;
    height:60px;
    object-fit:contain;
}

.motorola-logo{
    width:140px !important;
    height:70px !important;
    object-fit:contain;
}



/* ==========================
   TABLET
========================== */

@media(max-width:1024px){

    .brands-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .brands-section{
        padding:40px 0 60px;
    }

    .brands-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        margin-top:35px;
    }

    .brand-card{
        padding:25px 15px;
        border-radius:16px;
    }

    .brand-card i{
        font-size:36px;
        margin-bottom:12px;
    }

    .brand-card h3{
        font-size:16px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .brands-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .brand-card{
        padding:20px 10px;
    }

    .brand-card i{
        font-size:32px;
    }

    .brand-card h3{
        font-size:15px;
    }

}



/* ===================================
CONTACT HEADER
=================================== */

.contact-header{
    padding:120px 0 80px;
    background:#f8fbff;
    text-align:center;
}

.contact-header span{
    display:inline-block;
    background:#e8f2ff;
    color:#0d6efd;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-header h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.contact-header p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.contact-highlights{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.highlight-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#333;
}

.highlight-item i{
    color:#0d6efd;
}

/* ===================================
CONTACT FORM
=================================== */

.contact-main-section{
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.contact-form-box,
.contact-info-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-box h2,
.contact-info-box h2{
    margin-bottom:15px;
    color:#111;
}

.form-subtitle{
    color:#666;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#222;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#0d6efd;
}

.form-note{
    color:#777;
    font-size:14px;
    margin-bottom:20px;
}

.contact-form-box .btn-primary{
    width:100%;
    border:none;
    cursor:pointer;
}

/* ===================================
INFO CARDS
=================================== */

.info-card{
    display:flex;
    gap:15px;
    align-items:flex-start;
    padding:20px;
    border:1px solid #eee;
    border-radius:12px;
    margin-bottom:15px;
}

.info-card i{
    width:55px;
    height:55px;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:20px;
}

.info-card h4{
    margin-bottom:5px;
    color:#111;
}

.info-card p{
    color:#666;
    margin:0;
}

/* Working Hours Desktop One Line */

@media (min-width:769px){

    .info-card .fa-clock + div p{
        white-space: nowrap;
    }

}


/* ===================================
SECTION TITLE
=================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0d6efd;
    font-weight:700;
    font-size:14px;
}

.section-title h2{
    margin-top:12px;
    font-size:40px;
    color:#111;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* ===================================
AREAS SECTION
=================================== */

.areas-section{
    padding:100px 0;
    background:linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.area-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    overflow:hidden;
    border:1px solid #edf2ff;
    transition:.4s ease;
    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.area-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
    90deg,
    #0d6efd,
    #4da3ff);
}

.area-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(13,110,253,.15);
}

.area-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#eaf3ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.area-icon i{
    font-size:28px;
    color:#0d6efd;
}

.area-card h3{
    font-size:28px;
    color:#111;
    margin-bottom:15px;
}

.area-card p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

.area-badge{
    display:inline-block;
    background:#e8f7ed;
    color:#0f9d58;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

/* ===================================
AFTER SUBMISSION
=================================== */

.after-submit{
    padding:100px 0;
    background:#f8fbff;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.step-card h3{
    color:#0d6efd;
    font-size:38px;
    margin-bottom:15px;
}

.step-card h4{
    margin-bottom:10px;
}

.step-card p{
    color:#666;
}

/* ===================================
FAQ
=================================== */

.contact-faq{
    padding:100px 0;
}

.faq-item{
    background:#fff;
    padding:25px;
    border-radius:14px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.faq-item h4{
    margin-bottom:10px;
    color:#111;
}

.faq-item p{
    color:#666;
}

/* ===================================
CTA
=================================== */

.contact-cta{
    padding:0 0 100px;
}

.cta-box{
    background:linear-gradient(135deg,#0d6efd,#0057d8);
    padding:70px;
    border-radius:25px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta-box p{
    margin-bottom:30px;
}

.cta-box .btn-primary{
    background:#fff;
    color:#0d6efd;
}

/* ===================================
MOBILE RESPONSIVE
=================================== */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .areas-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-header h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .form-row{
        grid-template-columns:1fr;
    }

    .areas-grid,
    .why-grid,
    .steps-grid{
        grid-template-columns:1fr;
    }

    .contact-header{
        padding:90px 0 60px;
    }

    .contact-header h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:28px;
    }

    .contact-form-box,
    .contact-info-box{
        padding:25px;
    }

    .cta-box{
        padding:40px 25px;
    }

    .cta-box h2{
        font-size:28px;
    }

}

/* =========================
   CONTACT PAGE FIX
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:1.8fr 1fr;
    gap:40px;
    align-items:start !important;
}

.contact-form-box{
    height:auto;
}

.contact-info-box{
    height:auto !important;
    min-height:auto !important;
    align-self:start !important;

    display:flex;
    flex-direction:column;
    gap:20px;

    padding:40px;
}

.contact-info-box h2{
    margin-bottom:10px;
}

.info-card{
    margin:0;
}

/* REMOVE ANY FORCED HEIGHT */

.contact-grid > *{
    height:auto !important;
}

/* MOBILE */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info-box{
        margin-top:30px;
    }

}

@media (max-width: 768px) {

    .contact-header-content{
        text-align:center;
    }

    .contact-header-content h1{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .contact-header-content p{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .contact-highlights{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:15px;
        width:100%;
    }

    .highlight-item{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        width:auto;
        margin:0 auto;
    }

    .contact-header span{
        margin-left:auto;
        margin-right:auto;
    }

}

/* MOBILE HERO FIX */

@media (max-width: 768px) {

    .contact-header{
        padding:150px 0 40px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .contact-header-content{
        text-align:center;
        max-width:100%;
        margin:0 auto;
    }

    .contact-header-content h1{
        text-align:center;
        margin:0 auto 15px;
    }

    .contact-header-content p{
        text-align:center;
        margin:0 auto 20px;
    }

    .contact-header span{
        display:block;
        width:fit-content;
        margin:0 auto 15px;
    }

    .contact-highlights{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:15px;
        margin-top:25px;
    }

    .highlight-item{
        justify-content:center;
        text-align:center;
    }
}


/* ===================================
WHY CHOOSE US
=================================== */

.why-section{
    padding:100px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.why-card{
    background:#fff;
    border:1px solid #edf2ff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,.12);
}

.why-card h3{
    font-size:22px;
    color:#111;
    margin:15px 0 10px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

}   


/* FORM MOBILE FIX */

@media (max-width:768px){

    .contact-form-box{
        width:100%;
        padding:25px 20px;
    }

    .form-row{
        display:grid;
        grid-template-columns:1fr;
        gap:0;
    }

    .form-group{
        width:100%;
        margin-bottom:18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        width:100%;
        min-height:52px;
        font-size:16px; /* iPhone zoom issue fix */
        padding:14px 16px;
        box-sizing:border-box;
    }

    .form-group textarea{
        min-height:120px;
        resize:vertical;
    }

    .contact-form-box .btn-primary{
        width:100%;
        height:55px;
        font-size:16px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .form-note{
        text-align:center;
        line-height:1.6;
    }

}



.form-note{
    color:#777;
    font-size:14px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:8px;
}

.form-note i{
    color:#0d6efd;
    font-size:15px;
}

/* CONTACT INFO MOBILE FIX */

@media (max-width:768px){

    .contact-info-box{
        padding:20px;
    }

    .info-card{
        padding:15px;
        gap:12px;
        align-items:center;
    }

    .info-card i{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:16px;
    }

    .info-card h4{
        font-size:16px;
        margin-bottom:4px;
    }

    .info-card p{
        font-size:14px;
        line-height:1.5;
        word-break:break-word;
    }

    .contact-info-box h2{
        text-align:center;
        margin-bottom:20px;
    }

}

/* DESKTOP ONLY */

@media (min-width: 769px){

    .contact-highlights{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:18px 40px;
        max-width:700px;
        margin:35px auto 0;
    }

    .highlight-item{
        font-size:17px;
        font-weight:600;
    }

    .highlight-item i{
        font-size:20px;
    }

    /* Third item ko second row mein center */
    .highlight-item:nth-child(3){
        flex:0 0 100%;
        display:flex;
        justify-content:center;
    }

}   

@media (min-width:769px){

    .contact-header-content h1{
        max-width:650px;
        margin:0 auto;
        line-height:1.2;
    }

}


.contact-header::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    top:-180px;
    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(13,110,253,.12) 0%,
    rgba(13,110,253,0) 70%);

    pointer-events:none;
}

.contact-header::after{
    content:'';
    position:absolute;

    width:350px;
    height:350px;

    bottom:-150px;
    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(77,163,255,.12) 0%,
    rgba(77,163,255,0) 70%);

    pointer-events:none;
}

.contact-header{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef5ff 50%,
    #ffffff 100%);

    padding:140px 0 100px;
}

.contact-header::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    top:-180px;
    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(13,110,253,.12) 0%,
    rgba(13,110,253,0) 70%);

    pointer-events:none;
}

.contact-header::after{
    content:'';
    position:absolute;

    width:350px;
    height:350px;

    bottom:-150px;
    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(77,163,255,.12) 0%,
    rgba(77,163,255,0) 70%);

    pointer-events:none;
}

.contact-header .container{
    position:relative;
    z-index:2;
}

.contact-header-content::before{
    content:'';
    position:absolute;

    top:20px;
    left:-80px;

    width:180px;
    height:180px;

    background-image:
    radial-gradient(#0d6efd 1.5px, transparent 1.5px);

    background-size:18px 18px;

    opacity:.12;

    pointer-events:none;
}

.success-message{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#e8f7ed;
    color:#0f9d58;
    border-radius:10px;
    font-weight:600;
    text-align:center;
}


/* footer location icon */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.3;
}


.footer-contact li i {
    margin-top: 3px;
    min-width: 16px;
}


.footer-contact li span {
    line-height: 1.35;
}

@media(max-width:768px){

.footer-contact li{
    font-size:14px;
    gap:12px;
}

.footer-contact li span{
    line-height:1.5;
}

}

/* Footer Social Icons Fix */

.footer-social a i{
    color: #1f3cff;
    transition: 0.3s ease;
}


/* Hover */

.footer-social a:hover i{
    color: #ffffff;
}


/* Remove Instagram default gradient/color */

.footer-social .fa-instagram{
    color: #1f3cff;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}


.footer-links {
    margin-bottom: 12px;
}


.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}


.footer-links a:hover {
    color: #ffffff;
}


.footer-links span,
.copyright span {
    margin: 0 8px;
    color: #aaa;
}


.copyright {
    color: #aaa;
    font-size: 14px;
}




/* Mobile Responsive */

@media(max-width:600px){

    .footer-links {
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:5px;
    }


    .copyright {
        line-height:1.8;
        padding:0 15px;
    }

}



/* ===================================
   MOBILE SATHIE POLICY PAGE
=================================== */


.privacy-page{

    min-height:100vh;

    padding:50px 20px;

    background:
    linear-gradient(
        135deg,
        rgba(0,87,216,0.08),
        transparent 40%
    ),
    linear-gradient(
        45deg,
        rgba(3,27,58,0.05),
        transparent 50%
    ),
    #f8fafc;

    position:relative;

    overflow:hidden;

}



.privacy-page::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    right:-120px;

    top:80px;

    background:#0057d8;

    opacity:0.10;

    border-radius:50%;

    filter:blur(25px);

}



.privacy-page::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    left:-120px;

    bottom:100px;

    background:#031B3A;

    opacity:0.08;

    border-radius:50%;

    filter:blur(30px);

}





.privacy-container{

    max-width:1000px;

    margin:auto;

    position:relative;

    z-index:2;

}





/* LOGO */


.privacy-logo{

    text-align:center;

    margin-bottom:25px;

}


.privacy-logo img{

    width:190px;

}







/* SERVICE TAG */


.policy-tag{

    width:max-content;

    margin:0 auto 25px;

    padding:10px 20px;

    background:#e8f1ff;

    color:#031B3A;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}



.policy-tag i{

    color:#0057d8;

    margin-right:8px;

}






/* BACK BUTTON */


.back-home{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#031B3A;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    margin-bottom:25px;

    transition:0.3s;

}



.back-home i{

    color:#0057d8;

}



.back-home:hover{

    color:#0057d8;

}






/* CONTENT */


.privacy-content{

    background:#ffffff;

    padding:55px 65px;

    border-radius:16px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 35px rgba(0,0,0,0.06);

}






.privacy-content h1{

    text-align:center;

    color:#031B3A;

    font-size:38px;

    margin-bottom:40px;

}






.privacy-content h2{

    color:#031B3A;

    font-size:23px;

    margin-top:35px;

    margin-bottom:15px;

    display:flex;

    align-items:center;

}



.privacy-content h2::before{

    content:"";

    width:5px;

    height:24px;

    background:#0057d8;

    border-radius:5px;

    margin-right:12px;

}





.privacy-content p{

    color:#4b5563;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}







/* CONTACT BOX */


.contact-policy{

    margin-top:25px;

    padding:25px;

    background:#e8f1ff;

    border-left:4px solid #0057d8;

    border-radius:10px;

}



.contact-policy p{

    margin-bottom:10px;

    color:#031B3A;

}



.contact-policy i{

    color:#0057d8;

    margin-right:8px;

}







/* RESPONSIVE */


@media(max-width:768px){


.privacy-page{

    padding:30px 15px;

}



.privacy-logo img{

    width:150px;

}



.policy-tag{

    font-size:13px;

}



.privacy-content{

    padding:30px 22px;

}



.privacy-content h1{

    font-size:28px;

}



.privacy-content h2{

    font-size:19px;

}



.privacy-content p{

    font-size:15px;

    line-height:1.8;

}


}





@media(max-width:480px){


.privacy-content{

    padding:25px 18px;

}



.privacy-content h1{

    font-size:25px;

}


.back-home{

    font-size:14px;

}


}

.contact-policy a{

    color:#031B3A;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;

    position:relative;

}



.contact-policy a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-3px;

    width:0%;

    height:2px;

    background:#0057d8;

    transition:0.3s;

}



.contact-policy a:hover{

    color:#0057d8;

}



.contact-policy a:hover::after{

    width:100%;

}

.footer-links{

    text-align:center;

    margin-bottom:15px;

}



.footer-links a{

    color:#aaa;

    text-decoration:none;

    font-size:14px;

    transition:0.3s;

}



.footer-links a:hover{

    color:#ffffff;

}



.footer-links span{

    color:#aaa;

    margin:0 10px;

}











