/*==================================================
    01. DESIGN SYSTEM
==================================================*/

:root{

    /* Brand */
    --primary:#16a34a;
    --primary-dark:#15803d;

    /* Typography */
    --heading:#1f2937;
    --text:#4b5563;

    /* Background */
    --white:#ffffff;
    --section:#f8fafc;

    /* Border */
    --border:#e5e7eb;

    /* Shadow */
    --shadow:0 8px 30px rgba(0,0,0,.08);

    /* Radius */
    --radius:12px;

}


/*==================================================
    02. RESET & BASE LAYOUT
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
    scroll-padding-top:80px;

}

body{

    margin:0;
    padding:70px 0 0;

    font-family:Arial,sans-serif;

    overflow-x:hidden;

}

main{

    width:100%;

}

input, select{
    width:100%;
    padding:8px;
    margin:6px 0 12px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
}

.hidden{
    display:none;
}

/* Common Section Styling */
.section {
    padding: 60px 20px;
    text-align: center;
    margin: auto;
	background: var(--section);

}

.section.dark {
    background: #A52A2A;

}

.section-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 40px 0 40px;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1f2937;
    letter-spacing: 2px;
}

.section-title::before,
.section-title::after{
    content: "";
    flex: 1;
    max-width: 280px;   /* লাইন আরও বড় */
    height: 4px;
    background: linear-gradient(
        to right,
        transparent,
        #FFD700,
        #FFC107,
        #FFD700,
        transparent
    );
    border-radius: 50px;
}

.section-title::after{
    background: linear-gradient(
        to left,
        transparent,
        #FFD700,
        #FFC107,
        #FFD700,
        transparent
    );
}

.section-title span{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
	white-space: nowrap;
}

/* Common Grid & Card Styling */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center; gap:20px;
}

.card {
    background: #fff;
    padding: 18px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    text-align: center;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.card:hover {
    transform: translateY(-5px);
}

/* Common Buttons */
.btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

button{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:8px;
    background:#16a34a;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#15803d;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px; /* rounded rectangle */
    transition: 0.3s;
}

.book-now-btn:hover {
    background: #16a34a;
}

#myBtn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #0056b3;
}

#more {
  display: none;
}


/*==================================================
    03. NAVBAR
==================================================*/

.navbar{

    position:fixed !important;

    top:0;
    left:0;
    right:0;

    width:100%;

    z-index:999999;

    background:rgba(255,255,255,.20);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

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

    box-shadow:
        0 8px 30px rgba(15,23,42,.08),
        0 2px 8px rgba(15,23,42,.05);

    transition:all .35s ease;

}

.navbar .container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* LOGO */
.logo{

    display:flex;

    align-items:center;

}

.logo img{

    display:block;

    width:auto;

    height:48px;

}

/* NAVIGATION MENU */
.nav-menu{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;

}

.nav-menu li{

    position:relative;

}

.nav-menu li a{

    display:block;

    position:relative;

    text-decoration:none;

    color:var(--heading);

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.nav-menu li a:hover,
.nav-menu li a.active{

    color:var(--primary);

}

.nav-menu li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-menu li a:hover::after,
.nav-menu li a.active::after{

    width:100%;

}

/* CTA AREA */
.nav-btn{

    display:flex;

    align-items:center;

    gap:12px;

}

.nav-btn .btn{

    border-radius:50px;

}

/* MOBILE MENU ICON */
.menu-toggle{

    display:none;

    font-size:30px;

    color:var(--heading);

    cursor:pointer;

}


/*==================================================
    04. HERO SECTION (DEFAULT & OPS)
==================================================*/

/* --- Default Hero --- */
.hero{

    min-height:85vh;

    display:flex;
    align-items:center;

    position:relative;

    overflow:hidden;

    /* Fallback Image */

    background:url("/assets/images/Factory-Pest-Control-by-Chattogram-Pest-Control.jpg")
    center center / cover no-repeat;

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    z-index:0;

    background-size:cover;
    background-position:center;

    animation:heroSlide 18s ease-in-out infinite;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.18);

    z-index:1;

}

@keyframes heroSlide{

    0%{

        background-image:url("/assets/images/Factory-Pest-Control-by-Chattogram-Pest-Control.jpg");

    }

    33%{

        background-image:url("/assets/images/water-tank-clean-by-chattogram-pest-control.jpg");

    }

    66%{

        background-image:url("/assets/images/Vesel-Fumigation-by-Chattogram-Pest-Control.jpg");

    }

    100%{

        background-image:url("/assets/images/Factory-Pest-Control-by-Chattogram-Pest-Control.jpg");

    }

}

