/* ===========================================
   EXCEL SUPPORT
   Premium Website CSS
=========================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* Container */

.container{

    width:90%;
    max-width:1250px;
    margin:auto;
}

/*=========================
      NAVBAR
==========================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{

    padding:18px 0;
    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);
}

.navbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{

    font-size:30px;
    font-weight:800;
    color:#111827;
}

.logo span{

    color:#2563eb;
}

/* Menu */

.nav-links{

    display:flex;
    gap:35px;
}

.nav-links a{

    color:#334155;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{

    color:#2563eb;
}

/* Call Button */

.call-btn{

    background:#2563eb;
    color:#fff;

    padding:13px 24px;

    border-radius:12px;

    transition:.3s;
}

.call-btn:hover{

    background:#1d4ed8;
}

/* Mobile Menu */

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;
}

/*=========================
      HERO
==========================*/

.hero{

    padding-top:140px;
    padding-bottom:100px;

    background:linear-gradient(135deg,#eff6ff,#ffffff);
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;
}

.badge{

    display:inline-block;

    padding:10px 18px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;
}

.hero h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;
}

.hero h1 span{

    color:#2563eb;
}

.hero p{

    font-size:19px;

    color:#64748b;

    line-height:1.8;

    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:35px;
}

.btn-primary{

    background:#2563eb;

    color:#fff;

    padding:16px 32px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#1d4ed8;
}

.btn-secondary{

    background:#22c55e;

    color:#fff;

    padding:16px 32px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.btn-secondary:hover{

    transform:translateY(-4px);
}

/* Rating */

.hero-rating{

    font-size:17px;

    font-weight:600;
}

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

.dashboard-card{

    background:#fff;

    border-radius:25px;

    padding:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.card-header{

    display:flex;

    gap:8px;

    margin-bottom:30px;
}

.circle{

    width:14px;

    height:14px;

    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#f59e0b;
}

.green{
    background:#22c55e;
}

/* Fake Charts */

.chart-area{

    display:flex;

    align-items:flex-end;

    gap:14px;

    height:220px;
}

.chart{

    flex:1;

    border-radius:10px 10px 0 0;

    background:linear-gradient(to top,#2563eb,#60a5fa);
}

.chart1{
    height:70%;
}

.chart2{
    height:45%;
}

.chart3{
    height:90%;
}

.chart4{
    height:55%;
}

.chart5{
    height:80%;
}

/* Stats */

.stats{

    display:flex;

    justify-content:space-between;

    margin-top:35px;

    text-align:center;
}

.stat h3{

    color:#2563eb;

    font-size:30px;

    margin-bottom:6px;
}

.stat p{

    color:#64748b;
}

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

@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.nav-links{

display:none;

}

.menu-btn{

display:block;

}

.call-btn{

display:none;

}

.hero h1{

font-size:42px;

}

}

@media(max-width:600px){

.hero{

padding-top:120px;
}

.hero h1{

font-size:34px;
}

.hero p{

font-size:16px;
}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;
}

.hero-buttons{

flex-direction:column;
}

.logo{

font-size:24px;
}

}
/*=========================
TRUSTED
=========================*/

.trusted{

padding:60px 0;

background:#fff;
}

.trusted p{

text-align:center;

font-size:18px;

font-weight:700;

margin-bottom:30px;

color:#475569;
}

.trusted-wrapper{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:20px;
}

.trusted-wrapper div{

padding:14px 26px;

background:#f1f5f9;

border-radius:50px;

font-weight:600;

transition:.3s;
}

.trusted-wrapper div:hover{

background:#2563eb;

color:#fff;

transform:translateY(-5px);
}

/*=========================
SERVICES
=========================*/

.services{

padding:100px 0;

background:#f8fafc;
}

.section-title{

text-align:center;

margin-bottom:60px;
}

.section-title h2{

font-size:42px;

margin-bottom:15px;
}

.section-title p{

color:#64748b;

font-size:18px;
}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;
}

.service-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

transition:.4s;

box-shadow:0 10px 40px rgba(0,0,0,.06);

border:1px solid transparent;
}

.service-card:hover{

transform:translateY(-12px);

border-color:#2563eb;
}

.service-card i{

font-size:45px;

color:#2563eb;

margin-bottom:20px;
}

.service-card h3{

margin-bottom:15px;
}

.service-card p{

color:#64748b;

line-height:1.7;

margin-bottom:25px;
}

.service-card a{

font-weight:700;

color:#2563eb;
}
/* WHY US */

.why-us{
padding:100px 0;
background:#ffffff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:50px;
}

.why-box{
background:#f8fafc;
padding:35px;
border-radius:18px;
text-align:center;
transition:.3s;
border:1px solid #e2e8f0;
}

.why-box:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(37,99,235,.12);
}

