.elementor-14 .elementor-element.elementor-element-68b9383{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8fa4c40 */*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#1f2933;
background:#f5f9fa;
}

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


/* NAV */

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
color:#2c7a7b;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}


/* HERO */

.hero{
background:url("http://jibondeepayacenter.in/wp-content/uploads/2026/03/WhatsApp-Image-2026-03-10-at-11.51.48.jpeg");
background-size:cover;
background-position:center;
height:70vh;
position:relative;
display:flex;
align-items:center;
}

.overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
color:white;
max-width:600px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
margin-bottom:30px;
}


.hero-buttons{
display:flex;
gap:20px;
}

.btn-call{
background:#ff6b4a;
padding:14px 28px;
color:white;
text-decoration:none;
border-radius:6px;
}

.btn-whatsapp{
background:#25D366;
padding:14px 28px;
color:white;
text-decoration:none;
border-radius:6px;
}


/* WHAT WE DO */

.what{
padding:90px 0;
background:white;
text-align:center;
}

.section-desc{
max-width:700px;
margin:20px auto 50px;
}

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

.what-card{
text-align:left;
}

.what-card h4{
color:#2c7a7b;
margin-bottom:10px;
}



/* SERVICES */

.services{
padding:90px 0;
}

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

}

.service{
background:white;
padding:25px;
text-align:center;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}


/* ABOUT */

.about{
padding:90px 0;
background:white;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}


/* WHY */

.why{
padding:90px 0;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.why-card{
background:white;
padding:25px;
border-radius:8px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}


/* CTA */

.cta{
background:#2c7a7b;
color:white;
text-align:center;
padding:80px 20px;
}

.cta h2{
margin-bottom:20px;
}


/* FOOTER */

footer{
background:#1f2933;
color:white;
text-align:center;
padding:40px 20px;
}


/* MOBILE */

@media(max-width:900px){

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

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

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

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

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

}




/* STICKY HEADER */

.header{
position:sticky;
top:0;
background:white;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.call-header{
background:#ff6b4a;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:500;
margin-left:20px;
}

.call-header:hover{
background:#e65a3e;
}


.services{
padding:100px 0;
background:#f5f9fa;
}

.services h2{
text-align:center;
margin-bottom:50px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.service-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:all 0.35s ease;
cursor:pointer;
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
}

.service-card h3{
padding:20px 20px 10px;
font-size:18px;
}

.service-card p{
padding:0 20px 25px;
font-size:14px;
color:#555;
}

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



.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
z-index:9999;
}

.whatsapp-float img{
width:32px;
height:32px;
}

.whatsapp-float:hover{
transform:scale(1.1);
transition:0.3s;
}

.whatsapp-float{
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}
70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}


/* ============================= */
/* RESPONSIVE DESIGN FIX */
/* ============================= */


/* TABLET */

@media (max-width:1024px){

.container{
width:92%;
}

.hero{
height:auto;
padding:120px 20px;
}

.hero h1{
font-size:36px;
}

.hero-buttons{
flex-wrap:wrap;
}

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

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

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

.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.about-grid img{
max-width:500px;
margin:auto;
}

}



/* MOBILE */

@media (max-width:600px){

.nav{
flex-direction:column;
gap:10px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:8px 10px;
}

.call-header{
margin-top:8px;
}

.hero{
padding:100px 20px;
text-align:center;
}

.hero-content{
max-width:100%;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:15px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn-call,
.btn-whatsapp{
width:220px;
text-align:center;
}


/* GRID SECTIONS */

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

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

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


/* SECTIONS SPACING */

.what,
.services,
.about,
.why{
padding:60px 20px;
}

.cta{
padding:60px 20px;
}


/* WHATSAPP BUTTON */

.whatsapp-float{
width:55px;
height:55px;
right:15px;
bottom:15px;
}

.whatsapp-float img{
width:28px;
height:28px;
}

}


/* HEADER */

.header{
position:sticky;
top:0;
background:white;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.logo{
color:#2c7a7b;
font-size:22px;
font-weight:600;
}

/* NAV MENU */

nav{
display:flex;
align-items:center;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#2c7a7b;
}

/* CALL BUTTON */

.call-header{
background:#ff6b4a;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:500;
margin-left:20px;
}

.call-header:hover{
background:#e65a3e;
}

/* MOBILE MENU ICON */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.nav{
flex-wrap:wrap;
}

.menu-toggle{
display:block;
}

nav{
width:100%;
display:none;
flex-direction:column;
margin-top:15px;
}

nav.active{
display:flex;
}

nav a{
margin:12px 0;
}

.call-header{
margin-top:10px;
}

}/* End custom CSS */