.hero .container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:40px 20px;

    display:flex;

    flex-direction:column;

    gap:40px;

}

.hero-row{

    width:100%;

}

.hero-top{

    text-align:center;

    color:#fff;

}

.hero-top h1{

    font-size:clamp(34px,5vw,48px);

    font-weight:800;

    line-height:1.2;

    margin-bottom:12px;

}

.hero-top p{

    font-size:20px;

    color:#f1f5f9;

    letter-spacing:1px;

}

.hero-bottom{

    display:flex;

    gap:30px;

}

/* HERO GLASS CARD */
.hero-col{

    flex:1;

    padding:22px;

    border-radius:var(--radius);

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

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

    color:#e2e8f0;

    transition:.35s;

}

.hero-col:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.16);

}

.hero-col p{

    font-size:16px;

    line-height:1.9;

}

/* --- OPS Hero --- */
.ops-hero{

    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#0b5fa5 0%,#0a4d86 100%);

    color:#fff;

    padding:90px 0;

}

.ops-hero::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;
    right:-80px;

}

.ops-hero::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    bottom:-70px;
    left:-60px;

}

.ops-hero-content{

    position:relative;
    z-index:2;

    max-width:850px;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:22px;

    backdrop-filter:blur(8px);

}

.ops-hero h1{

    font-size:52px;

    line-height:1.2;

    margin-bottom:22px;

    font-weight:700;

}

.ops-hero h1 span{

    display:block;

    margin-top:10px;

    font-size:58%;

    font-weight:500;

    color:#ffd54f;

}

.ops-hero p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    max-width:780px;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    padding:15px 34px;

    background:#ffb300;

    color:#222;

    text-decoration:none;

    border-radius:8px;

    font-weight:700;

    transition:.35s;

}

.hero-btn:hover{

    background:#fff;

    color:#0b5fa5;

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}


/*==================================================
    05. OPS INTRO SECTION
==================================================*/

.ops-intro{
    padding:80px 0;
    background:#fff;
}

.intro-box{
    max-width:1000px;
    margin:auto;
}