.why-box i{
font-size:45px;
color:#2563eb;
margin-bottom:20px;
}

.why-box h3{
margin-bottom:15px;
}

.why-box p{
color:#64748b;
line-height:1.7;
}
/*=========================
PORTFOLIO
=========================*/

.portfolio{

padding:100px 0;

background:#f8fafc;

}

.portfolio-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:50px;

}

.project-card{

background:#fff;

border-radius:20px;

overflow:hidden;

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

transition:.4s;

}

.project-card:hover{

transform:translateY(-10px);

}

.project-card img{

width:100%;

height:220px;

object-fit:cover;

}

.project-content{

padding:25px;

}

.project-content h3{

margin-bottom:10px;

}

.project-content p{

color:#64748b;

line-height:1.6;

}
/*=========================
COUNTER
=========================*/

.counter{

padding:90px 0;

background:#2563eb;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.counter-box{

text-align:center;

color:#fff;

padding:30px;

}

.counter-box h2{

font-size:60px;

font-weight:800;

margin-bottom:10px;

}

.counter-box p{

font-size:18px;

opacity:.9;

}
.footer{

background:#0f172a;

color:#fff;

padding:70px 0;

text-align:center;

}

.footer h2{

font-size:38px;

margin-bottom:20px;

}

.footer p{

opacity:.8;

margin-bottom:20px;

}

.footer-links{

display:flex;

justify-content:center;

gap:30px;

margin:30px 0;

flex-wrap:wrap;

}

.footer-links a{

color:#fff;

}

.copyright{

margin-top:25px;

opacity:.6;

}
/*=========================
PROCESS
=========================*/

.process{

padding:100px 0;

background:#ffffff;

}

.process-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:60px;

}

.step{

background:#f8fafc;

padding:35px;

border-radius:20px;

text-align:center;

transition:.3s;

border:1px solid #e2e8f0;

}

.step:hover{

transform:translateY(-10px);

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

}

.number{

width:70px;

height:70px;

background:#2563eb;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:24px;

font-weight:bold;

margin-bottom:25px;

}

.step h3{

margin-bottom:15px;

}

.step p{

color:#64748b;

line-height:1.7;

}
/* CTA */

.cta{

padding:100px 20px;

text-align:center;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#fff;

}

.cta h2{

font-size:48px;

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:auto;

margin-bottom:40px;

font-size:20px;

line-height:1.8;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}
/* WhatsApp */

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

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

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}
/*=========================
TESTIMONIALS
=========================*/

.testimonials{

padding:100px 0;

background:#f8fafc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

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

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

color:#fbbf24;

font-size:22px;

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.8;

color:#64748b;

margin-bottom:25px;

}

.testimonial-card h3{

margin-bottom:5px;

}

.testimonial-card span{

color:#2563eb;

font-weight:600;

}
/* FAQ */

