﻿/* =========================
GLOBAL STYLES
========================= */
:root{

--primary:#6C63FF;
--secondary:#4FD1C5;
--dark:#0f172a;
--light:#f8fafc;

--gradient:linear-gradient(135deg,#6C63FF,#4FD1C5);

--shadow-sm:0 8px 20px rgba(0,0,0,0.05);
--shadow-md:0 15px 40px rgba(0,0,0,0.12);
--shadow-lg:0 30px 80px rgba(0,0,0,0.18);

}
/* Override Bootstrap container width */


body{
font-family: 'Poppins', sans-serif;
color:#2c3e50;
background:#ffffff;
line-height:1.7;
}

h1,h2,h3,h4,h5{
font-weight:600;
color:#1a1a1a;
}

a{
text-decoration:none;
transition:0.3s;
}

img{
max-width:100%;
}

/* Section spacing */

.py-100{
padding:100px 0;
}

.py-80{
padding:80px 0;
}

.bg-light{
background:#f7f9fc;
}

/* =========================
SECTION TITLE
========================= */

.section-title h2{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.section-title p{
color:#6c757d;
font-size:16px;
max-width:600px;
margin:auto;
}

/* =========================
GRADIENT TEXT
========================= */

.text-primary{
background:linear-gradient(90deg,#6C63FF,#4FD1C5);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =========================
BUTTONS
========================= */

.btn{
padding:12px 28px;
border-radius:50px;
font-weight:500;
}

.btn-primary{
background:linear-gradient(90deg,#6C63FF,#4FD1C5);
border:none;
color:#fff;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.btn-light{
background:#fff;
color:#333;
border-radius:40px;
}

/* =========================
WHY CHOOSE SECTION
========================= */

.feature-box{
background:#fff;
border-radius:14px;
padding:25px;
margin-bottom:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.feature-box .icon{
font-size:28px;
margin-bottom:10px;
}

/* =========================
ABOUT SECTION
========================= */

.about-section img{
border-radius:12px;
}

.section-tag{
background:#eef3ff;
color:#6C63FF;
padding:6px 14px;
border-radius:30px;
font-size:14px;
display:inline-block;
margin-bottom:10px;
}

.about-list{
list-style:none;
padding:0;
margin-top:15px;
}

.about-list li{
margin-bottom:10px;
font-size:16px;
}

/* =========================
SERVICES SECTION
========================= */

.service-card{
background:#fff;
padding:35px 25px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
height:100%;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.service-icon{
font-size:36px;
margin-bottom:15px;
}

.service-card h3{
font-size:20px;
margin-bottom:10px;
}

.service-card p{
color:#6c757d;
font-size:15px;
}

.service-card a{
color:#6C63FF;
font-weight:500;
}

/* =========================
CTA SECTION
========================= */

.cta-section{
background:linear-gradient(135deg,#6C63FF,#4FD1C5);
padding:100px 0;
color:#fff;
}

.cta-box{
max-width:700px;
margin:auto;
}

.cta-box h2{
font-size:36px;
margin-bottom:20px;
color:#fff;
}

.cta-box span{
font-weight:700;
}

/* =========================
PROCESS SECTION
========================= */

.process-card{
padding:30px;
background:#fff;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.process-card:hover{
transform:translateY(-5px);
}

.step{
width:60px;
height:60px;
background:linear-gradient(135deg,#6C63FF,#4FD1C5);
border-radius:50%;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:auto;
margin-bottom:15px;
}

/* =========================
COUNTER SECTION
========================= */

.counter-section{
background:#111827;
padding:80px 0;
}

.counter-section h2{
font-size:40px;
font-weight:700;
color:#fff;
}

.counter-section p{
color:#cbd5e1;
}

/* =========================
CLIENTS SECTION
========================= */

.clients-section img{
opacity:0.6;
transition:0.3s;
max-height:60px;
}

.clients-section img:hover{
opacity:1;
transform:scale(1.05);
}

/* =========================
TESTIMONIAL SECTION
========================= */

.testimonial-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
text-align:center;
}

.testimonial-card p{
font-style:italic;
color:#555;
}

.testimonial-card h5{
margin-top:15px;
font-weight:600;
}

/* =========================
BLOG SECTION
========================= */

.blog-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.blog-card img{
width:100%;
}

.blog-card h4{
font-size:20px;
padding:20px 20px 0;
}

.blog-card p{
padding:0 20px;
color:#6c757d;
}

.blog-card a{
display:block;
padding:0 20px 20px;
color:#6C63FF;
font-weight:500;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:991px){

.section-title h2{
font-size:32px;
}

.cta-box h2{
font-size:30px;
}

}

@media (max-width:768px){

.py-100{
padding:70px 0;
}

.section-title h2{
font-size:28px;
}

}
.navbar{
backdrop-filter:blur(12px);
background:rgba(255,255,255,0.7);
box-shadow:var(--shadow-sm);
padding:18px 0;
}

.navbar-brand{
font-weight:700;
font-size:22px;
color:var(--dark);
}

.navbar-nav .nav-link{
color:#334155;
margin-left:20px;
font-weight:500;
}

.navbar-nav .nav-link:hover{
color:var(--primary);
}
.hero-section{
padding:120px 0;
background:linear-gradient(180deg,#ffffff,#f5f7ff);
position:relative;
overflow:hidden;
}

.hero-section h1{
font-size:56px;
font-weight:700;
line-height:1.2;
}

.hero-section p{
font-size:18px;
color:#64748b;
max-width:500px;
}

.hero-section .btn-primary{
background:var(--gradient);
border:none;
padding:14px 30px;
border-radius:50px;
}
.hero-shape{
position:absolute;
opacity:.4;
animation:float 6s ease-in-out infinite;
}

@keyframes float{

0%{transform:translateY(0px)}
50%{transform:translateY(-20px)}
100%{transform:translateY(0px)}

}

.feature-box{
background:rgba(255,255,255,0.65);
backdrop-filter:blur(10px);
border-radius:16px;
padding:30px;
box-shadow:var(--shadow-sm);
transition:all .3s ease;
}

.feature-box:hover{
transform:translateY(-10px);
box-shadow:var(--shadow-md);
}

.process-card{

background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:var(--shadow-sm);
position:relative;

}

.step{

width:70px;
height:70px;
border-radius:50%;
background:var(--gradient);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
margin:auto;
margin-bottom:20px;

}
.counter-section{

background:#0f172a;
color:#fff;
padding:100px 0;

}

.counter{

font-size:52px;
font-weight:700;
background:var(--gradient);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}
.clients-track{

display:flex;
gap:60px;
animation:scroll 25s linear infinite;

}

@keyframes scroll{

0%{transform:translateX(0)}
100%{transform:translateX(-50%)}

}

.testimonial-card{

background:#fff;
padding:40px;
border-radius:20px;
box-shadow:var(--shadow-sm);
position:relative;

}

.testimonial-card:before{

content:"“";
font-size:60px;
color:#e2e8f0;
position:absolute;
top:20px;
left:25px;

}

.blog-card{

border-radius:18px;
overflow:hidden;
background:#fff;
box-shadow:var(--shadow-sm);
transition:0.3s;

}

.blog-card:hover{

transform:translateY(-10px);
box-shadow:var(--shadow-lg);

}

.blog-card img{

height:220px;
object-fit:cover;

}
.reveal{

opacity:0;
transform:translateY(40px);
transition:1s;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}
.navbar{
padding:18px 0;
background:#ffffff;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.navbar-brand img{
height:101px;
}

.navbar-brand img{
max-height:101px;
}



.navbar-nav .nav-link{
font-weight:500;
margin-left:25px;
color:#334155;
}

.navbar-nav .nav-link:hover{
color:#6C63FF;
}

.btn-primary{
background:linear-gradient(135deg,#6C63FF,#4FD1C5);
border:none;
border-radius:30px;
padding:10px 22px;
color:#fff;
}

.top-header{

background:linear-gradient(135deg,#6C63FF,#4FD1C5);
padding:10px 0;
font-size:14px;
color:#fff;

}

.top-contact a,
.top-contact span{

color:#fff;
margin-right:25px;
font-weight:500;

}

.top-contact i{

margin-right:6px;

}

.top-social a{

color:#fff;
margin-left:12px;
width:34px;
height:34px;
border-radius:50%;
display:inline-flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.2);
transition:0.3s;

}

.top-social a:hover{

background:#fff;
color:#6C63FF;

}

.main-navbar{

background:#fff;
padding:15px 0;
box-shadow:0 5px 20px rgba(0,0,0,0.05);

}

.navbar-nav .nav-link{

font-weight:500;
margin-left:25px;
color:#333;

}
/* FORCE WIDER CONTAINER */

.container{
max-width:1200px !important;
width:100%;
padding-left:40px;
padding-right:40px;
}

/* Override Bootstrap breakpoints */

@media (min-width:576px){
.container{ max-width:1200px !important; }
}

@media (min-width:768px){
.container{ max-width:1200px !important; }
}

@media (min-width:992px){
.container{ max-width:1200px !important; }
}

@media (min-width:1000px){
.container{ max-width:1200px !important; }
}

@media (min-width:1000px){
.container{ max-width:1200px !important; }
}

.container-wide{
max-width:1200px;
margin:auto;
padding-left:30px;
padding-right:30px;
}


/* Logo size */

.navbar-brand img{
height:80px;
width:auto;
}

/* Navbar */

.navbar{
padding:15px 0;
background:#fff;
box-shadow:none !important;
}

/* Menu spacing */

.navbar-nav .nav-link{
font-size:16px;
font-weight:500;
margin-left:25px;
color:#333;
}

.navbar-nav .nav-link:hover{
color:#6C63FF;
}
.hero-slider {
background:linear-gradient(135deg,#6C63FF,#4FD1C5);
padding:70px 0;
color:#fff;
}

.hero-slider .slider-item{
min-height:400px;
display:flex;
align-items:center;
}

/*.slider-item{
min-height:400px;
display:flex;
align-items:center;
}*/

.hero-slider img{
max-height:450px;
object-fit:contain;
}

.slider-item h1{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.slider-item p{
font-size:18px;
margin-bottom:30px;
}

.slider-item img{
max-width:100%;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}
}

.carousel-indicators button{
width:10px;
height:10px;
border-radius:50%;
}

/* Footer */

.footer-area{

background:#0f172a;
color:#fff;
padding:70px 0 0;

}

.footer-widget{

margin-bottom:30px;

}

.footer-logo{

height:60px;
margin-bottom:20px;

}

.footer-widget p{

color:#cbd5e1;
font-size:15px;

}

/* Footer Links */

.footer-widget h4{

font-size:20px;
margin-bottom:20px;
color:#fff;

}

.footer-widget ul{

list-style:none;
padding:0;

}

.footer-widget ul li{

margin-bottom:10px;

}

.footer-widget ul li a{

color:#cbd5e1;
text-decoration:none;

}

.footer-widget ul li a:hover{

color:#6C63FF;

}

/* Social Icons */

.footer-social a{

display:inline-block;
width:35px;
height:35px;
background:#1e293b;
color:#fff;
text-align:center;
line-height:35px;
border-radius:50%;
margin-right:8px;

}

.footer-social a:hover{

background:#6C63FF;

}

/* Contact */

.footer-contact li{

color:#cbd5e1;

}

.footer-contact i{

margin-right:8px;

}

/* Bottom Footer */

.footer-bottom{

border-top:1px solid rgba(255,255,255,0.1);
margin-top:40px;
padding:20px 0;
text-align:center;

}

.footer-bottom p{

margin:0;
color:#94a3b8;

}


.testimonial-section{
background:#f8fafc;
}

.testimonial-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.testimonial-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.client-img img{
width:70px;
height:70px;
border-radius:50%;
margin-bottom:15px;
}

.testimonial-card p{
font-size:15px;
color:#555;
}

.testimonial-card h5{
margin-top:10px;
font-weight:600;
}

.stars{
color:#fbbf24;
margin-top:8px;
}

.testimonial-card:nth-child(1){
animation-delay:0s;
}

.testimonial-card:nth-child(2){
animation-delay:1s;
}

.testimonial-card:nth-child(3){
animation-delay:2s;
}

.testimonial-card{
background:#fff;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
animation:floatCard 4s ease-in-out infinite;
transition:0.3s;
}

/* Floating movement */

@keyframes floatCard{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}
.testimonial-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}