*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f9fc;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
padding:18px 0;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;
}

header .container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo h2{
font-size:30px;
font-weight:800;
color:#0f172a;
}

.logo span{
color:#2563eb;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav ul li a{
text-decoration:none;
color:#0f172a;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#2563eb;
}

.btn{
padding:12px 28px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#0f172a;
}
/* HERO SECTION */

.hero{
padding:170px 0 100px;
background:linear-gradient(135deg,#eef5ff,#ffffff);
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-content{
flex:1;
}

.tag{
display:inline-block;
background:#dbeafe;
color:#2563eb;
padding:8px 18px;
border-radius:30px;
font-weight:600;
margin-bottom:25px;
}

.hero h1{
font-size:58px;
line-height:1.2;
font-weight:800;
color:#0f172a;
margin-bottom:20px;
}

.hero h1 span{
color:#2563eb;
}

.hero p{
font-size:18px;
color:#555;
line-height:1.8;
margin-bottom:35px;
max-width:550px;
}

.hero-btns{
display:flex;
gap:20px;
margin-bottom:50px;
}

.btn-outline{
padding:12px 30px;
border:2px solid #2563eb;
border-radius:30px;
text-decoration:none;
font-weight:600;
color:#2563eb;
transition:.4s;
}

.btn-outline:hover{
background:#2563eb;
color:#fff;
}

.hero-rating{
display:flex;
gap:50px;
}

.hero-rating h2{
font-size:34px;
color:#2563eb;
}

.hero-rating p{
margin-top:8px;
font-size:15px;
}

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
width:100%;
max-width:600px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}
/* SERVICES */

.services{
padding:100px 0;
background:#fff;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h4{
color:#2563eb;
font-size:18px;
margin-bottom:10px;
}

.section-title h2{
font-size:42px;
color:#0f172a;
margin-bottom:15px;
}

.section-title p{
max-width:650px;
margin:auto;
color:#666;
line-height:1.8;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:55px;
color:#2563eb;
margin-bottom:25px;
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
color:#0f172a;
}

.service-card p{
color:#666;
line-height:1.7;
}
/* ABOUT */

.about{
padding:100px 0;
background:#f8fbff;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.about-image{
flex:1;
}

.about-image img{
width:100%;
max-width:500px;
}

.about-content{
flex:1;
}

.about-content h4{
color:#2563eb;
font-size:18px;
margin-bottom:10px;
}

.about-content h2{
font-size:42px;
color:#0f172a;
margin-bottom:20px;
}

.about-content p{
color:#666;
line-height:1.8;
margin-bottom:20px;
}

.about-boxes{
display:flex;
gap:20px;
margin:35px 0;
}

.box{
background:#fff;
padding:20px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
flex:1;
}

.box h3{
font-size:30px;
color:#2563eb;
margin-bottom:8px;
}

.box p{
font-size:14px;
margin:0;
}
/* WHY CHOOSE US */

.why-us{
padding:100px 0;
background:#ffffff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:#f8fbff;
padding:35px 25px;
border-radius:18px;
text-align:center;
transition:.4s;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.why-card:hover{
background:#2563eb;
transform:translateY(-10px);
}

.why-card i{
font-size:50px;
color:#2563eb;
margin-bottom:20px;
transition:.4s;
}

.why-card h3{
font-size:24px;
margin-bottom:15px;
color:#0f172a;
transition:.4s;
}

.why-card p{
color:#666;
line-height:1.7;
transition:.4s;
}

.why-card:hover i,
.why-card:hover h3,
.why-card:hover p{
color:#fff;
}
/* PORTFOLIO */

.portfolio{
padding:100px 0;
background:#f8fbff;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.portfolio-item{
position:relative;
overflow:hidden;
border-radius:20px;
}

.portfolio-item img{
width:100%;
display:block;
transition:.5s;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(37,99,235,.85);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
opacity:0;
transition:.4s;
color:#fff;
text-align:center;
padding:20px;
}

.portfolio-item:hover img{
transform:scale(1.1);
}

.portfolio-item:hover .overlay{
opacity:1;
}

.overlay h3{
font-size:28px;
margin-bottom:10px;
}

.overlay p{
margin-bottom:20px;
}

.view-btn{
display:inline-block;
padding:12px 28px;
background:#fff;
color:#2563eb;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.view-btn:hover{
background:#0f172a;
color:#fff;
}
/* Statistics */

.stats{
padding:80px 0;
background:#2563eb;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-card{
text-align:center;
color:#fff;
}

.stat-card h2{
font-size:48px;
margin-bottom:10px;
}

.stat-card p{
font-size:18px;
}

/* Testimonials */

.testimonials{
padding:100px 0;
background:#f8fbff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

.testimonial-card img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
}

.testimonial-card h3{
margin-bottom:5px;
color:#0f172a;
}

.testimonial-card h5{
color:#2563eb;
margin-bottom:20px;
font-weight:500;
}

.testimonial-card p{
color:#666;
line-height:1.7;
margin-bottom:20px;
}
/* Pricing */

.pricing{
padding:100px 0;
background:#ffffff;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.pricing-card{
position:relative;
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.pricing-card:hover{
transform:translateY(-10px);
}

.pricing-card.active{
background:#2563eb;
color:#fff;
}

.badge{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#ff9800;
color:#fff;
padding:8px 20px;
border-radius:30px;
font-size:14px;
font-weight:600;
}

.pricing-card h2{
font-size:42px;
margin:20px 0;
}

.pricing-card ul{
list-style:none;
padding:0;
margin:30px 0;
}

.pricing-card ul li{
padding:10px 0;
}

.pricing-card.active .btn{
background:#fff;
color:#2563eb;
}
/* CONTACT */

.contact{

padding:100px 0;

background:#f8fbff;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:60px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.info-box{

display:flex;

align-items:center;

gap:20px;

background:#fff;

padding:25px;

border-radius:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.info-box i{

font-size:28px;

color:#2563eb;

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

background:#eef5ff;

border-radius:50%;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#2563eb;

}
/* FOOTER */

footer{
background:#0f172a;
color:#fff;
padding:80px 0 0;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-about h2{
font-size:34px;
margin-bottom:20px;
}

.footer-about span{
color:#2563eb;
}

.footer-about p{
line-height:1.8;
color:#cbd5e1;
margin-bottom:25px;
}

.footer-links ul,
.footer-services ul{
list-style:none;
}

.footer-links li,
.footer-services li{
margin-bottom:12px;
}

.footer-links a{
text-decoration:none;
color:#cbd5e1;
}

.social-icons{
display:flex;
gap:15px;
margin-top:20px;
}

.social-icons a{
width:45px;
height:45px;
background:#2563eb;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
transform:translateY(-5px);
}

.copyright{
text-align:center;
padding:25px 0;
border-top:1px solid rgba(255,255,255,.1);
margin-top:60px;
color:#cbd5e1;
}

/* WhatsApp */

.whatsapp{
position:fixed;
right:25px;
bottom:90px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
z-index:999;
}

/* Top Button */

.top-btn{
position:fixed;
right:25px;
bottom:20px;
width:55px;
height:55px;
background:#2563eb;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:22px;
}
/* Mobile Menu */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#2563eb;
}

/* Tablet */

@media(max-width:992px){

.hero-container,
.about-container,
.contact-container{
flex-direction:column;
display:flex;
}

.service-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid,
.pricing-grid,
.stats-grid,
.footer-container{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

nav{
display:none;
}

.menu-toggle{
display:block;
}

.btn{
display:none;
}

.hero h1{
font-size:38px;
}

.hero-rating{
flex-direction:column;
gap:20px;
}

.service-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid,
.pricing-grid,
.stats-grid,
.footer-container{
grid-template-columns:1fr;
}

.section-title h2{
font-size:32px;
}

}
@media(max-width:768px){

nav.active{

display:block;

position:absolute;

top:90px;

left:0;

width:100%;

background:#fff;

padding:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

nav.active ul{

flex-direction:column;

gap:20px;

}

}
/* PRELOADER */

#preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#ffffff;

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

}

.loader{

width:70px;

height:70px;

border:8px solid #e5e7eb;

border-top:8px solid #2563eb;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}
/* Theme Toggle */

.theme-toggle{
width:45px;
height:45px;
background:#2563eb;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:20px;
transition:.3s;
margin-right:20px;
}

.theme-toggle:hover{
transform:rotate(180deg);
}

/* Dark Theme */

body.dark{
background:#0f172a;
color:#fff;
transition:.4s;
}

body.dark header{
background:#111827;
}

body.dark .services,
body.dark .about,
body.dark .portfolio,
body.dark .pricing,
body.dark .contact,
body.dark .testimonials{
background:#111827;
}

body.dark .service-card,
body.dark .portfolio-item,
body.dark .pricing-card,
body.dark .testimonial-card,
body.dark .contact-form,
body.dark .info-box,
body.dark .why-card{
background:#1f2937;
color:#fff;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark p,
body.dark li,
body.dark a{
color:#fff;
}
/* Google Map */

.map iframe{

width:100%;

height:450px;

border:0;

display:block;

}
/* FAQ */

.faq{

padding:100px 0;

background:#ffffff;

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

background:#fff;

margin-bottom:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

overflow:hidden;

}

.faq-question{

display:flex;

justify-content:space-between;

align-items:center;

padding:22px;

cursor:pointer;

}

.faq-question h3{

font-size:20px;

}

.faq-question i{

font-size:20px;

color:#2563eb;

transition:.3s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:.4s;

padding:0 22px;

}

.faq-answer p{

padding-bottom:20px;

line-height:1.8;

}

.faq-item.active .faq-answer{

max-height:200px;

}

.faq-item.active i{

transform:rotate(45deg);

}
/* CLIENT LOGOS */

.clients{
padding:100px 0;
background:#f8fbff;
overflow:hidden;
}

.logo-slider{
overflow:hidden;
position:relative;
}

.logo-track{
display:flex;
width:calc(200px * 12);
animation:scroll 25s linear infinite;
}

.logo-track img{
width:160px;
height:80px;
object-fit:contain;
margin:0 20px;
filter:grayscale(100%);
opacity:.8;
transition:.3s;
}

.logo-track img:hover{
filter:none;
opacity:1;
transform:scale(1.1);
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-180px * 6));
}

}
/* BLOG */

.blog{
padding:100px 0;
background:#ffffff;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-10px);
}

.blog-card img{
width:100%;
height:240px;
object-fit:cover;
}

.blog-content{
padding:25px;
}

.blog-tag{
display:inline-block;
background:#2563eb;
color:#fff;
padding:6px 14px;
border-radius:30px;
font-size:14px;
margin-bottom:15px;
}

.blog-content h3{
margin-bottom:15px;
font-size:22px;
}

.blog-content p{
color:#666;
line-height:1.8;
margin-bottom:20px;
}

.blog-content a{
text-decoration:none;
color:#2563eb;
font-weight:600;
}
/* Certificates */

.certificates{
padding:100px 0;
background:#f8fbff;
}

.certificate-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.certificate-card{
background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.certificate-card:hover{
transform:translateY(-10px);
}

.certificate-card i{
font-size:50px;
color:#2563eb;
margin-bottom:20px;
}

.certificate-card h3{
margin-bottom:15px;
font-size:22px;
}

.certificate-card p{
line-height:1.8;
color:#666;
}
/* Timeline */

.timeline{
padding:100px 0;
background:#fff;
}

.timeline-box{
position:relative;
max-width:900px;
margin:auto;
}

.timeline-box::before{
content:"";
position:absolute;
left:50%;
top:0;
width:4px;
height:100%;
background:#2563eb;
transform:translateX(-50%);
}

.timeline-item{
display:flex;
justify-content:space-between;
align-items:center;
margin:60px 0;
position:relative;
}

.timeline-year{
width:120px;
height:120px;
background:#2563eb;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
font-weight:bold;
z-index:2;
}

.timeline-content{
width:42%;
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-item:nth-child(even){
flex-direction:row-reverse;
}
/* TEAM */

.team{
padding:100px 0;
background:#f8fbff;
}

.team-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.team-card{
background:#fff;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100%;
height:300px;
object-fit:cover;
}

.team-card h3{
margin-top:20px;
font-size:24px;
}

.team-card span{
display:block;
color:#2563eb;
margin:10px 0 20px;
font-weight:600;
}

.team-social{
padding-bottom:25px;
}

.team-social a{
display:inline-flex;
width:42px;
height:42px;
background:#2563eb;
color:#fff;
border-radius:50%;
align-items:center;
justify-content:center;
margin:0 6px;
text-decoration:none;
transition:.3s;
}

.team-social a:hover{
background:#111827;
}
/* Consultation */

.consultation{

padding:100px 0;

background:linear-gradient(135deg,#2563eb,#1e40af);

color:#fff;

}

.consultation-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.consultation h4{

font-size:22px;

margin-bottom:15px;

color:#cbd5ff;

}

.consultation h2{

font-size:48px;

margin-bottom:25px;

}

.consultation p{

line-height:1.8;

margin-bottom:25px;

}

.consultation ul{

list-style:none;

margin-bottom:30px;

}

.consultation ul li{

margin:15px 0;

font-size:18px;

}

.consultation ul i{

color:#22c55e;

margin-right:10px;

}

.consultation-image img{

width:100%;

}
/* Newsletter */

.newsletter{

padding:100px 0;

background:#2563eb;

}

.newsletter-box{

max-width:900px;

margin:auto;

text-align:center;

color:#fff;

}

.newsletter-box h2{

font-size:42px;

margin-bottom:20px;

}

.newsletter-box p{

margin-bottom:35px;

line-height:1.8;

}

.newsletter-form{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.newsletter-form input{

width:450px;

padding:18px;

border:none;

border-radius:50px;

font-size:17px;

outline:none;

}

.newsletter-form button{

padding:18px 35px;

border:none;

background:#111827;

color:#fff;

border-radius:50px;

font-size:17px;

cursor:pointer;

transition:.3s;

}

.newsletter-form button:hover{

background:#000;

}
/* Cookie Banner */

.cookie-banner{

position:fixed;

left:20px;

bottom:20px;

max-width:420px;

background:#111827;

color:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.25);

z-index:99999;

display:flex;

flex-direction:column;

gap:15px;

}

.cookie-text{

line-height:1.6;

font-size:15px;

}

.cookie-buttons{

display:flex;

gap:10px;

}

.cookie-btn{

padding:12px 20px;

border:none;

border-radius:8px;

background:#2563eb;

color:#fff;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.cookie-btn:hover{

background:#1d4ed8;

}

.cookie-btn.reject{

background:#6b7280;

}
/* ==========================
   LOADER
========================== */

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:#ffffff;

display:flex;

justify-content:center;

align-items:center;

z-index:999999;

transition:.6s;

}

.loader-content{

text-align:center;

}

.loader-logo{

font-size:42px;

font-weight:800;

color:#111827;

margin-bottom:25px;

}

.loader-logo span{

color:#2563eb;

}

.loader-spinner{

width:70px;

height:70px;

border:6px solid #dbeafe;

border-top:6px solid #2563eb;

border-radius:50%;

margin:auto;

animation:spin 1s linear infinite;

}

.loader-content p{

margin-top:20px;

font-size:18px;

color:#555;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}
/*==========================
CUSTOM CURSOR
===========================*/

body{
cursor:auto;
}

.cursor{

position:fixed;

width:40px;

height:40px;

border:2px solid #2563eb;

border-radius:50%;

pointer-events:none;

transform:translate(-50%,-50%);

transition:0.08s;

z-index:999999;

}

.cursor-dot{

position:fixed;

width:8px;

height:8px;

background:#2563eb;

border-radius:50%;

pointer-events:none;

transform:translate(-50%,-50%);

z-index:999999;

}

/* Hover Effect */

.cursor.active{

width:70px;

height:70px;

background:rgba(37,99,235,.15);

}
@media(max-width:768px){

.cursor,
.cursor-dot{

display:none;

}

body{

cursor:auto;

}

}
/* Scroll Progress Bar */

#progress-bar{
position:fixed;
top:0;
left:0;
width:0%;
height:5px;
background:linear-gradient(90deg,#2563eb,#06b6d4);
z-index:999999;
}
html{
scroll-behavior:smooth;
}
::selection{
background:#2563eb;
color:#fff;
}
::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#e5e7eb;
}

::-webkit-scrollbar-thumb{
background:#2563eb;
border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
background:#1d4ed8;
}