.intro-tag{
    display:inline-block;
    background:var(--section);
    color:#0b5fa5;
    padding:6px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.intro-box h2{
    font-size:38px;
    line-height:1.3;
    color:#1d2d3d;
    margin-bottom:25px;
}

.intro-box h2 span{
    display:block;
    font-size:65%;
    color:#0b5fa5;
    font-weight:500;
    margin-top:8px;
}

.intro-box p{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

.process-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-item{
    background:#f8fafc;
    border:1px solid #e7edf3;
    border-radius:var(--radius);
    padding:25px 20px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.process-item:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.process-item span{
    display:block;
    width:45px;
    height:45px;
    line-height:45px;
    margin:0 auto 15px;
    background:#0b5fa5;
    color:#fff;
    border-radius:50%;
    font-weight:700;
}


/*==================================================
    06. WHY US SECTION
==================================================*/

.whyus-section{

    padding:60px 20px;

    background:var(--white);

}

.whyus-container{

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:40px;

    flex-wrap:nowrap;

}

/* LEFT CONTENT */
.whyus-text{

    flex:1;

}

.whyus-text h2{

    font-size:28px;

    margin-bottom:15px;

    color:var(--heading);

}

.whyus-text p{

    margin-bottom:15px;

    color:var(--text);

    line-height:1.8;

}

.whyus-text ul{

    padding-left:20px;

    margin-bottom:20px;

    color:var(--text);

    line-height:1.8;

}

/* IMAGE SLIDER */
.whyus-images{

    flex:1;

    position:relative;

    height:320px;

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transform:scale(1.05);

    transition:
        opacity .8s ease,
        transform 1s ease;

}

.slide.active{

    opacity:1;

    transform:scale(1);

}


/*==================================================
    07. SERVICES SECTION
==================================================*/

#service-section {
    background-color: var(--section);
    padding: 50px 20px;
    text-align: center;
    margin: auto;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

    max-width:1300px;
    width:100%;
    margin:0 auto;
}

.service-card {
    background: #fff;
    padding: 15px;
    border-radius:var(--radius);
    text-align: center;
    box-shadow:var(--shadow);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    font-size: 40px;
    color: #2e7d32;
    margin-bottom: 12px;
}

/* Service Buttons & Actions */
.service-cta{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    margin-top: auto; /* 🔥 important */
}

.details-btn {
  background: #007bff;
  color: #fff;
  
}
.details-btn:hover {
  background: #0056b3;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn-small {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: auto;        /* 👈 important */
    margin-top: 10px;
}

.service-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service-btn {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.service-btn:hover {
    opacity: 0.85;
}

/* Read More */
.service-details-btn {
    color: #2e7d32;
    border: 1.5px solid #2e7d32;
}

.service-details-btn:hover {
    background: #2e7d32;
    color: #fff;
}

/* Free Quote */
.service-whatsapp-btn {
    color: #ff9800;
    border: 1.5px solid #ff9800;
}

.service-whatsapp-btn:hover {
    background: #ff9800;
    color: #fff;
}

/* Service Text */
.service_text {
	color:#555; font-size:14px;
}

.service_text p {
  text-align: justify;
  line-height: 1.6;
}

/* More Services Card */
.more-services-card{
    display:block;
    grid-column:1/-1;

    margin-top:30px;
    padding:30px 40px;

    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:22px;

    box-sizing:border-box;

    text-align:center;

    text-decoration:none;   /* underline remove */
    color:inherit;          /* default link color remove */

    transition:.35s;
}

.more-services-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.more-icon{
    width:58px;
    height:58px;

    margin:auto;

    border:2px solid #0b8d43;
    border-radius:50%;

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

    color:#0b8d43;
    font-size:22px;

    background:var(--section);
}

.more-services-card h3{
    margin:22px 0 15px;
    font-size:38px;
    font-weight:700;
    color:#1d1d1d;
}

.more-services-card p{
    max-width:1050px;
    margin:auto;

    color:#6d6d6d;

    font-size:20px;
    line-height:1.8;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:35px;

    text-decoration:none;

    color:#0b8d43;

    font-size:22px;
    font-weight:700;
}

.view-all-btn i{
    transition:.3s;
}

.view-all-btn:hover i{
    transform:translateX(6px);
}


/*==================================================
    08. PRODUCTS SECTION
==================================================*/

#products-section{
    background: var(--section);
    padding:70px 20px;
    text-align:center;
}



/* ===== Grid ===== */

.products{

    display:grid;

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

    max-width:1350px;

    margin:auto;

    gap:22px;

}

/* ===== Card ===== */

.product{

    background:#fff;

    border-radius:14px;

    border:1px solid #ececec;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    transition:.35s;

    position:relative;

}


.product_content{
    padding:18px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.product_badge{

    display:inline-block;

    margin:auto;

    margin-bottom:12px;

    background:#eef8ff;

    color:#0077b6;

    border:1px solid #cde7ff;

    padding:6px 14px;

    border-radius:30px;

    font-size:11px;

    font-weight:600;

}

.product-ribbon{

    position:absolute;

    top:12px;

    left:-35px;

    background:#e53935;

    color:#fff;

    padding:5px 40px;

    font-size:11px;

    font-weight:bold;

    transform:rotate(-45deg);

    z-index:10;

}

.price{

    margin-top:auto;

    text-align:center;

    font-size:28px;

    font-weight:700;

    color:#d62828;

}

.view-all{

    text-align:center;

    margin-top:45px;

}

.no-product{

    width:100%;

    text-align:center;

    padding:60px;

}





.product:hover{

    transform:translateY(-8px);

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

}

/* Ribbon */



/* ===== Title ===== */

.product h3{
    font-size:20px;
    font-weight:700;
    color:#003366;
    line-height:1.4;
    margin:0 0 12px;
    padding:0;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;

    min-height:56px; /* সব কার্ডের উচ্চতা সমান থাকবে */
}

/* ===== Image ===== */

.product_img{

    padding:10px;

    background:#fafafa;

    height:150px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.product_img img{

    width:auto;

    height:130px;

    max-width:100%;

    object-fit:contain;

    transition:.35s;

}

.product:hover img{

    transform:scale(1.06);

}

/* ===== Description ===== */

.product_text{

    padding:15px;

    flex:1;

}

.product_text p{

    font-size:14px;

    color:#666;

    line-height:1.6;

    text-align:center;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:68px;

}


.product-description{
    margin-top:20px;
    line-height:1.9;
    font-size:17px;
    color:#333;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4{
    margin:20px 0 10px;
    color:#14532d;
}

.product-description p{
    margin-bottom:15px;
}

.product-description ul,
.product-description ol{
    margin:15px 0;
    padding-left:25px;
}

.product-description li{
    margin-bottom:8px;
}

.product-description strong{
    font-weight:bold;
}

.product-description table{
    width:100%;
    border-collapse:collapse;
    margin:15px 0;
}

.product-description table td,
.product-description table th{
    border:1px solid #ddd;
    padding:10px;
}
















/* ===== Price ===== */

.product h4{

    font-size:26px;

    color:#d62828;

    margin-top:15px;

    font-weight:700;

}

/* ===== Buttons ===== */

.service-cta{

    display:flex;

    gap:10px;

    padding:15px;

}

.service-cta .btn{

    flex:1;

    border-radius:8px;

    padding:10px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.details-btn{

    background:#fff;

    border:2px solid #0d6efd;

    color:#0d6efd;

}

.details-btn:hover{

    background:#0d6efd;

    color:#fff;

}

.whatsapp-btn{

    background:#198754;

    color:#fff;

}

.whatsapp-btn:hover{

    background:#157347;

}

/* ===== Responsive ===== */

@media(max-width:1200px){

.products{

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

}

}

@media(max-width:992px){

.products{

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

}

}

@media(max-width:768px){

.products{

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

}

.section-title span{

font-size:28px;

}

}

@media(max-width:500px){

.products{

grid-template-columns:1fr;

}

}





/*==================================================
    09. PRICING SECTION
==================================================*/

#price{

    width:100%;

    padding:70px 0;

    background:#ffffff;

    box-sizing:border-box;

}


/*==================================================
    CALCULATOR SECTION
==================================================*/

#price + .section{

    width:100%;

    padding:70px 0;

    background:#f8fafc;

    box-sizing:border-box;

}


/*==================================================
    COMMON CONTAINER
==================================================*/

#price p,
.price-grid,
.price-body,
.pricing-cta{

    max-width:1300px;

    width:100%;

    margin:auto;

    padding:0 20px;

    box-sizing:border-box;

}


/*==================================================
    PRICE GRID
==================================================*/

.price-grid{

    display:grid;

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

    gap:15px;

    margin-top:30px;

}

.price-grid .card{

    background:#fff;

    padding:15px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.price-grid .card:hover{

    transform:translateY(-5px);

}


/*==================================================
    INFORMATION BOXES
==================================================*/

.info-box{

    margin-top:12px;

    padding:12px;

    border-radius:8px;

    font-size:14px;

    line-height:1.6;

}

.commercial-rate{

    background:#f3f4f6;

    color:#111827;

}

.guarantee{

    background:#dcfce7;

    color:#166534;

    font-weight:600;

}

.note-box{

    background:#fef3c7;

    color:#92400e;

}


/*==================================================
    THREE COLUMN CALCULATOR
==================================================*/

.three-column{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.column{

    flex:1;

    background:#fff;

    padding:15px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/*==================================================
    OPTION GROUP
==================================================*/

.option-group{

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-top:10px;

}

.option-group label{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 14px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    cursor:pointer;

    font-size:14px;

    color:#111827;

    transition:.25s;

}

.option-group label:hover{

    background:#ecfdf5;

    border-color:var(--primary);

}

.option-group input{

    width:18px;

    height:18px;

    flex-shrink:0;

    accent-color:var(--primary);

}

.option-group label span{

    line-height:1.3;

}


/*==================================================
    ESTIMATE RESULT
==================================================*/

.estimate-box h3{

    margin-bottom:10px;

}

.result-box{

    margin-top:20px;

    text-align:center;

}

.result-box h2{

    font-size:40px;

    color:var(--primary);

}

.note{

    margin-top:10px;

    font-size:13px;

    color:#6b7280;

}


/*==================================================
    BEDROOM SELECTOR
==================================================*/

.bedroom-box{

    margin-bottom:15px;

}

.bedroom-box label{

    display:block;

    margin-bottom:6px;

    font-weight:600;

}

.bedroom-box select{

    width:100%;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1300px){

    .price-grid{

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

    }

}

@media(max-width:768px){

    .price-grid{

        grid-template-columns:1fr;

    }

    .three-column{

        flex-direction:column;

    }

}


/*==================================================
    10. PRICE LIST
==================================================*/

.price-grid-2{

    display:grid;

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

    gap:25px;

    max-width:1300px;

    margin:auto;

}

.price-item{

    background:#fff;

    padding:20px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s;

}

.price-item:hover{

    transform:translateY(-6px);

}

.price-item img{

    width:100%;

    height:170px;

    object-fit:contain;

    margin-bottom:15px;

}

.price-item h3{

    margin-bottom:15px;

}

.price-item ul{

    list-style:none;

    margin:0;

    padding:0;

}

.price-item li{

    padding:8px 0;

    border-bottom:1px solid #e5e7eb;

}




/*==================================================
    11. CLIENTS SECTION
==================================================*/

#clients {
    width: 100% !important;
    max-width: 100% !important;
    padding: 70px 0;
    background: var(--white) !important; /* Puro screen shada thakbe */
    box-sizing: border-box;
}

/* Container text ebong slider-ke majhkhane dynamic korbe */
#clients .container {
    max-width: 1300px; /* Apnar anyo section er layout onujayi width */
    margin: 0 auto !important; /* Majhkhane anar jonno automatic margin left/right */
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

#clients .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Slider Frame layout */
.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-track {
	margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: clientScroll 15s linear infinite;
}

.client-track:hover {
    animation-play-state: paused;
}
/* Logo Box */
.client-logo {
    width: 300px;
    height: 150px; /* আগে 90px ছিল */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white) !important;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 20px;
    flex-shrink: 0;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px; /* Logo ও লেখার মাঝে gap */
}

.client-logo h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

/* Infinite Scroll */
@keyframes clientScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/*==================================================
    12. REVIEW SECTION
==================================================*/

#reviews{

    padding:60px 20px;

    background:var(--section);

    text-align:center;

}



/* REVIEW SLIDER */
.review-slider{

    max-width:1300px;

    margin:auto;

    overflow:hidden;

}

.review-track{

    display:flex;

    gap:20px;

    width:max-content;

    animation:scrollLoop 20s linear infinite;

}

/* REVIEW CARD */
.review-card{

    min-width:300px;

    flex-shrink:0;

    padding:20px;

    background:var(--white);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    text-align:left;

    transition:.3s;

}

.review-card:hover{

    transform:translateY(-5px);

}

.review-card p{

    margin-bottom:10px;

    font-style:italic;

    line-height:1.7;

    color:var(--text);

}

.review-card h4{

    text-align:right;

    color:var(--text);

}

/* RATING */
.stars{

    color:#f5c518;

    font-size:16px;

    letter-spacing:2px;

    text-shadow:0 0 2px rgba(245,197,24,.6);

}

.google-icon{

    display:inline-block;

    font-size:18px;

    font-weight:700;

    background:conic-gradient(
        #4285F4 0%,
        #4285F4 25%,
        #EA4335 25%,
        #EA4335 50%,
        #FBBC05 50%,
        #FBBC05 75%,
        #34A853 75%,
        #34A853 100%
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.review-name{

    margin-top:10px;

    font-size:14px;

    font-weight:500;

    color:var(--text);

}

/* GOOGLE REVIEW BUTTON */
.gmb-button{

    margin-top:30px;

}

.gmb-button a{

    display:inline-block;

    padding:12px 22px;

    text-decoration:none;

    font-weight:600;

    color:#0f9d58;

    background:var(--white);

    border:2px solid #0f9d58;

    border-radius:8px;

    transition:.3s;

}

.gmb-button a:hover{

    background:#0f9d58;

    color:#fff;

}

/* REVIEW SLIDER ANIMATION */
@keyframes scrollLoop{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}


/*==================================================
    13. BLOGS SECTION
==================================================*/


#blogs {
    width: 100%;
    padding: 60px 0; 
}


.blog-inner {
    max-width: 1300px;
    margin: 0 auto;     
    padding: 0 20px;      
    box-sizing: border-box;
}


#blogs .card h3{

    line-height:1.5;
    height:4.5em;
    overflow:hidden;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;

}

#blogs .card p{

    line-height:1.7;
    height:6.8em;
    overflow:hidden;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;

}

/* View All Blogs Button */
.view-all-blog-wrap{
    margin:40px 0;
}

.view-all-blog-btn{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    width:100%;

    background:var(--section);

    color:#0d6efd;

    border:1px solid #cfe2ff;

    padding:16px 20px;

    border-radius:var(--radius);

    font-size:17px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.view-all-blog-btn i{

    font-size:18px;

}

.view-all-blog-btn:hover{

    background:#0d6efd;

    color:#fff;

    border-color:#0d6efd;

    transform:translateY(-2px);

    box-shadow:var(--shadow);

}


/*==================================================
    14. FAQ SECTION
==================================================*/

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
}

.faq-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    overflow: visible;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 15px 18px;
    border: none;
    background: #f9fafb;
    cursor: pointer;

    font-weight: 500;
    color: #111;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;   /* ← এটা যোগ করুন */
}

.faq-title{
    flex: 1;
    margin-left: 5px; /* চাইলে 10px বা 15px করতে পারেন */
}

.faq-title h3{
    margin: 0 0 8px;
    line-height: 1.4;
}

.faq-title p{
    margin: 0;
    line-height: 1.6;
}

.faq-question img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius:var(--radius);
    flex-shrink: 0;
    display: block;
}