.faq{

padding:100px 0;

background:#ffffff;

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq details{

background:#f8fafc;

padding:20px;

border-radius:15px;

margin-bottom:18px;

border:1px solid #e2e8f0;

cursor:pointer;

}

.faq summary{

font-size:18px;

font-weight:600;

cursor:pointer;

}

.faq p{

margin-top:15px;

color:#64748b;

line-height:1.8;

}
/* CONTACT */

.contact{

padding:100px 0;

background:#f8fafc;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:60px;

}

.contact-info{

background:#2563eb;

padding:40px;

border-radius:20px;

color:#fff;

}

.contact-info p{

margin:20px 0;

line-height:1.8;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

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

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.contact-form button{

border:none;

cursor:pointer;

width:100%;

}
/* Sticky Navbar */

.navbar{

    transition:.35s ease;

}

.navbar.sticky{

    background:#ffffff;

    padding:14px 0;

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

}
/* ABOUT PAGE */

.page-hero{

padding:170px 0 90px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#fff;

text-align:center;

}

.page-hero h1{

font-size:58px;

margin-bottom:20px;

}

.page-hero p{

max-width:750px;

margin:auto;

font-size:20px;

line-height:1.8;

}

.about-company{

padding:100px 0;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-grid img{

border-radius:20px;

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

}

.about-grid h2{

font-size:42px;

margin-bottom:25px;

}

.about-grid p{

line-height:1.9;

color:#64748b;

margin-bottom:20px;

}

.mission{

padding:80px 0;

background:#f8fafc;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.mission-card{

background:#fff;

padding:40px;

border-radius:20px;

text-align:center;

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

}

.mission-card i{

font-size:50px;

color:#2563eb;

margin-bottom:20px;

}
/* ABOUT PAGE PART-2 */

.why-about{
    padding:100px 0;
    background:#ffffff;
}

.why-about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:50px;
}

.why-about-card{
    background:#f8fafc;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    border:1px solid #e5e7eb;
}

.why-about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(37,99,235,.12);
}

.why-about-card i{
    font-size:45px;
    color:#2563eb;
    margin-bottom:20px;
}

.company-stats{
    padding:90px 0;
    background:#2563eb;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:55px;
    margin-bottom:10px;
}

.our-values{
    padding:100px 0;
    background:#f8fafc;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.value-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.value-card h3{
    color:#2563eb;
    margin-bottom:15px;
}
/* ==========================
ABOUT CTA
========================== */

.about-cta{

padding:100px 20px;

text-align:center;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#fff;

}

.about-cta h2{

font-size:46px;

margin-bottom:20px;

}

.about-cta p{

max-width:700px;

margin:auto;

line-height:1.8;

font-size:19px;

margin-bottom:40px;

}

/* ABOUT FAQ */

.about-faq{

padding:100px 0;

background:#fff;

}
/*==============================
SERVICES PAGE
==============================*/

.service-hero{

padding:170px 0 100px;

background:linear-gradient(135deg,#2563eb,#1e40af);

color:#fff;

text-align:center;

}

.service-hero h1{

font-size:58px;

margin-bottom:20px;

}

.service-hero p{

max-width:750px;

margin:auto;

line-height:1.8;

font-size:20px;

margin-bottom:40px;

}

.all-services{

padding:100px 0;

background:#f8fafc;

}

.service-card{

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:5px;

background:#2563eb;

transition:.4s;

}

.service-card:hover::before{

left:0;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 45px rgba(37,99,235,.15);

}
/*==============================
WHY SERVICES
==============================*/

.why-services{

padding:100px 0;

background:#fff;

}

.why-services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:50px;

}

.why-service-box{

background:#f8fafc;

padding:35px;

border-radius:20px;

text-align:center;

transition:.35s;

border:1px solid #e2e8f0;

}

.why-service-box:hover{

transform:translateY(-10px);

box-shadow:0 15px 35px rgba(37,99,235,.15);

}

.why-service-box i{

font-size:45px;

color:#2563eb;

margin-bottom:20px;

}

/* TECHNOLOGY */

.technology{

padding:100px 0;

background:#f8fafc;

}

.tech-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

margin-top:50px;

}

.tech-grid div{

background:#fff;

padding:20px;

border-radius:15px;

text-align:center;

font-weight:700;

box-shadow:0 8px 20px rgba(0,0,0,.06);

transition:.3s;

}

.tech-grid div:hover{

background:#2563eb;

color:#fff;

transform:translateY(-8px);

}
/*==============================
PRICING
==============================*/

.pricing{

padding:100px 0;

background:#ffffff;

}

.pricing-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:60px;

}

.price-card{

background:#fff;

padding:40px;

border-radius:20px;

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

text-align:center;

position:relative;

transition:.3s;

border:2px solid #e5e7eb;

}

.price-card:hover{

transform:translateY(-10px);

border-color:#2563eb;

}

.price-card h2{

font-size:42px;

color:#2563eb;

margin:20px 0;

}

.price-card ul{

list-style:none;

margin:30px 0;

padding:0;

}

.price-card ul li{

padding:10px 0;

}

.popular{

border:2px solid #2563eb;

}

.badge-price{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#2563eb;

color:#fff;

padding:8px 20px;

border-radius:30px;

font-size:14px;

font-weight:700;

}
/* CONTACT PAGE */

.contact-hero{

padding:170px 0 100px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#fff;

text-align:center;

}

.contact-hero h1{

font-size:58px;

margin-bottom:20px;

}

.contact-hero p{

max-width:700px;

margin:auto;

line-height:1.8;

font-size:20px;

}

.contact-page{

padding:100px 0;

background:#f8fafc;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1.2fr;

gap:50px;

}

.contact-left{

background:#fff;

padding:40px;

border-radius:20px;

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

}

.contact-item{

display:flex;

gap:20px;

margin:30px 0;

align-items:center;

}

.contact-item i{

width:60px;

height:60px;

background:#2563eb;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:22px;

}

.contact-right{

background:#fff;

padding:40px;

border-radius:20px;

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

}

.contact-right form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-right input,
.contact-right select,
.contact-right textarea{

padding:16px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

font-family:inherit;

}

.contact-right textarea{

resize:none;

}
/* WORKING HOURS */

.working-hours{

padding:90px 0;

background:#fff;

}

.hours-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.hours-card{
    background:#f8fafc;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    align-items:center;
}

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

.hours-card h3{
    margin-bottom:15px;
}

.hours-card p{
    margin-bottom:15px;
    line-height:1.7;
    color:#555;
}

.hours-card .btn-primary{
    margin-top:20px;
}

.hours-card i{

font-size:45px;

color:#2563eb;

margin-bottom:20px;

}

/* BENEFITS */

.contact-benefits{

padding:100px 0;

background:#f8fafc;

}

