*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body{
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
header{
    width:100%;
    background:#2B2B2B;

    position:sticky;
    top:0;
    left:0;
    z-index:9999;
}
.container{
    width: 100%;
    max-width: 1500px;
    margin: auto;
}
header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.logo img{
    width:110px;
    display: block;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 60px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}
nav ul li a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffe2b3;
    transform: translateX(-50%);
    transition: .1s;
}
nav ul li a.active{
    color: #ffe2b3;
}
nav ul li a.active::after{
    width: 100%;
}
nav ul li a:hover::after{
    width: 100%;
}
nav ul li a:hover{
    color: #ffe2b3;
}


nav ul li a:hover::after{
    width: 100%;
}
.header-btn a{
    display: inline-block;
    padding: 12px 25px;
    background-color: #A8977B;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}
.header-btn a:hover{
    background-color: #7d6d54;
}
.herobanner{
    width:100%;
    height: 650px;
    overflow: hidden;
}
.herobanner img{
    width:100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about{
    padding: 50px;
}
.about .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding:0 50px;

}
.about-image{
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

}
.about-image img{
    width: 100%;
    display: block;
    border-radius: 5px;
}
.about-content{
    width:50%;
}
.about-content span{
    font-size: 20px;
    font-weight: 700;
    color: #a8977b;
}
.about-content h2{
    font-weight: 700;
}
.about-content p{
    font-size: 17px;
    color: #313131;
    margin-top: 20px;

}
.products{
margin-top: 20px;
}
.section-title{
    text-align: center;
}
.section-title h2{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}
.section-title img{
    width:200px;
}
.product-box{
    display: flex;
    justify-content: space-between;
    gap: 20px;

}
.product-card{
    width: 50%;
    padding: 10px;
    background: #fff7e9;
    border-radius: 5px;
    border: 1px solid rgb(171, 171, 171)
}
.product-card h3{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    padding: 5px 0;
}
.product-card:hover{
    background: #f6e7cd;
}
.product-image{
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.product-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;

    transition:0.7s ease;
}
.product-image::after{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.35);

    opacity:0;

    transition:0.5s ease;
}
.product-card:hover .product-image img{
    transform:scale(1.15);
}

.product-card:hover .product-image::after{
    opacity:1;
}
.gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.gallery-card{
    background: #fff7e9;
    border: 1px solid rgb(171, 171, 171);
    border-radius: 5px;
    padding: 10px;
}
.gallery-image{
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.gallery-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card h3{
    text-align:center;
    font-size: 20px;
    padding: 5px 0;
    font-weight: 600;
    margin-top: 10px;
}
.gallery-card:hover .gallery-image img{
    transform:scale(1.1);
}

.gallery-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    transition:.4s;
}

.gallery-card:hover .gallery-image::after{
    opacity:1;
}
.product-gallery{
    padding: 0px;
}