.ops-faq {
    padding: 40px 0;
    background: var(--section);
}

.ops-faq .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ANSWER (IMPORTANT CHANGE) */
.faq-answer {
    display: none;   /* 🔥 IMPORTANT: remove max-height system */
    padding: 15px 18px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;  /* 🔥 NO MORE CUT ISSUE */
}


/*==================================================
    15. SOCIAL AREA & MAP SECTION
==================================================*/

#social-section {
    background-color: ffffff;
    padding: 50px 20px;
    text-align: center;
    margin: auto;
}

.social-container {
    display: flex;
    gap: 20px;
    flex-wrap:;
    justify-content: center;
    margin-top: 20px;
}

.social-box {
    display:flex;
	flex-direction:column;
	align-items: center;
    width: 610px;
    background: #ffffff;
    padding: 15px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.social-box h3 {
    margin-bottom: 10px;
}

.social-box iframe {
    max-width: 100%;
    height: 400px;
    border: none;
}


/*==================================================
    16. FIXED MODERN CTA AREA (STICKY BOTTOM ICON)
==================================================*/

.cta-modern {
    position: fixed;
    bottom: 16px;
    right: 25px;
    display: flex;
    gap: 14px;
    z-index: 999;
}

.cta-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow:var(--shadow);
    transition: 0.3s;
}