.benefit-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:50px;

}

.benefit-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

transition:.3s;

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

}

.benefit-card:hover{

transform:translateY(-8px);

}

.benefit-card i{

font-size:40px;

color:#22c55e;

margin-bottom:20px;

}

/* MAP */

.map-section{

padding:100px 0;

background:#fff;

}

.map-box iframe{

width:100%;

height:450px;

border:none;

border-radius:20px;

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

}
/* CONTACT FAQ */

.contact-faq{

padding:100px 0;

background:#f8fafc;

}

/* CTA */

.contact-cta{

padding:100px 20px;

text-align:center;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#fff;

}

.contact-cta h2{

font-size:46px;

margin-bottom:20px;

}

.contact-cta p{

max-width:700px;

margin:auto;

line-height:1.8;

font-size:19px;

margin-bottom:40px;

}
/*==============================
PORTFOLIO HERO
==============================*/

.portfolio-hero{
    padding:170px 20px 100px;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
    text-align:center;
}

.portfolio-hero .badge{
    display:inline-block;
    background:#22c55e;
    color:#fff;
    padding:10px 25px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:25px;
}

.portfolio-hero h1{
    font-size:60px;
    margin-bottom:20px;
    font-weight:800;
}

.portfolio-hero p{
    max-width:760px;
    margin:auto;
    line-height:1.9;
    font-size:19px;
    opacity:.9;
}

/*==============================
FILTER
==============================*/

.portfolio-filter{
    padding:50px 0;
    background:#fff;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.filter-buttons button{
    border:none;
    background:#eef2ff;
    color:#1e3a8a;
    padding:14px 28px;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.filter-buttons button:hover,
.filter-buttons button.active{
    background:#2563eb;
    color:#fff;
}

/*==============================
PORTFOLIO GRID
==============================*/

.portfolio-page{
    padding:100px 0;
    background:#f8fafc;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

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

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.project-content{
    padding:28px;
}

.project-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.project-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.project-content span{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
}
/*==========================
FAQ PAGE
==========================*/

.faq-hero{

padding:170px 20px 100px;

background:linear-gradient(135deg,#0f172a,#2563eb);

color:#fff;

text-align:center;

}

.faq-hero h1{

font-size:58px;

margin:25px 0;

}

.faq-hero p{

max-width:750px;

margin:auto;

line-height:1.8;

font-size:19px;

}

.faq-page{

padding:100px 0;

background:#f8fafc;

}

.faq-page .faq-container{

max-width:900px;

margin:auto;

}

.faq-page details{

background:#fff;

margin-bottom:20px;

padding:25px;

border-radius:15px;

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

}

.faq-page summary{

cursor:pointer;

font-size:20px;

font-weight:600;

}

.faq-page p{

margin-top:20px;

line-height:1.8;

color:#666;

}
/*==========================
BLOG DETAILS
==========================*/

.blog-details{

padding:100px 0;

background:#fff;

}

.blog-details .container{

max-width:900px;

}

.blog-image{

display:block;

width:100%;

max-width:650px;

height:350px;

object-fit:cover;

margin:0 auto 40px;

border-radius:18px;

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


}

.blog-details h2{

margin:35px 0 15px;

font-size:34px;

color:#111827;

}

.blog-details p{

line-height:1.9;

color:#555;

margin-bottom:20px;

font-size:17px;

}

.blog-details ul{

margin:20px 0 30px 25px;

}

.blog-details li{

margin-bottom:12px;

font-size:17px;

line-height:1.8;

}
.service-hero .service-image img{
    width:100%;
    max-width:350px;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}
/*==========================
SERVICE PAGE
==========================*/

.service-hero{
padding:170px 0 100px;
background:linear-gradient(135deg,#0f172a,#2563eb);
color:#fff;
}

.service-hero .service-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:50px;
align-items:center;
}

.service-hero .service-image{
text-align:center;
}

.service-hero .service-image img{
width:100%;
max-width:350px;
height:220px;
object-fit:cover;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.service-benefits{
padding:100px 0;
background:#fff;
}

.service-contact{
padding:100px 0;
background:#f8fafc;
}

.contact-box{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
align-items:center;
}

.contact-left ul{
margin-top:25px;
padding-left:20px;
}

.contact-left li{
margin-bottom:12px;
font-size:17px;
}

.contact-card{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
}

.contact-card h3{
margin-bottom:20px;
}

.contact-card .btn-primary,
.contact-card .btn-secondary{
display:block;
margin-top:15px;
}

@media(max-width:991px){

.service-grid,
.contact-box{
display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
    align-items:start;
}

.service-hero .service-image{
margin-top:30px;
}

.service-hero .service-image img{
max-width:300px;
height:190px;
}

.contact-left ul{
padding-left:0;
list-style:none;
}

}