:root{
--primary:#2563EB;
--secondary:#0F172A;
--green:#22C55E;
--light:#F8FAFC;
--text:#475569;
--bg:#F8FAFC;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Hind Siliguri',sans-serif;
background:#fff;
color:#222;
overflow-x:hidden;
}

h1,h2,h3,h4,h5{
font-family:'Poppins',sans-serif;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

button,input{
font:inherit;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:100px 0;
}

.section,
.section-padding{
padding:100px 0;
}

/* ==========================
Top Offer
========================== */

.offer-bar{
background:#0F172A;
color:#fff;
padding:8px 0;
font-size:15px;
overflow:hidden;
border-bottom:1px solid rgba(255,255,255,.08);
}

.offer-bar-inline{
padding:10px 16px;
border-radius:999px;
margin:20px auto 24px;
max-width:1100px;
}

.offer-bar-inline .offer-text{
display:block;
white-space:normal;
text-align:center;
padding-left:0;
animation:none;
}

.offer-text{
white-space:nowrap;
display:inline-block;
padding-left:100%;
animation:marquee 22s linear infinite;
}

.offer-text i{
color:#22C55E;
margin-right:10px;
}

@keyframes marquee{
0%{transform:translateX(0);}
100%{transform:translateX(-220%);}
}

/* ==========================
Navbar
========================== */

header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo{
font-size:34px;
font-weight:800;
font-family:Poppins;
color:var(--primary);
}

.logo span{
color:var(--green);
}

.menu{
display:flex;
gap:40px;
}

.menu a{
color:#222;
font-weight:600;
transition:.3s;
position:relative;
}

.menu a:hover,
.menu a.active{
color:var(--primary);
}

.menu a.active::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:3px;
background:var(--primary);
border-radius:20px;
}

.contact-btn,
.quote-btn{
background:var(--primary);
padding:12px 28px;
color:#fff;
border-radius:40px;
transition:.35s;
}

.contact-btn:hover,
.quote-btn:hover{
background:var(--green);
}

/* ==========================
Homepage Hero
========================== */

.home-hero{
height:90vh;
padding:0;
}

.home-hero .swiper{
height:100%;
}

.slide{
height:100%;
display:flex;
align-items:center;
background-size:cover;
background-position:center;
position:relative;
}