/* ICON */
.cta-item i {
    font-size: 30px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* COLORS */
.call {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.whatsapp i {
    font-size: 35px;
}

/* HOVER */
.cta-item:hover{

    transform:scale(1.12);

    animation:none;

}


/*==================================
    FLOATING CTA ANIMATION
==================================*/

.call{

    animation:callPulse 2.8s infinite;

}

.whatsapp{

    animation:whatsappPulse 2.8s infinite 1.4s;

}


/* Call Button */

@keyframes callPulse{

    0%,80%,100%{

        transform:scale(1);

        box-shadow:0 8px 25px rgba(37,99,235,.30);

    }

    5%{transform:translateX(-2px);}
    10%{transform:translateX(2px);}
    15%{transform:translateX(-2px);}
    20%{transform:translateX(2px);}

    30%{

        transform:scale(1.12);

        box-shadow:0 0 0 14px rgba(37,99,235,0);

    }

}


/* WhatsApp Button */

@keyframes whatsappPulse{

    0%,80%,100%{

        transform:scale(1);

        box-shadow:0 8px 25px rgba(34,197,94,.30);

    }

    5%{transform:translateX(-2px);}
    10%{transform:translateX(2px);}
    15%{transform:translateX(-2px);}
    20%{transform:translateX(2px);}

    30%{

        transform:scale(1.12);

        box-shadow:0 0 0 14px rgba(34,197,94,0);

    }

}


/*==================================================
    17. POPUP & MODAL BOOKING
==================================================*/

.order-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.order-box {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius:var(--radius);
}

.order-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

.submit-btn {
    background: green;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
}

.close-btn {
    background: red;
    color: white;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
}

/* Popup booking smooth animation */
.modal.fade .modal-dialog {
    transform: translateY(-30px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

/* Modal styling */
.modal-content {
    border-radius: 14px;
    overflow: hidden;
}

/* Header */
.modal-header {
    padding: 16px 20px;
}

/* Checkbox spacing */
.form-check {
    margin-bottom: 8px;
}

/* Button hover */
.btn-success {
    transition: 0.3s;
}

.btn-success:hover {
    transform: scale(1.02);
}


/*==================================================
    18. CONTACT SECTION
==================================================*/

.contact-section {
    padding: 25px 10px;
	max-width: 100%;
    background: #808080;
}

.contact-container {
  
    margin: auto;
	max-width: 1200px;
	text-align: center;
}


/*==================================================
    19. FOOTER SECTION
==================================================*/

.footer {
    background: #0f172a;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #22c55e;
}

.footer-box p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-box ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #22c55e;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #94a3b8;
}


/*==================================================
    20. RESPONSIVE / MEDIA QUERIES
==================================================*/

@media(max-width:992px){

    .products{
        grid-template-columns: repeat(3, 1fr);
    }

    .price-grid-2{
        grid-template-columns:repeat(2,1fr);
    }

    .three-column{
        flex-direction:column;
    }

}

@media(max-width:768px){

    /* Navbar Mobile */
    .menu-toggle{

        display:block;

    }

    .nav-menu{

        display:none;

        position:absolute;

        top:78px;
        right:20px;

        width:240px;

        flex-direction:column;

        align-items:flex-start;

        gap:5px;

        padding:18px;

        background:rgba(255,255,255,.98);

        backdrop-filter:blur(12px);

        border:1px solid var(--border);

        border-radius:16px;

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

    }

    .nav-menu.active{

        display:flex;

    }

    .nav-menu li{

        width:100%;

    }

    .nav-menu li a{

        width:100%;

        padding:10px 0;

    }

    .nav-btn{

        display:none;

    }

    /* Hero Default Mobile */
    .hero{

        min-height:auto;

    }

    .hero .container{

        padding:35px 20px;

    }

    .hero-top h1{

        font-size:30px;

    }

    .hero-top p{

        font-size:17px;

    }

    .hero-bottom{

        flex-direction:column;

    }

    .hero-col{

        padding:20px;

    }

    /* Why Us Mobile */
    .whyus-container{

        flex-direction:column;

    }

    .whyus-images{

        height:220px;

    }

    /* Products Mobile */
    .products{
        grid-template-columns: repeat(2, 1fr);
    }

    /* Price Calculator Mobile */
    .three-column{
        flex-direction:column;
    }

    .price-grid{
        grid-template-columns:1fr;
    }

    /* Section Title Mobile */
    .section-title{
        font-size: 28px;
        gap: 15px;
    }

    .section-title::before,
    .section-title::after{
        max-width: 90px;
        height: 3px;
    }

    /* Services Grid Mobile */
    #services .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ Mobile */
    .ops-faq .container {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* OPS Hero Mobile */
    .ops-hero{
        padding:70px 0;
    }

    .ops-hero h1{
        font-size:34px;
    }

    .ops-hero p{
        font-size:16px;
    }

    /* OPS Intro Mobile */
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-box h2{
        font-size:30px;
    }

    /* Clients Slider Mobile */
    .client-logo{
        width:140px;
        height:75px;
    }

    .client-logo img{
        max-height:45px;
    }

}

@media (max-width: 600px) {

    /* Sticky Bottom Icons Mobile */
    .cta-item {
        width: 50px;
        height: 50px;
    }

    .cta-item i {
        font-size: 20px;
    }

}

@media(max-width:576px){

    .price-grid-2{
        grid-template-columns:1fr;
    }

    #result{
        font-size:40px;
    }

}

@media(max-width:500px){

    .process-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width: 480px) {

    .products{
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
    }

    .service_text p {
        text-align: left;
    }

    #services .grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {

    .modal-dialog {
        margin: 10px;
    }

}






/*==================================================
    02. Checkout Section 
==================================================*/

.checkout-section {
    padding: 40px 0;
}

.checkout-title {
    text-align: center;
    margin-bottom: 20px;
}

.checkout-product {
    background: #f1f2f6;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #2ed573;
    color: #fff;
    border: none;
    cursor: pointer;
}

.checkout-wrapper{
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
}

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

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
}

.quantity-box{
    margin:20px 0;
}

.qty-control{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-control button{
    width:40px;
    height:40px;
    border:none;
    background:#2ed573;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    border-radius:6px;
}

.qty-control input{
    width:80px;
    text-align:center;
    padding:10px;
}