/* Testimonials */
.testimonials{padding:0 100px;background:#fff;}
.testimonial-wrapper{position:relative;}
.testimonial-slider{padding:0 50px;}
.testimonial-slider .swiper{overflow:visible;}
.swiper-slide{height:auto;margin-top:0;display: flex;}
.testimonial-card{
background:#fff;
border:1px solid #e8e8e8;
border-radius:14px;
padding:30px;
min-height: 280px;
transition:.3s;
display: flex;
flex-direction: column;
margin-top: 20px;
}
.testimonial-card:hover{
transform:translateY(-6px);

}
.testimonial-card h3{margin:0 0 12px;font-size:20px;font-weight: 600;}
.stars{color:#f4b400;font-size:20px;margin-bottom:12px;}
.testimonial-card p{line-height:1.5;color:#666;}

.swiper-button-prev,
.swiper-button-next{
width:40px!important;
height:40px!important;
background:#fff;
border:1px solid #ddd;
border-radius:50%;
color:#b88a45!important;
top:50%!important;
margin-top:0!important;
transform:translateY(-50%);
}
.swiper-button-prev{left:-25px!important;}
.swiper-button-next{right:-25px!important;}
.swiper-button-prev:after,
.swiper-button-next:after{
font-size:18px!important;
font-weight:700!important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
background:#b88a45;
color:#fff!important;
border-color:#b88a45;
}

.quote-section{
    padding:50px 100px;
    background:#fff;
}

.quote-section .container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.quote-section .section-title{
    text-align:center;
    margin-bottom:30px;
}

.quote-section .section-title h2{
    font-size:30px;
    font-weight:700;
    color:#111518;
    margin:0;
}

.quote-form{
    width:100%;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:17px;
    color:#1d1d1d;
    margin-bottom:12px;
    font-weight:500;
}

.form-group input,
.form-group textarea{

    width:100%;
    border:1px solid #e3e3e3;
    border-radius:4px;
    font-size:16px;
    color:#333;
    outline:none;
    transition:.3s;
    box-sizing:border-box;

}

.form-group input{

    height:40px;
    padding:0 18px;

}

.form-group textarea{

    height:200px;
    padding:15px;
    resize:vertical;

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#b1b1b1;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#b79d77;
    box-shadow:0 0 6px rgba(183,157,119,.15);

}

.full-width{

    margin-bottom:25px;

}

.quote-btn{

    background:#b59b73;
    color:#fff;
    border:none;
    padding:10px 30px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    border-radius:4px;
    transition:.3s;

}

.quote-btn:hover{

    background:#a88b60;

}

.footer{
    background:#201d1d;
    color:#fff;
    padding:50px 100px 0 0;
    font-family:Arial,sans-serif}
.footer *{
    box-sizing:border-box}
.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:30% 20% 30% 20%;
    gap:30px;
    align-items:start
}
.footer-logo{
    width:120px;
    margin-bottom:10px}
.footer-about p{
    font-size:16px;
    line-height:1.8}
.footer h3{
    font-size:20px;
    margin:0 0 20px;
    font-weight:600}
.footer-links ul{
    list-style:none;
    padding:0 0 0 50px;
    margin:0}
.footer-links li{
    margin:20px 0}
.footer-links a{
    text-decoration:none;
    color:#fff;
    font-size:17px}
.footer-links h3{
    padding:0 0 0 50px;
    }
.item{
    display:flex;
    gap:15px;
    margin-bottom:28px}
.circle{
    width:40px;
    height:40px;
    border:2px solid #d8b57b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#d8b57b;
    flex:none}
.item h4{
    margin:0 0 2px;
    font-size:17px}
.item p{
    margin:0;
    font-size:16px;
    line-height:1.7}
.footer-map iframe{
    width:100%;
    height:300px;
    border:0
    
}
.footer-bottom{
    margin-top:4px;
    border-top:1px solid rgba(255,255,255,.15);
    padding:15px;
    text-align:center;
    font-size:17px}
.footer-bottom span{
    color:#d8b57b}

 .faq-section{
    padding:50px 0;
    background:#fff}
.faq-heading{
    max-width:850px;
    margin:0 auto 20px;
    text-align:center;
    padding:0 10px;
}
.sub-title{display:block;
    color:#bf8f45;
    font-size:20px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px}
.faq-heading h2{
    font-size:30px;
    line-height:1.15;
    color:#604e45;
    margin:0 0 18px;
    font-weight:600}
.faq-heading p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-top: 0}
.faq-container{
    width:85%;
    max-width:1400px;
    margin:auto}
.faq-item{
    background:#fff;
    border:1px solid #e7d9c2;
    border-radius:10px;
    margin-bottom:10px;
    overflow:hidden;
    transition:.3s}
.faq-item.active{
    background:#7F715C;
    color:#fff}
.faq-question{
    width:95%;
    background:none;
    border:0;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    color:inherit}
.faq-question span{
    font-size:30px;
    font-weight:300}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease}
.faq-answer p{
    padding:5px 30px;
    margin:0;
    font-size:15px;
    line-height:1.5;
    color:inherit}
.counter-solutions{
    padding:50px 0;
    background:#f8f8f8;
    font-family:Arial, Helvetica, sans-serif;margin-top: 50px;
}

.counter-solutions .container{
    width:95%;
    max-width:1320px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:30px;
}

.section-heading span{
    display:inline-block;
    padding:8px 18px;
    background:#f4e8d8;
    color:#c28a28;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:35px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:5px;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    font-size:17px;
    color:#232323;
    line-height:25px;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.counter-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border:1px solid #ececec;
    position:relative;
    transition:.35s;
    overflow:hidden;
}

.counter-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:70px;
    background:#c28a28;
    border-radius:0 0 10px 0;
}

.counter-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(53, 53, 53, 0.08);
    border-color:#c28a28;
}

.icon-box{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f4e8d8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;
}

.icon-box i{
    font-size:25px;
    color:#c28a28;
    transition:.35s;
}

.counter-card:hover .icon-box{
    background:#c28a28;
}

.counter-card:hover .icon-box i{
    color:#fff;
    transform:rotate(10deg);
}

.counter-card h3{
    font-size:20px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.counter-card p{
    color:#666;
    font-size:16px;
    line-height:25px;
    margin:0;
}
.why-us-simple{
    padding:40px 0;
    background:#fff;

}

.section-title{
    text-align:center;
    /* margin-bottom:30px; */
}


.section-title h2{
    font-size:35px;
    color:#222;
    font-weight: 700;
}

.why-grid{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-item{
    border:1px solid #e5e5e5;
    padding:30px;
    transition:.3s;
  
}

.why-item:hover{
    border-color:#c28a28;
}

.why-item i{
    font-size:25px;
    color:#c28a28;
    margin-bottom:15px;
}

.why-item h3{
    font-size:20px;
    margin-bottom:12px;
    color:#222;
}

.why-item p{
    font-size:15px;
    color:#666;
    line-height:25px;
}

.who-serve{
    padding:50px 0;
    background:#f8f8f8;
    font-family:Arial, Helvetica, sans-serif;
}

.who-serve .container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

.serve-heading{
    text-align:center;
    margin-bottom:30px;
}


.serve-heading h2{
    font-size:35px;
    color:#222;
    margin-bottom:10px;
    font-weight:700;
}

.serve-heading p{
    max-width:720px;
    margin:auto;
    font-size:17px;
    line-height:25px;
    color:#232323;
}

.serve-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.serve-box{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:10px;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
    color:#333;
    text-align:center;
    transition:.3s ease;
}

.serve-box:hover{
    border-color:#c58a2b;
    color:#c58a2b;
    transform:translateY(-5px);
}

.full-width{
    grid-column:2 / 3;
}
.content-section{
    padding:20px 100px;
    background:#ffffff;
}

.content-section .container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.content-heading{
    text-align:center;
    margin-bottom:20px;
}

.content-heading h2{
    font-size:30px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
    line-height:1.1;
}

.divider{
    width:90px;
    height:2px;
    background:#c48a2a;
    margin:auto;
    border-radius:50px;
}

.content-wrapper,
.sub-content{
    max-width:1400px;
    margin:auto;
}

.content-wrapper p,
.sub-content p{
    font-size:17px;
    color:#555;
    line-height:34px;
    text-align:justify;
    line-height: 27px;
}

.sub-content{
    margin-top:20px;
}

.sub-content h3{
    font-size:30px;
    text-align:center;
    color:#222;
    margin-bottom:10px;
    font-weight:700;
}

.small-divider{
    width:70px;
    height:2px;
    background:#c48a2a;
    margin:0 auto 20px;
    border-radius:50px;
}

.content-wrapper strong,
.sub-content strong{
    color:#222;
}
html{
    scroll-behavior:smooth;
}
section{
    scroll-margin-top:100px;
}
.bharat-link{
    color:#c6a46b;
    text-decoration:none;
}

.bharat-link:visited{
    color:#c6a46b;
}

.bharat-link:hover{
    color:#ffffff;
}


.blog-section{
    padding:100px 0;
    background:#fff;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{

    font-size:40px;
    font-weight:700;
    color:#111;
    line-height:1.2;
}

.blog-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.blog-card{

    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;

}

.blog-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.blog-category{

    display:inline-block;
    margin:28px 28px 15px;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    color:#999;

}

.blog-card h3{

    margin:0 28px 22px;

    font-size:20px;
    line-height:1.35;
    font-weight:600;

}

.blog-card h3 a{

    color:#111;
    text-decoration:none;

}

.blog-image{

    overflow:hidden;

}

.blog-image img{

    width:100%;
    display:block;
    transition:.6s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-card p{

    padding:25px;
    color:#232323;
    line-height:1.7;
    font-size:16px;

}

.blog-meta{

    display:flex;
    align-items:center;
    gap:12px;

    padding:0 28px 30px;

    font-size:13px;
    font-weight:600;

    color:#777;

}

.blog-section{
    width:100%;
    padding:50px 0 10px 0;
}

.blog-container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.blog-container h1{
    font-size:30px;
    line-height:1.5;
    font-weight:700;
    color:#111;
    margin-bottom:22px;
}

.blog-meta{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:13px;
    color:#777;
    text-transform:uppercase;
    margin-bottom:1px;
    font-weight:600;
}

.blog-container p{
    font-size:17px;
    line-height:1.7;
    color:#232323;

}

.blog-container strong{
    font-weight:700;
    color:#111;
}

.blog-container a{
    color:#b68d45;
    text-decoration:none;
    font-weight:700;
}

.blog-container a:hover{
    text-decoration:underline;
}

.image-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:20px 0;
}

.image-box{
    width:50%;
}

.image-box img{
    width:100%;
    height:400px;
    display:block;
    object-fit:cover;
}

.blog-container h2{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.3;
}

.service-list{
    margin-left:35px;
    margin-bottom:10px;
}

.service-list li{
    font-size:17px;
    color:#232323;
    line-height:1.6;
}

.mt{
    margin-top:10px;
}

.feature{
    margin-bottom:10px;
}

.feature h4{
    font-size:17px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.feature p{
    font-size:17px;
    color:#232323;
    line-height:1.5;
}

.industry-section h2{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.1;
}

.intro{
    font-size:14px;
    color:#232323;
    margin-bottom:10px;
    line-height:1.5;
}

.industry-list{
    margin-left:35px;
    margin-bottom:10px;
}

.industry-list li{
    font-size:17px;
    color:#232323;
    line-height:1.9;
}

.industry-text{
    font-size:17px;
    color:#232323;
    line-height:1.6;
    margin-bottom:10px;
}

.contact-heading{
    margin-bottom:10px;
}

.contact-box{
    margin-bottom:10px;
}

.contact-box h4{
    font-size:17px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.contact-box p{
    font-size:17px;
    color:#232323;
    line-height:1.6;
}

.contact-box a{
    color:#b88b43;
    text-decoration:underline;
    word-break:break-word;
}

.last-text{
    font-size:17px;
    color:#111;
    line-height:1.6;
    margin-top:10px;
}

.last-text strong{
    font-weight:700;
}

.blog-faq-title{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.3;
    margin-top: 20px;
}

.blog-faq-item{
    margin-bottom:15px;
}

.blog-faq-item h4{
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:1.5;
    margin-bottom:0;
}

.blog-faq-item p{
    font-size:17px;
    color:#232323;
    line-height:1.6;
}
.blog-comment-title{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.blog-comment-note{
    font-size:16px;
    color:#232323;
    margin-bottom:20px;
}

.blog-comment-note span{
    color:#d9534f;
}

.blog-form-row{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.blog-form-group{
    flex:1;
}

.blog-form-group label{
    display:block;
    font-size:17px;
    font-weight:500;
    color:#222;
    margin-bottom:10px;
}

.blog-form-group label span{
    color:#d9534f;
}

.blog-form-group input,
.blog-form-group textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:2px;
    padding:8px 15px;
    font-size:16px;
    font-family:inherit;
    outline:none;
    transition:.3s;
    background:#fff;
}

.blog-form-group textarea{
    resize:vertical;
    min-height:180px;
}

.blog-form-group input:focus,
.blog-form-group textarea:focus{
    border-color:#b59b72;
}

.full-width{
    margin-bottom:25px;
}

.blog-checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:30px;
}

.blog-checkbox input{
    width:18px;
    height:18px;
    margin-top:3px;
}

.blog-checkbox label{
    font-size:16px;
    color:#444;
    line-height:1.6;
    cursor:pointer;
}

.blog-submit-btn{
    background:#b59b72;
    color:#fff;
    border:none;
    padding:12px 22px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    border-radius:2px;
    transition:.3s;
    margin-bottom: 40px;
}

.blog-submit-btn:hover{
    background:#9f8458;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 99999;
}

.whatsapp-float img{
    width:34px;
    height:34px;
    filter: brightness(0) invert(1);
}


/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Hamburger menu button (hidden on desktop) */
.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:30px;
    height:22px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    z-index:10000;
}
.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:.3s ease;
}
.menu-toggle.active span:nth-child(1){
    transform:translateY(9.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:translateY(-9.5px) rotate(-45deg);
}
.mobile-btn{
    display:none;
}

/* ---------- Large desktops / laptops ---------- */
@media (max-width:1200px){
    .container{
        width:92%;
    }
    .testimonials,
    .quote-section,
    .content-section{
        padding-left:40px;
        padding-right:40px;
    }
    .footer{
        padding:50px 40px 0 0;
    }
}

/* ---------- Tablets ---------- */
@media (max-width:992px){
    header .container{
        width:92%;
    }
    nav ul{
        gap:30px;
    }
    nav ul li a{
        font-size:15px;
    }
    .header-btn a{
        padding:10px 18px;
        font-size:14px;
    }
    .herobanner{
        height:400px;
    }
    .about{
        padding:40px 25px;
    }
    .about .container{
        flex-direction:column;
    }
    .about-image,
    .about-content{
        width:100%;
    }
    .product-box{
        flex-direction:column;
    }
    .product-card{
        width:100%;
    }
    .gallery{
        grid-template-columns:repeat(2,1fr);
    }
    .counter-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .serve-grid{
        grid-template-columns:repeat(3,1fr);
    }
    .full-width{
        grid-column:auto;
    }
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
    .footer-links h3,
    .footer-links ul{
        padding-left:0;
    }
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .content-section{
        padding:20px 25px;
    }
    .testimonials,
    .quote-section{
        padding:0 25px;
    }
    .quote-section{
        padding-top:50px;
    }
    .testimonial-slider{
        padding:0 40px;
    }
    .swiper-button-prev{left:0!important;}
    .swiper-button-next{right:0!important;}
}

/* ---------- Mobile phones (landscape/portrait) ---------- */
@media (max-width:768px){
    header .container{
        height:75px;
    }
    .logo img{
        width:90px;
    }
    .menu-toggle{
        display:flex;
    }
    header .header-btn{
        display:none;
    }
    header nav{
        position:fixed;
        top:75px;
        left:0;
        width:100%;
        height:0;
        overflow:hidden;
        background:#2B2B2B;
        transition:height .35s ease;
    }
    header nav.active{
        height:calc(100vh - 75px);
        overflow-y:auto;
    }
    nav ul{
        flex-direction:column;
        gap:0;
        padding:10px 0 30px;
    }
    nav ul li{
        width:100%;
        text-align:center;
    }
    nav ul li a{
        display:block;
        padding:15px 20px;
        font-size:16px;
    }
    nav ul li a::after{
        display:none;
    }
    .mobile-btn{
        display:block;
        margin-top:10px;
    }
    .mobile-btn a{
        display:inline-block;
        padding:12px 30px;
        background-color:#A8977B;
        border-radius:50px;
        font-weight:600;
    }

    .herobanner{
        height:250px;
    }

    .about{
        padding:10px 10px;
    }
    .about-content h2{
        font-size:22px;
    }
    .about-content span{
        font-size:17px;
    }
    .about-content p{
        font-size:15px;
    }

    .content-section{
        padding:20px 20px;
    }
    .content-heading h2,
    .section-title h2{
        font-size:24px;
    }
    .content-wrapper p,
    .sub-content p{
        font-size:15px;
        line-height:24px;
    }
    .sub-content h3{
        font-size:22px;
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }
    .gallery-image img{
        height:180px;
    }
    .product-image img{
        height:280px;
    }

    .counter-solutions,
    .why-us-simple,
    .who-serve{
        padding:35px 0;
    }
    .counter-grid,
    .why-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .section-heading h2{
        font-size:26px;
    }
    .serve-grid{
        grid-template-columns:1fr 1fr;
    }

    .faq-container{
        width:92%;
    }
    .faq-heading h2{
        font-size:24px;
    }
    .faq-question{
        font-size:15px;
        padding:15px 20px;
    }

    .testimonials{
        padding:0 15px;
    }
    .testimonial-slider{
        padding:0 30px;
    }
    .swiper-button-prev,
    .swiper-button-next{
        width:32px!important;
        height:32px!important;
    }

    .quote-section{
        padding:35px 20px;
    }
    .form-row,
    .blog-form-row{
        grid-template-columns:1fr;
        flex-direction:column;
    }

    .footer{
        padding:35px 20px 0;
    }
    .footer-container{
        grid-template-columns:1fr;
        width:100%;
        gap:30px;
    }
    .footer-links h3,
    .footer-links ul{
        padding-left:0;
    }

    .blog-section{
        padding:35px 0;
    }
    .blog-grid{
        grid-template-columns:1fr;
        gap:25px;
    }
    .blog-container h1{
        font-size:22px;
    }
    .blog-container h2{
        font-size:20px;
    }
    .image-row{
        flex-direction:column;
    }
    .image-box{
        width:100%;
    }
    .image-box img{
        height:220px;
    }
}

/* ---------- Small phones ---------- */
@media (max-width:480px){
    .logo img{
        width:75px;
    }
    .herobanner{
        height:200px;
    }
    .section-title h2{
        font-size:20px;
    }
    .serve-grid{
        grid-template-columns:1fr;
    }
    .gallery{
        grid-template-columns:1fr;
    }
    .gallery-image img{
        height:220px;
    }
    .counter-card,
    .why-item{
        padding:22px;
    }
    .quote-btn,
    .blog-submit-btn{
        width:100%;
    }
    .footer-map iframe{
        height:220px;
    }
}