.slide-1{background-image:url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80');}
.slide-2{background-image:url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80');}
.slide-3{background-image:url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80');}
.slide-4{background-image:url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80');}

.slide::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(15,23,42,.65);
}

.hero-content{
position:relative;
z-index:2;
width:100%;
max-width:700px;
margin:0 auto;
color:#fff;
}

.hero-content h1{
font-size:58px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:var(--primary);
color:#fff;
border-radius:40px;
margin-right:15px;
transition:.3s;
}

.btn:hover{
background:var(--green);
}

.btn-primary{
background:var(--primary);
color:#fff;
}

.btn-outline{
background:transparent;
border:2px solid #fff;
color:#fff;
}

.btn-outline:hover{
background:#fff;
color:#000;
}

.hero-buttons{
margin-top:45px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* ==========================
Shared Page Hero
========================== */

.hero{
padding:120px 0;
text-align:center;
color:#fff;
position:relative;
overflow:hidden;
background:linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
background-size:cover;
background-position:center;
}

.hero.home-hero{
height:90vh;
padding:0;
}

.hero.home-hero .hero-content{
max-width:700px;
margin:0;
text-align:left;
}

.hero::before{
content:"";
position:absolute;
width:420px;
height:420px;
background:rgba(37,99,235,.25);
border-radius:50%;
top:-140px;
left:-120px;
filter:blur(40px);
}

.hero::after{
content:"";
position:absolute;
width:320px;
height:320px;
background:rgba(34,197,94,.18);
border-radius:50%;
bottom:-90px;
right:-80px;
filter:blur(35px);
}

.hero h1{
font-size:58px;
margin-bottom:20px;
position:relative;
z-index:2;
}

.hero p{
font-size:20px;
line-height:1.8;
max-width:760px;
margin:auto;
position:relative;
z-index:2;
}

.breadcrumb{
margin-top:18px;
position:relative;
z-index:2;
}

.breadcrumb a,
.breadcrumb span{
color:#fff;
}

.breadcrumb span{
color:#8ec5ff;
}

/* ==========================
About Page
========================== */

.tag{
display:inline-block;
padding:8px 18px;
background:#e8f0ff;
color:var(--primary);
border-radius:30px;
font-weight:700;
margin-bottom:20px;
}

.intro-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:70px;
align-items:center;
}

.intro h2{
font-size:42px;
margin-bottom:25px;
line-height:1.3;
}

.intro p{
font-size:18px;
line-height:1.9;
color:var(--text);
margin-bottom:20px;
}

.highlight,
.highlight-label{
color:var(--primary);
font-weight:700;
}

.intro-image{position:relative;}

.intro-image img{
border-radius:25px;
box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.floating-card{
position:absolute;
right:-30px;
bottom:40px;
background:#fff;
padding:20px 25px;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.floating-card h3{font-size:30px;color:var(--primary);}
.floating-card p{margin-top:5px;color:var(--text);}

.section-title{
text-align:center;
max-width:760px;
margin:auto auto 70px;
}

.section-title h2{
font-size:42px;
margin:20px 0;
color:#0F172A;
}

.section-title p{line-height:1.9;color:var(--text);}

.choose-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.choose-card{
background:#fff;
padding:40px 30px;
border-radius:22px;
transition:.35s;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.choose-card:hover{transform:translateY(-12px);}
.choose-card i{font-size:46px;color:var(--primary);margin-bottom:20px;}
.choose-card h3{margin-bottom:15px;}
.choose-card p{line-height:1.8;color:var(--text);} 

.benefits{background:#fff;}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.benefit-card{background:#fff;padding:35px;border-radius:20px;box-shadow:0 15px 35px rgba(0,0,0,.06);transition:.35s;}
.benefit-card:hover{transform:translateY(-12px);}
.benefit-card i{font-size:42px;color:#2563EB;margin-bottom:20px;}
.benefit-card h3{margin-bottom:15px;}
.benefit-card p{line-height:1.8;color:#64748B;}

.impact{padding:100px 0;background:#F8FAFC;}
.impact-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;}
.impact-right img{border-radius:22px;}
.impact ul{margin-top:30px;list-style:none;}
.impact li{margin-bottom:18px;font-weight:500;}
.impact li i{color:#22C55E;margin-right:10px;}

.cta{padding:100px 0;}
.cta-box{background:linear-gradient(135deg,#2563EB,#0F172A);color:#fff;padding:70px;text-align:center;border-radius:30px;}
.cta-box h2{font-size:42px;margin-bottom:20px;}
.cta-box p{max-width:760px;margin:auto;line-height:1.9;}
.cta-buttons{margin-top:35px;}
.primary-btn,.secondary-btn{display:inline-block;padding:15px 35px;border-radius:40px;margin:10px;font-weight:600;}
.primary-btn{background:#22C55E;color:#fff;}
.secondary-btn{border:2px solid #fff;color:#fff;}

.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:50px;}
.footer-logo{color:#fff;}
.footer-logo span{color:#22C55E;}
footer h3{margin-bottom:18px;}
footer ul{list-style:none;}
footer li{margin-bottom:12px;}
footer a{color:#CBD5E1;}
footer hr{margin:40px 0;border-color:#334155;}
.copyright{text-align:center;color:#94A3B8;}

.site-footer{
background:#0F172A;
color:#fff;
padding:70px 0 30px;
}

.site-footer .footer-logo{color:#fff;}
.site-footer .footer-logo span{color:#22C55E;}
.site-footer a{color:#CBD5E1;transition:.3s;}
.site-footer a:hover{color:#22C55E;}
.site-footer .social{margin-top:20px;}

.hosting-footer,
.coming-soon-footer{background:transparent;padding:30px 0 0;margin-top:40px;}
.hosting-footer .footer-grid,
.coming-soon-footer .footer-grid{grid-template-columns:repeat(3,1fr);}
.hosting-footer hr,
.coming-soon-footer hr{margin:24px 0 12px;}

/* ==========================
Homepage Sections
========================== */

.about{background:#fff;}
.about-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:70px;align-items:center;}
.about-image img{width:100%;border-radius:24px;box-shadow:0 25px 60px rgba(0,0,0,.12);}
.about-content p{font-size:18px;line-height:1.9;color:var(--text);margin-bottom:20px;}
.feature-box{display:flex;gap:16px;align-items:flex-start;background:#f8fafc;border-radius:20px;padding:24px 22px;margin-bottom:18px;box-shadow:0 12px 30px rgba(15,23,42,.04);}
.feature-box i{font-size:24px;color:var(--primary);margin-top:4px;}
.feature-box h3{margin-bottom:8px;font-size:20px;}
.feature-box p{font-size:15px;line-height:1.8;color:var(--text);} 

.services{background:#f8fafc;}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.service-card{background:#fff;padding:35px 30px;border-radius:22px;box-shadow:0 15px 35px rgba(0,0,0,.06);transition:.35s;}
.service-card:hover{transform:translateY(-10px);box-shadow:0 20px 45px rgba(0,0,0,.1);} 
.service-card i{font-size:40px;color:var(--primary);margin-bottom:20px;}
.service-card h3{margin-bottom:14px;font-size:22px;}
.service-card p{line-height:1.8;color:var(--text);} 

.projects{background:#fff;}
.center-btn{display:flex;justify-content:center;margin-top:40px;}
.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.project-card{background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 20px 45px rgba(0,0,0,.08);transition:.35s;}
.project-card:hover{transform:translateY(-10px);box-shadow:0 28px 55px rgba(0,0,0,.12);} 
.project-card img{width:100%;height:220px;object-fit:cover;display:block;}
.project-content{padding:25px;}
.project-content h3{font-size:22px;margin-bottom:12px;}
.project-content p{color:#64748b;line-height:1.8;margin-bottom:20px;}
.project-btns{display:flex;gap:12px;flex-wrap:wrap;}
.btn-small{display:inline-block;padding:10px 16px;border-radius:999px;background:var(--primary);color:#fff;font-size:14px;font-weight:600;transition:.3s;}
.btn-small:hover{background:var(--green);}
.btn-small.live{background:#0F172A;}
.btn-small.live:hover{background:#1E3A8A;}

.counter{background:linear-gradient(135deg,#0F172A,#1D4ED8);color:#fff;padding:100px 0;}
.counter-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;}
.counter-box{text-align:center;}
.counter-box i{font-size:34px;color:#22C55E;margin-bottom:15px;display:block;}
.counter-box h2{font-size:44px;margin-bottom:10px;color:#fff;}
.counter-box p{color:#cbd5e1;}

.blog{background:#fff;}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.blog-card{background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,.08);transition:.35s;}
.blog-card:hover{transform:translateY(-8px);box-shadow:0 24px 50px rgba(0,0,0,.12);} 
.blog-card img{width:100%;height:220px;object-fit:cover;display:block;}
.blog-content{padding:25px;}
.blog-content span{display:inline-block;color:var(--primary);font-weight:700;margin-bottom:10px;}
.blog-content h3{font-size:22px;margin-bottom:12px;}
.blog-content p{color:#64748b;line-height:1.8;}

.newsletter{background:linear-gradient(135deg,#eff6ff,#f8fafc);padding:100px 0;}
.newsletter-box{background:#fff;border-radius:24px;padding:40px 50px;display:flex;justify-content:space-between;align-items:center;gap:30px;box-shadow:0 20px 45px rgba(0,0,0,.08);} 
.newsletter-box h2{font-size:32px;margin-bottom:12px;}
.newsletter-box p{color:var(--text);line-height:1.8;}
.newsletter form{display:flex;gap:10px;flex-wrap:wrap;}
.newsletter input{padding:14px 16px;border:1px solid #cbd5e1;border-radius:999px;min-width:260px;}
.newsletter button{padding:14px 24px;border:none;border-radius:999px;background:var(--primary);color:#fff;cursor:pointer;}
.newsletter button:hover{background:var(--green);} 
.social{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap;}
.social a{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:#1E293B;color:#fff;transition:.3s;}
.social a:hover{background:var(--primary);transform:translateY(-3px);} 

.contact-section{padding:100px 0;}
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:start;}
.contact-panel,.contact-map-panel{background:#fff;border-radius:24px;box-shadow:0 20px 45px rgba(0,0,0,.08);padding:40px;}
.contact-panel .section-title{max-width:560px;margin-bottom:32px;}
.contact-panel .section-title span{color:var(--primary);font-weight:700;letter-spacing:.12em;text-transform:uppercase;font-size:13px;display:block;margin-bottom:14px;}
.contact-panel .section-title h2{font-size:38px;margin-bottom:18px;}
.contact-panel .section-title p{color:#64748b;line-height:1.8;}
.contact-form{display:grid;gap:20px;}
.contact-field{display:flex;flex-direction:column;gap:10px;}
.contact-field label{font-weight:600;color:#0f172a;}
.contact-field input,
.contact-field textarea,
.contact-field select{width:100%;padding:16px 18px;border:1px solid #cbd5e1;border-radius:16px;background:#f8fafc;outline:none;transition:.25s;border-radius:14px;}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(59,130,246,.08);background:#fff;}
.contact-field textarea{min-height:160px;resize:vertical;}
.contact-form .btn{max-width:220px;}
.contact-map{border-radius:20px;overflow:hidden;border:1px solid rgba(15,23,42,.08);}
.contact-map iframe{width:100%;height:380px;border:0;display:block;}
.contact-details{margin-top:30px;}
.contact-details h3{font-size:24px;margin-bottom:18px;}
.contact-details p{color:#475569;line-height:1.9;margin-bottom:10px;}

@media (max-width:992px){
.contact-grid{grid-template-columns:1fr;}
}

@media (max-width:768px){
.contact-section{padding:70px 0;}
.contact-panel,.contact-map-panel{padding:30px;}
.contact-panel .section-title h2{font-size:32px;}
}

#topBtn{position:fixed;right:24px;bottom:24px;z-index:999;border:none;background:var(--primary);color:#fff;width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 15px 30px rgba(37,99,235,.3);} 
#topBtn:hover{background:var(--green);} 

/* ==========================
Blog Page
========================== */

body.blog-page{background:#f8fafc;}
.page-header{background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06);position:sticky;top:0;z-index:1000;}
.page-header .navbar{height:80px;}
.blog-hero{padding:90px 0 70px;background:linear-gradient(135deg,#eff6ff 0%,#f8fafc 100%);}
.blog-hero .container{display:grid;grid-template-columns:1.2fr .8fr;gap:40px;align-items:center;}
.blog-hero h1{font-size:clamp(32px,4vw,48px);line-height:1.25;margin-bottom:18px;color:#0f172a;}
.blog-hero p{font-size:18px;line-height:1.8;color:#475569;max-width:700px;}
.hero-pill{display:inline-block;background:#2563eb;color:#fff;padding:8px 14px;border-radius:999px;font-size:13px;font-weight:700;margin-bottom:16px;letter-spacing:.04em;text-transform:uppercase;}
.hero-card{background:#fff;border-radius:24px;padding:28px;box-shadow:0 20px 50px rgba(15,23,42,.08);}
.hero-card h3{font-size:22px;margin-bottom:14px;color:#0f172a;}
.hero-card ul{list-style:none;padding:0;margin:0;}
.hero-card li{display:flex;align-items:center;gap:10px;margin-bottom:12px;color:#334155;font-size:15px;}
.hero-card i{color:#22c55e;}
.featured-section{padding:30px 0 70px;}
.featured-section.no-top-padding{padding-top:0;}
.section-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:24px;}
.section-heading h2{font-size:28px;color:#0f172a;}
.section-heading p{color:#64748b;font-size:15px;}
.featured-blog{display:grid;grid-template-columns:1.1fr .9fr;background:#fff;border-radius:28px;overflow:hidden;box-shadow:0 20px 55px rgba(15,23,42,.08);transition:transform .35s ease,box-shadow .35s ease;}
.featured-blog:hover{transform:translateY(-8px);box-shadow:0 30px 65px rgba(15,23,42,.12);}
.featured-blog img{width:100%;height:100%;object-fit:cover;}
.featured-blog-content{padding:32px;display:flex;flex-direction:column;justify-content:center;}
.featured-tag{display:inline-block;width:fit-content;background:#dbeafe;color:#1d4ed8;padding:8px 12px;border-radius:999px;font-weight:700;font-size:13px;margin-bottom:14px;}
.featured-blog h3{font-size:28px;color:#0f172a;margin-bottom:12px;line-height:1.35;}
.featured-blog p{color:#475569;line-height:1.9;margin-bottom:18px;}
.blog-meta{display:flex;flex-wrap:wrap;gap:16px;color:#64748b;font-size:14px;margin-bottom:18px;}
.blog-meta span{display:inline-flex;align-items:center;gap:6px;}
.card-date{display:inline-flex;align-items:center;gap:6px;color:#64748b;font-size:13px;margin-bottom:12px;}
.read-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:fit-content;padding:12px 18px;border-radius:999px;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;font-weight:700;transition:transform .25s ease,box-shadow .25s ease;box-shadow:0 12px 25px rgba(37,99,235,.25);}
.read-btn:hover{transform:translateY(-3px);box-shadow:0 15px 30px rgba(37,99,235,.3);}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:24px;}
.blog-card{background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 16px 40px rgba(15,23,42,.08);transition:transform .3s ease,box-shadow .3s ease;}
.blog-card:hover{transform:translateY(-8px);box-shadow:0 24px 50px rgba(15,23,42,.12);}
.blog-card img{width:100%;height:220px;object-fit:cover;}
.blog-card-content{padding:22px 22px 24px;}
.blog-card-content .tag{display:inline-block;color:#2563eb;font-weight:700;font-size:13px;background:#eff6ff;padding:7px 12px;border-radius:999px;margin-bottom:12px;}
.blog-card h4{font-size:20px;color:#0f172a;margin-bottom:10px;line-height:1.4;}
.blog-card p{color:#64748b;line-height:1.8;font-size:15px;margin-bottom:16px;}

/* ==========================
Single Blog Page
========================== */

.single-blog-page{background:#f8fafc;color:#0f172a;}
.single-blog-page .page-header{background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06);position:sticky;top:0;z-index:1000;}
.single-blog-page .page-header .navbar{height:80px;}
.single-blog-page .article-hero{padding:70px 0 40px;background:linear-gradient(135deg,#eff6ff 0%,#f8fafc 100%);}
.single-blog-page .article-badge{display:inline-flex;align-items:center;gap:8px;background:#2563eb;color:#fff;padding:8px 14px;border-radius:999px;font-size:13px;font-weight:700;margin-bottom:16px;text-transform:uppercase;letter-spacing:.04em;}
.single-blog-page .article-hero h1{font-size:clamp(30px,4vw,44px);line-height:1.25;margin-bottom:16px;color:#0f172a;}
.single-blog-page .article-meta{display:flex;flex-wrap:wrap;gap:16px;color:#64748b;font-size:15px;margin-bottom:24px;}
.single-blog-page .article-meta span{display:inline-flex;align-items:center;gap:6px;}
.single-blog-page .article-main{padding:20px 0 80px;}
.single-blog-page .article-card{background:#fff;border-radius:28px;overflow:hidden;box-shadow:0 20px 55px rgba(15,23,42,.08);}
.single-blog-page .article-card img{width:100%;height:420px;object-fit:cover;display:block;}
.single-blog-page .article-content{padding:36px 36px 44px;}
.single-blog-page .article-content p{font-size:18px;line-height:1.9;color:#334155;margin-bottom:18px;}
.single-blog-page .article-content h2,.single-blog-page .article-content h3{margin:28px 0 12px;color:#0f172a;}
.single-blog-page .article-content ul{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:10px;}
.single-blog-page .article-content li{color:#334155;line-height:1.8;font-size:16px;}
.single-blog-page .quote-box{background:linear-gradient(135deg,#eff6ff,#f8fafc);border-left:4px solid #2563eb;padding:18px 22px;border-radius:16px;margin:24px 0;font-weight:600;color:#1e3a8a;}
.single-blog-page .article-sidebar{margin-top:24px;background:#fff;border-radius:24px;padding:24px;box-shadow:0 16px 40px rgba(15,23,42,.08);}
.single-blog-page .article-sidebar h3{font-size:22px;margin-bottom:16px;color:#0f172a;}
.single-blog-page .article-sidebar ul{list-style:none;padding:0;margin:0;}
.single-blog-page .article-sidebar li{margin-bottom:12px;}
.single-blog-page .article-sidebar a{color:#2563eb;font-weight:600;}
.single-blog-page .article-grid{display:grid;grid-template-columns:1.6fr .6fr;gap:24px;align-items:start;}

@media (max-width:900px){
.single-blog-page .article-grid{grid-template-columns:1fr;}
}

@media (max-width:640px){
.single-blog-page .article-content{padding:24px;}
.single-blog-page .article-card img{height:280px;}
}

/* ==========================
Services Page
========================== */

.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.why-card{background:#fff;padding:35px;border-radius:20px;box-shadow:0 15px 35px rgba(0,0,0,.05);transition:.35s;}
.why-card:hover{transform:translateY(-12px);}
.why-card i{font-size:48px;color:#2563EB;margin-bottom:20px;}
.why-card h3{margin-bottom:15px;}
.why-card p{line-height:1.8;color:var(--text);}
.intro-content h2{font-size:44px;margin-bottom:25px;}
.intro-content p{font-size:18px;line-height:1.9;margin-bottom:20px;color:var(--text);} 

.services{background:#fff;}
.service-item{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;margin-bottom:120px;}
.service-image img{width:100%;border-radius:24px;box-shadow:0 25px 60px rgba(0,0,0,.08);transition:.4s;}
.service-image:hover img{transform:scale(1.03);}
.service-tag{display:inline-block;padding:8px 18px;background:#EAF2FF;color:#2563EB;border-radius:30px;font-weight:700;margin-bottom:20px;}
.service-content h2{font-size:40px;margin-bottom:20px;}
.service-content p{font-size:17px;line-height:1.9;color:#64748B;}
.feature-list{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;margin:35px 0;}
.feature-list span{font-weight:600;}
.feature-list i{color:#22C55E;margin-right:8px;}
.service-buttons{margin-top:15px;}
.btn-outline-dark{border:2px solid #2563EB;color:#2563EB;background:#fff;}
.btn-outline-dark:hover{background:#2563EB;color:#fff;}

.industries{background:#fff;}
.industry-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.industry-card,.tech-box,.process-card{background:#fff;padding:35px;border-radius:20px;box-shadow:0 15px 35px rgba(0,0,0,.06);transition:.35s;}
.industry-card:hover,.tech-box:hover,.process-card:hover{transform:translateY(-10px);}
.industry-card i{font-size:40px;color:#2563EB;margin-bottom:20px;}
.technology{background:#F8FAFC;}
.tech-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px;}
.tech-box{text-align:center;}
.tech-box i{font-size:40px;color:#2563EB;}

.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.number{font-size:35px;font-weight:800;color:#2563EB;}
.table-wrapper{overflow-x:auto;}
table{width:100%;border-collapse:collapse;background:#fff;}
th,td{padding:20px;border-bottom:1px solid #eee;text-align:left;}
th{background:#2563EB;color:#fff;}
.faq-item{background:#fff;margin-bottom:15px;border-radius:15px;overflow:hidden;}
.faq-item button{width:100%;padding:22px;border:none;background:#fff;font-size:18px;font-weight:600;display:flex;justify-content:space-between;cursor:pointer;}
.answer{padding:0 22px 20px;color:#64748B;}
.final-cta{background:linear-gradient(135deg,#2563EB,#0F172A);color:#fff;text-align:center;}
.cta-content h2{font-size:45px;margin-bottom:20px;}
.cta-content p{margin-bottom:35px;}
.footer-bottom{display:flex;justify-content:space-between;}
.footer-bottom span{color:#22C55E;}

/* ==========================
Projects Page
========================== */

.projects-page .project-intro{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;}
.projects-page .project-intro img{width:100%;border-radius:25px;}
.projects-page .project-content h2{font-size:42px;margin-bottom:20px;}
.projects-page .project-content p{font-size:18px;line-height:1.9;color:var(--text);}
.projects-page .filter-area{text-align:center;margin-top:50px;}
.projects-page .filter-btn{border:none;background:white;padding:12px 28px;margin:8px;border-radius:30px;font-weight:600;cursor:pointer;transition:.3s;}
.projects-page .filter-btn:hover,.projects-page .filter-btn.active{background:var(--primary);color:white;}
.projects-page .portfolio{background:#fff;}
.projects-page .project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:35px;}
.projects-page .project-card{background:#fff;border-radius:25px;overflow:hidden;box-shadow:0 20px 45px rgba(0,0,0,.08);transition:.4s;}
.projects-page .project-card:hover{transform:translateY(-12px);box-shadow:0 30px 60px rgba(0,0,0,.15);}
.projects-page .project-image{height:250px;position:relative;overflow:hidden;}
.projects-page .project-image img{width:100%;height:100%;object-fit:cover;transition:.5s;}
.projects-page .project-card:hover img{transform:scale(1.08);} 
.projects-page .project-category{position:absolute;top:20px;left:20px;background:#2563EB;color:#fff;padding:8px 18px;border-radius:30px;font-size:14px;font-weight:600;}
.projects-page .project-body{padding:30px;}
.projects-page .project-body h3{font-size:25px;margin-bottom:15px;}
.projects-page .project-body p{color:#64748B;line-height:1.8;min-height:90px;}
.projects-page .tech-stack{display:flex;gap:10px;flex-wrap:wrap;margin:25px 0;}
.projects-page .tech-stack span{background:#EFF6FF;color:#2563EB;padding:7px 14px;border-radius:20px;font-size:13px;font-weight:600;}
.projects-page .project-buttons{display:flex;gap:12px;}
.projects-page .details-btn,.projects-page .live-btn{padding:12px 18px;border-radius:30px;font-size:14px;font-weight:600;transition:.3s;}
.projects-page .details-btn{border:2px solid #2563EB;color:#2563EB;}
.projects-page .live-btn{background:#2563EB;color:white;}
.projects-page .details-btn:hover{background:#2563EB;color:#fff;}
.projects-page .live-btn:hover{background:#0F172A;}
.projects-page .project-process{background:#fff;}
.projects-page .process-wrapper{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;}
.projects-page .process-box{background:#fff;padding:35px;border-radius:20px;box-shadow:0 15px 40px rgba(0,0,0,.07);text-align:center;transition:.3s;}
.projects-page .process-box:hover{transform:translateY(-10px);}
.projects-page .process-icon{width:70px;height:70px;margin:auto auto 20px;display:flex;align-items:center;justify-content:center;background:#EFF6FF;border-radius:50%;color:#2563EB;font-size:30px;}
.projects-page .stats{background:linear-gradient(135deg,#0F172A,#1D4ED8);color:white;padding:100px 0;}
.projects-page .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;align-items:stretch;}
.projects-page .stat-card{background:transparent;border:none;border-radius:0;padding:0;text-align:center;box-shadow:none;}
.projects-page .stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;align-items:center;}
.projects-page .stat-card{padding:20px 0;}
.projects-page .stat-card i{display:none;}
.projects-page .stat-card h2{font-size:52px;margin:0;color:#fff;}
.projects-page .stat-card p{color:#cbd5e1;font-size:16px;line-height:1.7;margin-top:8px;}
.projects-page .stat-card i{font-size:34px;color:#22C55E;margin-bottom:16px;display:block;}
.projects-page .stat-card h2{font-size:44px;margin:8px 0 10px;font-weight:700;}
.projects-page .stat-card p{color:#e2e8f0;font-size:16px;line-height:1.7;}
.projects-page .testimonial{background:#F8FAFC;}
.projects-page .testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.projects-page .testimonial-card{background:#fff;padding:35px;border-radius:20px;}
.projects-page .client{display:flex;align-items:center;gap:15px;margin-bottom:20px;}
.projects-page .client img{width:60px;height:60px;border-radius:50%;}
.projects-page .client span{color:#64748B;}
.projects-page .testimonial-card p{line-height:1.8;color:#475569;}
.projects-page .stars{color:#F59E0B;margin-top:15px;}
.projects-page .project-cta{background:#fff;}
.projects-page .project-cta .cta-box{padding:70px;text-align:center;color:white;border-radius:30px;}
.projects-page .project-cta .cta-box h2{font-size:42px;margin-bottom:20px;}
.projects-page .footer-content{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px;}


/* STATS */


.statss{

background:#0F172A;
color:white;

}


.statss-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}


.statss-card{

text-align:center;

}


.statss-card i{

font-size:35px;
color:#22C55E;

}


.stats-card h2{

font-size:45px;
margin:15px 0;

}

/* ==========================
Hosting Page
========================== */

.hosting-page{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
font-family:'Poppins',sans-serif;
background:linear-gradient(135deg,#0F172A,#2563EB);
color:white;
}

.hosting-page .container{
width:90%;
max-width:700px;
text-align:center;
}

.hosting-page .logo{font-size:42px;font-weight:800;margin-bottom:40px;color:#fff;}
.hosting-page .logo span{color:#22C55E;}
.hosting-page .icon{width:100px;height:100px;margin:0 auto 30px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#ffffff20;font-size:45px;}
.hosting-page h1{font-size:52px;margin-bottom:20px;}
.hosting-page h1 span{color:#22C55E;}
.hosting-page p{font-size:18px;line-height:1.8;color:#E2E8F0;margin-bottom:35px;}
.hosting-page .features{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;margin-bottom:40px;}
.hosting-page .feature{background:#ffffff15;padding:15px 25px;border-radius:30px;font-size:14px;}
.hosting-page .btn{display:inline-block;padding:15px 35px;background:#22C55E;color:white;border-radius:50px;text-decoration:none;font-weight:600;transition:.3s;}
.hosting-page .btn:hover{transform:translateY(-5px);background:white;color:#2563EB;}
.hosting-page footer{margin-top:50px;color:#CBD5E1;font-size:14px;background:transparent;padding:0;}

/* ==========================
Service Details Page
========================== */

.service-detail-page .detail-hero{
background:linear-gradient(135deg, rgba(15,23,42,.95), rgba(37,99,235,.8)),url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1800&q=80");
background-size:cover;
background-position:center;
color:#fff;
padding:120px 0 90px;
}

.service-detail-page .breadcrumb{margin-bottom:20px;color:#e2e8f0;}
.service-detail-page .breadcrumb a{color:#fff;}
.service-detail-page .breadcrumb span{color:#bfdbfe;font-weight:600;}
.service-detail-page .detail-hero h1{font-size:52px;line-height:1.2;margin-bottom:20px;}
.service-detail-page .detail-hero p{font-size:20px;line-height:1.8;max-width:760px;color:#e2e8f0;}
.service-detail-page .detail-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:start;padding:90px 0 40px;}
.service-detail-page .detail-copy h2{font-size:38px;margin:18px 0 20px;color:#0f172a;}
.service-detail-page .detail-copy p{font-size:18px;line-height:1.9;color:#475569;margin-bottom:20px;}
.service-detail-page .detail-list{list-style:none;display:grid;gap:14px;margin-top:24px;}
.service-detail-page .detail-list li{display:flex;gap:10px;align-items:flex-start;color:#334155;font-weight:500;}
.service-detail-page .detail-list i{color:#22C55E;margin-top:4px;}
.service-detail-page .detail-card{background:#fff;padding:36px;border-radius:24px;box-shadow:0 20px 45px rgba(0,0,0,.08);}
.service-detail-page .detail-card h3{font-size:24px;margin-bottom:16px;color:#0f172a;}
.service-detail-page .detail-card p{color:#64748b;line-height:1.8;}
.service-detail-page .detail-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:24px;}
.service-detail-page .detail-stat{background:#f8fafc;padding:18px 20px;border-radius:16px;}
.service-detail-page .detail-stat strong{display:block;font-size:26px;color:#2563eb;margin-bottom:4px;}
.service-detail-page .detail-stat span{color:#475569;font-size:14px;font-weight:600;}
.service-detail-page .detail-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.service-detail-page .detail-feature-card{background:#fff;padding:30px;border-radius:20px;box-shadow:0 15px 35px rgba(15,23,42,.06);}
.service-detail-page .detail-feature-card i{font-size:32px;color:#2563eb;margin-bottom:16px;}
.service-detail-page .detail-feature-card h3{font-size:22px;margin-bottom:12px;color:#0f172a;}
.service-detail-page .detail-feature-card p{color:#64748b;line-height:1.8;}
.service-detail-page .detail-process{padding-top:40px;}
.service-detail-page .detail-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.service-detail-page .detail-process-step{background:#fff;padding:28px;border-radius:20px;box-shadow:0 15px 35px rgba(15,23,42,.06);}
.service-detail-page .detail-process-step .number{font-size:28px;margin-bottom:12px;}
.service-detail-page .detail-process-step h3{margin-bottom:10px;color:#0f172a;}
.service-detail-page .detail-process-step p{color:#64748b;line-height:1.8;}
.service-detail-page .detail-cta{padding-top:40px;}
.service-detail-page .detail-cta-box{background:linear-gradient(135deg,#2563eb,#0f172a);color:#fff;padding:60px 40px;text-align:center;border-radius:30px;}
.service-detail-page .detail-cta-box h2{font-size:38px;margin-bottom:16px;}
.service-detail-page .detail-cta-box p{max-width:720px;margin:auto auto 24px;color:#e2e8f0;line-height:1.8;}

/* ==========================
Single Project Page
========================== */

.single-project-page{background:#f8fafc;color:#0f172a;}
.single-project-page .page-header{background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06);position:sticky;top:0;z-index:1000;}
.single-project-page .page-header .navbar{height:80px;}
.single-project-page .project-detail-hero{padding:90px 0 70px;background:linear-gradient(135deg,#eff6ff 0%,#f8fafc 100%);}
.single-project-page .project-badge{display:inline-flex;align-items:center;gap:8px;background:#2563eb;color:#fff;padding:8px 14px;border-radius:999px;font-size:13px;font-weight:700;margin-bottom:16px;text-transform:uppercase;letter-spacing:.04em;}
.single-project-page .project-detail-hero h1{font-size:clamp(32px,4vw,48px);line-height:1.25;margin-bottom:16px;color:#0f172a;}
.single-project-page .project-detail-hero p{font-size:18px;line-height:1.9;color:#475569;max-width:760px;}
.single-project-page .project-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;}
.single-project-page .btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 24px;border-radius:999px;background:#2563eb;color:#fff;font-weight:700;transition:.3s;}
.single-project-page .btn:hover{background:#22c55e;transform:translateY(-2px);} 
.single-project-page .btn-outline{background:transparent;border:2px solid #2563eb;color:#2563eb;}
.single-project-page .btn-outline:hover{background:#2563eb;color:#fff;}
.single-project-page .btn.small{padding:10px 16px;font-size:14px;}
.single-project-page .project-detail-section{padding:20px 0 70px;}
.single-project-page .project-detail-grid{display:grid;grid-template-columns:1.4fr .6fr;gap:24px;align-items:start;}
.single-project-page .project-main-card,.single-project-page .sidebar-card,.single-project-page .media-card,.single-project-page .related-card{background:#fff;border-radius:24px;box-shadow:0 18px 45px rgba(15,23,42,.08);}
.single-project-page .project-main-card{padding:34px;}
.single-project-page .section-title{max-width:760px;margin:0 0 28px;text-align:left;}
.single-project-page .section-title.center{text-align:center;margin:0 auto 32px;}
.single-project-page .section-title span{display:block;color:#2563eb;font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:13px;margin-bottom:10px;}
.single-project-page .section-title h2{font-size:32px;margin:0 0 10px;color:#0f172a;}
.single-project-page .project-main-card p{font-size:17px;line-height:1.9;color:#475569;margin-bottom:18px;}
.single-project-page .benefit-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:28px 0;}
.single-project-page .benefit-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:22px;transition:.3s;}
.single-project-page .benefit-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,23,42,.06);} 
.single-project-page .benefit-card i{font-size:28px;color:#2563eb;margin-bottom:12px;display:block;}
.single-project-page .benefit-card h3{font-size:20px;margin-bottom:8px;color:#0f172a;}
.single-project-page .benefit-card p{font-size:15px;line-height:1.8;margin:0;color:#64748b;}
.single-project-page .calculation-box{background:linear-gradient(135deg,#eff6ff,#f8fafc);border:1px solid #bfdbfe;border-radius:20px;padding:24px;margin-top:10px;}
.single-project-page .calculation-box h3{font-size:22px;margin-bottom:10px;color:#0f172a;}
.single-project-page .project-sidebar{display:grid;gap:18px;}
.single-project-page .sidebar-card{padding:24px;}
.single-project-page .sidebar-card h3{font-size:22px;margin-bottom:14px;color:#0f172a;}
.single-project-page .sidebar-card ul{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.single-project-page .sidebar-card li{color:#334155;display:flex;align-items:center;gap:8px;}
.single-project-page .sidebar-card li i{color:#22c55e;}
.single-project-page .sidebar-card p{margin-bottom:12px;color:#475569;line-height:1.8;}
.single-project-page .project-media-section{padding:20px 0 70px;}
.single-project-page .media-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;}
.single-project-page .media-card{padding:24px;}
.single-project-page .media-card h3{font-size:22px;margin-bottom:16px;color:#0f172a;}
.single-project-page .screenshot-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;}
.single-project-page .screenshot-grid img{width:100%;height:140px;object-fit:cover;border-radius:14px;}
.single-project-page .video-box{position:relative;padding-top:56.25%;background:#0f172a;border-radius:16px;overflow:hidden;}
.single-project-page .video-box iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.single-project-page .related-projects-section{padding:20px 0 90px;}
.single-project-page .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.single-project-page .related-card{padding:22px;}
.single-project-page .related-card img{width:100%;height:180px;object-fit:cover;border-radius:14px;margin-bottom:14px;}
.single-project-page .related-card h3{font-size:20px;margin-bottom:8px;color:#0f172a;}
.single-project-page .related-card p{font-size:15px;line-height:1.8;color:#64748b;margin-bottom:14px;}
.single-project-page .floating-buy-btn{position:fixed;right:24px;bottom:24px;z-index:999;background:linear-gradient(135deg,#2563eb,#0f172a);color:#fff;padding:14px 20px;border-radius:999px;display:flex;align-items:center;gap:10px;font-weight:700;box-shadow:0 16px 35px rgba(37,99,235,.25);} 
.single-project-page .floating-buy-btn:hover{background:#22c55e;transform:translateY(-2px);} 

/* ==========================
Responsive
========================== */

@media(max-width:992px){
.about-grid,
.service-grid,
.project-grid,
.why-grid,
.intro-grid,
.benefit-grid,
.impact-grid,
.footer-grid,
.project-intro,
.process-wrapper,
.stats-grid,
.testimonial-grid,
.footer-content,
.industry-grid,
.process-grid{
grid-template-columns:1fr;
}

.home-hero .hero-content,
.hero-content{width:100%;}

.hero-content h1,
.hero h1{font-size:38px;}

.hero-content p,
.hero p{font-size:17px;}

.cta-box,.project-cta .cta-box{padding:40px 25px;}
.cta-box h2,.project-cta .cta-box h2{font-size:32px;}

.technology .tech-grid{grid-template-columns:repeat(2,1fr);} 

.service-item{grid-template-columns:1fr;}
.service-item.reverse .service-image{order:-1;}
.feature-list{grid-template-columns:1fr;}
.service-content h2{font-size:32px;}

.counter-grid,
.blog-grid,
.footer-grid,
.footer-bottom{grid-template-columns:1fr;}

.newsletter-box{flex-direction:column;}
.newsletter form{width:100%;}

.footer-bottom{display:flex;flex-direction:column;gap:20px;}
}

@media(max-width:768px){
.menu{display:none;}
.hero-content h1,.hero h1{font-size:38px;}
.hero-content p,.hero p{font-size:17px;}
.hosting-page h1{font-size:38px;}
.hosting-page p{font-size:16px;}
}