:root{

    --primary:#2563EB;
    --secondary:#0F172A;
    --accent:#06B6D4;
    --success:#10B981;
    --warning:#F59E0B;
    --danger:#EF4444;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#64748B;

    --radius:16px;
    --transition:.3s;

}

.section{

    padding:100px 0;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;

}


.btn-primary{

    background:var(--primary);

}
/* Navbar */

.custom-navbar{

    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;

}

.navbar-brand{

    color:var(--primary)!important;
    font-size:28px;

}

.nav-link{

    margin-left:18px;
    font-weight:500;

}

.nav-link.active{

    color:var(--primary)!important;

}

.btn-primary{

    background:#2563eb;
    border:none;
    border-radius:50px;
    padding:12px 24px;

}

.btn-primary:hover{

    background:#1d4ed8;

}
/* HERO */

.hero{

padding:100px 0;
background:linear-gradient(135deg,#f8fbff,#eef6ff);

}

.hero-badge{

display:inline-block;
padding:10px 18px;
background:#eaf2ff;
color:#2563eb;
border-radius:50px;
font-weight:600;

}

.hero-title{

font-size:64px;
font-weight:800;
line-height:1.2;
color:#0f172a;

}

.hero-description{

font-size:20px;
color:#64748b;
line-height:1.8;

}

.hero-stats{

display:flex;
gap:60px;

}

.hero-stats h2{

font-size:38px;
font-weight:700;
color:#2563eb;

}

.hero-stats p{

color:#64748b;

}

.hero-image{

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.hero{

text-align:center;
padding:70px 0;

}

.hero-title{

font-size:42px;

}

.hero-stats{

justify-content:center;
margin-top:40px;
gap:30px;

}

.hero-image{

margin-top:40px;

}

}
.hero{

    position:relative;
    overflow:hidden;

}

.blob{

    position:absolute;
    border-radius:50%;
    filter:blur(60px);

}

.blob-1{

    width:300px;
    height:300px;
    background:#60a5fa;
    top:-80px;
    left:-80px;

}

.blob-2{

    width:350px;
    height:350px;
    background:#a78bfa;
    bottom:-120px;
    right:-100px;

}
/* Services */

.services{

    background:#fff;

}

.section-badge{

    background:#eaf2ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;

}

.section-title{

    font-size:42px;
    font-weight:700;

}

.section-description{

    color:#6b7280;
    max-width:700px;
    margin:auto;

}

.service-card{
    justify-items: center;

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.service-icon{

    width:70px;
    height:70px;
    background:#2563eb;
    color:#fff;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:25px;

}
@media(max-width:991px){

.section-title{

font-size:32px;

}

.service-card{

text-align:center;

}

.service-icon{

margin:auto;
margin-bottom:20px;

}

}
/* Portfolio */

.portfolio{

    background:#f8fafc;

}

.portfolio-card{
justify-items: center;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;

}

.portfolio-card img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.4s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    padding:25px;

}

.portfolio-content span{

    color:#2563eb;
    font-size:14px;
    font-weight:600;

}

.portfolio-content h4{

    margin-top:10px;
    font-weight:700;

}

.portfolio-card:hover{

    transform:translateY(-10px);

}
/* Testimonials */

.testimonials{

    background:#ffffff;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#fbbf24;
    font-size:20px;

}

.client-info{

    display:flex;
    align-items:center;
    gap:15px;

}

.client-info img{

    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;

}

.client-info h5{

    margin:0;
    font-weight:700;

}

.client-info small{

    color:#6b7280;

}


.counter-section{
    background:#f8fafc;
}

.counter-box{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.counter-box:hover{
    transform:translateY(-5px);
}

.counter-icon{
    font-size:40px;
    color:var(--primary-color);
}

.counter-number{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    color:#666;
}

.why-section{
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.why-image-wrapper{
    position:relative;
}

.why-image-wrapper img{
    width:100%;
    border-radius:24px;
    object-fit:cover;
    transition:.5s;
}

.why-image-wrapper:hover img{
    transform:scale(1.03);
}

.section-badge{
    display:inline-flex;
    padding:8px 18px;
    border-radius:50px;
    background:#eef5ff;
    color:var(--primary-color);
    font-weight:600;
}

.section-title{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
}

.section-description{
    font-size:17px;
    line-height:1.9;
    color:#6c757d;
}

.section-description p:last-child{
    margin-bottom:0;
}

@media(max-width:991px){

.section-title{
    font-size:32px;
}

.why-section{
    padding:70px 0;
}

}

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:35px;
}

.hero-stat{
    text-align:center;
}

.hero-stat-icon{
    font-size:26px;
    color:var(--primary-color);
    margin-bottom:8px;
}

.hero-stat h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:5px;
}

.hero-stat p{
    margin:0;
    color:#666;
}


/* blog */

.blog-section{
    background:#f8fafc;
}

.section-badge{
    color:#2563eb;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
}

.section-description{
    color:#6b7280;
}

.blog-card{
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12)!important;
}

.blog-card img{
    height:240px;
    width:100%;
    object-fit:cover;
}

.blog-title a{
    color:#111827;
    text-decoration:none;
    transition:.3s;
}

.blog-title a:hover{
    color:#2563eb;
}

.blog-meta{
    color:#6b7280;
}

.read-more{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
}

.read-more:hover{
    letter-spacing:1px;
}

.page-header{

background:#0f172a;

}

.blog-content img{

max-width:100%;
height:auto;
border-radius:12px;
margin:20px 0;

}

.blog-content p{

line-height:1.9;
margin-bottom:20px;

}

.blog-content h2,
.blog-content h3{

margin-top:35px;
margin-bottom:20px;

}

.blog-content ul{

padding-left:20px;

}

.blog-content blockquote{

background:#f8f9fa;
padding:25px;
border-left:5px solid #0d6efd;
font-style:italic;

}

.card{

border:none;

}

/*=========================
CTA
=========================*/

.cta-section{

position:relative;

padding:120px 0;

}

.cta-bg{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background-size:cover;

background-position:center;

background-repeat:no-repeat;

transform:scale(1.08);

}

.cta-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

}

.cta-box{

position:relative;

z-index:5;

padding:70px;

border-radius:30px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.15);

box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.cta-badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.15);

border-radius:50px;

font-weight:600;

color:#fff;

margin-bottom:25px;

}

.cta-box h2{

font-size:52px;

font-weight:800;

color:#fff;

margin-bottom:25px;

line-height:1.2;

}

.cta-box p{

font-size:18px;

color:#f5f5f5;

line-height:1.8;

max-width:780px;

margin:auto;

margin-bottom:40px;

}

.cta-btn{

padding:18px 42px;

border-radius:60px;

background:#ffffff;

color:#111827;

font-weight:700;

transition:.35s;

}

.cta-btn:hover{

background:#2563eb;

color:#fff;

transform:translateY(-5px);

}

@media(max-width:991px){

.cta-box{

padding:50px 30px;

}

.cta-box h2{

font-size:36px;

}

}

@media(max-width:576px){

.cta-box{

padding:35px 20px;

}

.cta-box h2{

font-size:28px;

}

.cta-box p{

font-size:16px;

}

}

/*about page*/
.about-company{

padding:100px 0;

}

.about-company img{

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.section-badge{

display:inline-block;

padding:8px 18px;

background:#2563eb;

color:#fff;

border-radius:50px;

font-weight:600;

font-size:14px;

}

.company-stat{

background:#fff;

padding:30px 20px;

text-align:center;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.company-stat:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.company-stat h3{

font-size:40px;

font-weight:800;

color:#2563eb;

margin-bottom:8px;

}

.company-stat span{

font-size:15px;

font-weight:600;

color:#64748b;

}

@media(max-width:991px){

.about-company{

padding:70px 0;

}

.company-stat{

margin-bottom:20px;

}

}

/*contact*/

/*==========================
CONTACT HERO
==========================*/

.contact-hero{

padding:130px 0 90px;

background:linear-gradient(135deg,#0f172a,#1e40af);

position:relative;

overflow:hidden;

color:#fff;

}

.contact-hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.05);

border-radius:50%;

top:-220px;

right:-180px;

}

.contact-hero::after{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-120px;

left:-80px;

}

.contact-hero .container{

position:relative;

z-index:2;

}

.contact-hero h1{

font-size:58px;

font-weight:800;

margin:25px 0;

}

.contact-hero p{

font-size:19px;

opacity:.9;

max-width:700px;

margin:auto;

line-height:1.8;

}

.section-badge{

display:inline-block;

padding:10px 22px;

border-radius:50px;

background:#ffffff20;

backdrop-filter:blur(10px);

font-size:14px;

font-weight:600;

}

.breadcrumb-wrap{

margin-top:35px;

}

.breadcrumb-wrap a{

color:#fff;

text-decoration:none;

font-weight:600;

}

.breadcrumb-wrap span{

margin:0 8px;

opacity:.85;

}

@media(max-width:991px){

.contact-hero{

padding:90px 0 70px;

}

.contact-hero h1{

font-size:40px;

}

.contact-hero p{

font-size:17px;

}

}

@media(max-width:576px){

.contact-hero h1{

font-size:32px;

}

}
/*=============================
CONTACT INFO
==============================*/

.contact-info-section{

padding:100px 0;

background:#f8fafc;

}

.contact-logo{

max-height:70px;

}

.section-title{

font-size:42px;

font-weight:800;

margin-bottom:20px;

color:#111827;

}

.section-description{

font-size:17px;

color:#6b7280;

line-height:1.8;

}

.contact-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.contact-icon{

width:75px;

height:75px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#2563eb;

color:#fff;

font-size:28px;

margin-bottom:25px;

}

.contact-icon.whatsapp{

background:#25D366;

}

.contact-card h5{

font-size:22px;

font-weight:700;

margin-bottom:15px;

}

.contact-card a{

color:#2563eb;

font-weight:600;

text-decoration:none;

word-break:break-word;

}

.contact-card p{

margin:0;

color:#64748b;

line-height:1.8;

}
/*==================================
CONTACT FORM
===================================*/

.contact-form-section{

padding:100px 0;

background:#ffffff;

}

.contact-form-wrapper{

background:#fff;

border-radius:24px;

padding:60px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-left h2{

font-size:42px;

font-weight:800;

margin-bottom:20px;

}

.contact-left p{

color:#64748b;

line-height:1.9;

margin-bottom:30px;

}

.contact-features{

padding:0;

margin:0;

list-style:none;

}

.contact-features li{

margin-bottom:18px;

font-size:16px;

font-weight:600;

}

.contact-features i{

color:#2563eb;

margin-right:10px;

}

.contact-form .form-control{

height:58px;

border-radius:12px;

border:1px solid #e5e7eb;

padding:15px 20px;

font-size:15px;

box-shadow:none;

}

.contact-form textarea.form-control{

height:auto;

}

.contact-form .form-control:focus{

border-color:#2563eb;

box-shadow:0 0 0 4px rgba(37,99,235,.08);

}

.contact-submit{

background:#2563eb;

color:#fff;

padding:16px 40px;

border-radius:12px;

font-size:16px;

font-weight:600;

transition:.35s;

}

.contact-submit:hover{

background:#1d4ed8;

transform:translateY(-3px);

color:#fff;

}

@media(max-width:991px){

.contact-form-wrapper{

padding:35px;

}

.contact-left{

margin-bottom:40px;

}

.contact-left h2{

font-size:32px;

}

}
/*===============================
GOOGLE MAP
================================*/

.contact-map-section{

padding:100px 0;

background:#f8fafc;

}

.contact-map-section .section-title{

font-size:42px;

font-weight:800;

margin-bottom:20px;

color:#111827;

}

.contact-map-section .section-description{

font-size:17px;

color:#64748b;

max-width:700px;

margin:auto;

line-height:1.8;

}

.map-wrapper{

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.map-wrapper iframe{

width:100%;

height:550px;

border:0;

display:block;

}

@media(max-width:991px){

.contact-map-section{

padding:70px 0;

}

.contact-map-section .section-title{

font-size:32px;

}

.map-wrapper iframe{

height:420px;

}

}

@media(max-width:576px){

.map-wrapper iframe{

height:320px;

}

}
/*=========================
SOCIAL SECTION
==========================*/

.contact-social-section{

padding:100px 0;

background:#111827;

color:#fff;

}

.social-box{

text-align:center;

max-width:850px;

margin:auto;

}

.social-logo{

max-height:80px;

margin-bottom:25px;

}

.social-box h2{

font-size:42px;

font-weight:800;

margin-bottom:15px;

}

.social-box .tagline{

font-size:18px;

opacity:.9;

margin-bottom:40px;

}

.social-links{

display:flex;

justify-content:left;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.social-links a{

width:65px;

height:65px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:24px;

background:#fff;

color:#111827;

transition:.35s;

}

.social-links a:hover{

transform:translateY(-8px) scale(1.08);

}

.facebook:hover{

background:#1877F2;

color:#fff;

}

.instagram:hover{

background:#E1306C;

color:#fff;

}

.linkedin:hover{

background:#0A66C2;

color:#fff;

}

.twitter:hover{

background:#000;

color:#fff;

}

.youtube:hover{

background:#FF0000;

color:#fff;

}

.footer-text{

margin-top:35px;

font-size:16px;

opacity:.85;

line-height:1.9;

}

@media(max-width:768px){

.contact-social-section{

padding:70px 0;

}

.social-box h2{

font-size:30px;

}

.social-links a{

width:55px;

height:55px;

font-size:20px;

}

}

/* =======================================
   Services Slider
======================================= */

.servicesSwiper{
    padding:12px 4px 70px;
}

.servicesSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.servicesSwiper .swiper-slide > div{
    width:100%;
}


/* =======================================
   Navigation
======================================= */

.services-prev,
.services-next{
    width:54px;
    height:54px;
    border-radius:9999px;
    background:#fff;
    color:#4f46e5;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.35s;
}

.services-prev:hover,
.services-next:hover{
    background:#4f46e5;
    color:#fff;
    transform:translateY(-50%) scale(1.08);
}


/* =======================================
   Pagination
======================================= */

.services-pagination{
    margin-top:40px;
}

.services-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#c7d2fe;
    opacity:1;
    transition:.35s;
}

.services-pagination .swiper-pagination-bullet-active{
    width:34px;
    border-radius:999px;
    background:#4f46e5;
}


/* =======================================
   Card
======================================= */

.servicesSwiper .group{
    transition:.45s ease;
}

.servicesSwiper .group:hover{
    transform:translateY(-12px);
}


/* =======================================
   Responsive
======================================= */

@media(max-width:1280px){

.services-prev,
.services-next{
    display:none;
}

}

@media(max-width:768px){

.servicesSwiper{
    padding-bottom:55px;
}

}

/* ===========================
   Portfolio Section
=========================== */

.portfolioSwiper{
    padding:12px 5px 70px;
}

.portfolioSwiper .swiper-slide{
    height:auto;
}

.portfolioSwiper .swiper-slide>div{
    height:100%;
}


/* ===========================
   Navigation
=========================== */

.portfolio-prev,
.portfolio-next{

    width:52px;
    height:52px;

    border-radius:9999px;

    background:#fff;

    border:1px solid #E5E7EB;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

}

.portfolio-prev:hover,
.portfolio-next:hover{

    background:#4F46E5;

    color:#fff;

    border-color:#4F46E5;

    transform:translateY(-3px);

    box-shadow:
        0 20px 40px rgba(79,70,229,.35);

}


/* ===========================
   Pagination
=========================== */

.portfolio-pagination{

    position:relative;

    margin-top:45px;

    text-align:center;

}

.portfolio-pagination .swiper-pagination-bullet{

    width:18px;

    height:18px;

    opacity:1;

    background:#CBD5E1;

    transition:.35s;

    margin:0 6px !important;

}

.portfolio-pagination .swiper-pagination-bullet-active{

    width:34px;

    border-radius:999px;

    background:#4F46E5;

}


.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.swiper-pagination-bullet {
    width: 18px !important;
    height: 18px !important;
    margin: 0 6px !important;
}

/* ===========================
   Portfolio Card
=========================== */

.portfolioSwiper .group{

    transition:.45s;

}

.portfolioSwiper .group:hover{

    transform:translateY(-12px);

}

.portfolioSwiper img{

    transition:all .7s ease;

}

.portfolioSwiper .group:hover img{

    transform:scale(1.08);

}


/* ===========================
   Grid Card
=========================== */

.portfolio-grid .group{

    transition:.45s;

}

.portfolio-grid .group:hover{

    transform:translateY(-12px);

}


/* ===========================
   Mobile
=========================== */

@media(max-width:1023px){

    .portfolio-prev,
    .portfolio-next{

        display:none;

    }

}

/*==================================================
BLOG SECTION
==================================================*/

.blogSwiper{
    overflow: hidden;
    padding: 10px 2px 70px;
}

.blog-grid article,
.blogSwiper .swiper-slide{
    height: auto;
}

.blogSwiper .swiper-slide article,
.blog-grid article{
    height:100%;
}


/* Image */

.blogSwiper article img,
.blog-grid article img{
    transition:all .7s ease;
}

.blogSwiper article:hover img,
.blog-grid article:hover img{
    transform:scale(1.08);
}


/* Card */

.blogSwiper article,
.blog-grid article{
    transition:.45s ease;
    background:#fff;
}

.blogSwiper article:hover,
.blog-grid article:hover{

    transform:translateY(-12px);

    box-shadow:
        0 18px 45px rgba(79,70,229,.15);

}


/* Title */

.blogSwiper article h3 a,
.blog-grid article h3 a{

    transition:.3s;

}

.blogSwiper article:hover h3 a,
.blog-grid article:hover h3 a{

    color:#4f46e5;

}


/* Read More */

.blogSwiper article a:last-child,
.blog-grid article a:last-child{

    transition:.3s;

}

.blogSwiper article:hover a:last-child,
.blog-grid article:hover a:last-child{

    letter-spacing:.3px;

}


/*=========================================
Pagination
=========================================*/

.blog-pagination{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:45px;

}

.blog-pagination .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d1d5db;

    opacity:1;

    transition:.35s;

    border-radius:50%;

}

.blog-pagination .swiper-pagination-bullet-active{

    width:34px;

    border-radius:30px;

    background:#4f46e5;

}


/*=========================================
Navigation
=========================================*/

.blog-prev,
.blog-next{

    width:52px;
    height:52px;

    border-radius:999px;

    background:#fff;

    color:#4f46e5;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.blog-prev:hover,
.blog-next:hover{

    background:#4f46e5;
    color:#fff;

    transform:translateY(-3px);

}


/*=========================================
Button
=========================================*/

.blog-btn{

    transition:.35s;

}

.blog-btn:hover{

    transform:translateY(-3px);

}


/*=========================================
Responsive
=========================================*/

@media(max-width:768px){

    .blogSwiper{

        padding-bottom:60px;

    }

    .blog-pagination{

        margin-top:30px;

    }

}

/* ==========================================================
   TEAM SECTION
========================================================== */



.teamSwiper .swiper-slide{
    height: auto;
}

/* ==========================================================
   TEAM CARD
========================================================== */

.team-card{

    position: relative;

    overflow: hidden;

    height: 100%;

    border-radius: 28px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.75);

    box-shadow:
        0 10px 40px rgba(15,23,42,.06);

    transition: .45s ease;

}

.team-card:hover{

    transform: translateY(-12px);

    box-shadow:
        0 30px 60px rgba(79,70,229,.18);

    border-color:#c7d2fe;

}

/* ==========================================================
   IMAGE
========================================================== */

.team-card img{

    transition:.8s;

}

.team-card:hover img{

    transform:scale(1.08);

}

/* ==========================================================
   IMAGE OVERLAY
========================================================== */

.team-card::after{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:linear-gradient(
        180deg,
        transparent,
        rgba(79,70,229,.04)
    );

    opacity:0;

    transition:.5s;

}

.team-card:hover::after{

    opacity:1;

}

/* ==========================================================
   SOCIAL ICONS
========================================================== */

.team-social{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%) translateY(20px);

    display:flex;

    gap:12px;

    opacity:0;

    transition:.45s;

}

.team-card:hover .team-social{

    opacity:1;

    transform:translateX(-50%) translateY(0);

}

.team-social a{

    width:46px;

    height:46px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.95);

    color:#4f46e5;

    font-size:22px;

    backdrop-filter:blur(10px);

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.team-social a:hover{

    background:#4f46e5;

    color:#fff;

    transform:translateY(-5px) rotate(8deg);

}

/* ==========================================================
   MEMBER NAME
========================================================== */

.team-card h3{

    transition:.35s;

}

.team-card:hover h3{

    color:#4f46e5;

}

/* ==========================================================
   DESIGNATION
========================================================== */

.team-card p{

    letter-spacing:.3px;

}

/* ==========================================================
   PAGINATION
========================================================== */

.team-pagination{

    position:relative;

    margin-top:45px;

}

.team-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    opacity:1;

    background:#c7d2fe;

    transition:.35s;

}

.team-pagination .swiper-pagination-bullet-active{

    width:40px;

    border-radius:999px;

    background:#4f46e5;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.team-prev,
.team-next{

    transition:.35s;

}

.team-prev:hover,
.team-next:hover{

    background:#4f46e5 !important;

    color:#fff;

    transform:translateY(-50%) scale(1.08);

    box-shadow:0 15px 35px rgba(79,70,229,.35);

}

.team-prev iconify-icon,
.team-next iconify-icon{

    font-size:26px;

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:1024px){

    .team-prev,
    .team-next{

        display:none;

    }

}

@media(max-width:768px){

    .team-card{

        border-radius:22px;

    }

    .team-card img{

        height:320px;

    }

}

@media(max-width:640px){

    .team-social{

        opacity:1;

        transform:translateX(-50%);

    }

    .team-social a{

        width:40px;

        height:40px;

        font-size:20px;

    }

}

/* ===========================
BLOG PAGE
===========================*/

.blog-card{
transition:.45s;
position:relative;
overflow:hidden;
}

.blog-card::before{

content:'';
position:absolute;
top:0;
left:-120%;
width:70%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.45),
transparent
);

transition:.8s;
z-index:2;

}

.blog-card:hover::before{

left:150%;

}

.blog-card img{

transition:1s;

}

.blog-card:hover img{

transform:scale(1.08);

}

.blog-card:hover{

box-shadow:
0 25px 60px rgba(79,70,229,.12);

border-color:#c7d2fe;

}

.blog-card span{

letter-spacing:.5px;

}

.blog-card h3{

transition:.3s;

}

.blog-card:hover h3{

color:#4f46e5;

}

.portfolio-btn{
    box-shadow:0 15px 35px rgba(79,70,229,.25);
}

.portfolio-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(79,70,229,.35);
}

.group:hover img{
    transform:scale(1.08);
}

.group{
    transition:all .45s ease;
}

.group:hover{
    border-color:#c7d2fe;
}

.pagination nav{
    display:flex;
    justify-content:center;
}

.pagination svg{
    width:18px;
    height:18px;
}

.service-btn{
    box-shadow:0 15px 35px rgba(79,70,229,.25);
}

.service-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 45px rgba(79,70,229,.35);
}

.group{
    transition:all .45s ease;
}

.group:hover{
    border-color:#c7d2fe;
}

.group:hover img{
    transform:scale(1.08);
}

.pagination nav{
    display:flex;
    justify-content:center;
}

.pagination svg{
    width:18px;
    height:18px;
}
.counter-card{
    transition:.45s ease;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.counter-card:hover{
    box-shadow:0 35px 80px rgba(79,70,229,.35);
}

.counter-icon{
    transition:.45s ease;
}

.counter-card:hover .counter-icon{
    transform:rotateY(180deg) scale(1.08);
    box-shadow:0 20px 45px rgba(99,102,241,.45);
}

.counter-card h3{
    letter-spacing:-2px;
}

.counter-card:hover h3{
    color:#fff;
}

.counter-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;
    background:linear-gradient(135deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,0));
    opacity:0;
    transition:.45s;
}

.counter-card:hover::before{
    opacity:1;
}
section img{
    transform:scale(1.08);
    animation:bannerZoom 18s linear infinite alternate;
}

@keyframes bannerZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1.18);

    }

}

.backdrop-blur-xl{

    backdrop-filter:blur(18px);

}

/* ==========================================
   PREMIUM GLASS HEADER
========================================== */

#siteHeader{
    transition:all .4s ease;
}

#siteHeader.scrolled{

    transform:translateY(-8px);

}

.header-glass{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.30);

    box-shadow:
        0 20px 60px rgba(15,23,42,.08),
        0 8px 25px rgba(99,102,241,.08);

    transition:.4s;

}

#siteHeader.scrolled .header-glass{

    background:rgba(255,255,255,.94);

    box-shadow:
        0 20px 60px rgba(0,0,0,.12);

}

/* ==========================================
   DESKTOP MENU
========================================== */

.menu-link{

    position:relative;

    display:flex;

    align-items:center;

    padding:12px 18px;

    border-radius:999px;

    color:#374151;

    font-weight:600;

    transition:.35s;

}

.menu-link:hover{

    color:#4f46e5;

    background:#eef2ff;

}

/* Underline */

.menu-link::after{

    content:"";

    position:absolute;

    left:18px;

    right:18px;

    bottom:8px;

    height:2px;

    border-radius:50px;

    background:#4f46e5;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.menu-link:hover::after{

    transform:scaleX(1);

}

/* Active */

.menu-active{

    background:linear-gradient(135deg,#eef2ff,#e0e7ff);

    color:#4338ca;

    box-shadow:0 10px 25px rgba(79,70,229,.12);

}

.menu-active::after{

    transform:scaleX(1);

}

/* ==========================================
   CTA BUTTON
========================================== */

.header-glass .group{

    transition:.35s;

}

.header-glass .group:hover{

    box-shadow:
    0 20px 40px rgba(79,70,229,.35);

}

/* ==========================================
   LOGO
========================================== */

.header-glass img{

    transition:.45s;

}

.header-glass img:hover{

    transform:scale(1.05);

}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu-link{

    display:flex;

    align-items:center;

    gap:14px;

    padding:15px 18px;

    border-radius:16px;

    color:#374151;

    font-weight:600;

    transition:.35s;

}

.mobile-menu-link:hover{

    background:#eef2ff;

    color:#4f46e5;

    transform:translateX(6px);

}

.mobile-active{

    background:linear-gradient(135deg,#eef2ff,#e0e7ff);

    color:#4338ca;

}

/* ==========================================
   ICONS
========================================== */

.mobile-menu-link iconify-icon{

    font-size:22px;

    transition:.35s;

}

.mobile-menu-link:hover iconify-icon{

    transform:rotate(-10deg) scale(1.15);

}

/* ==========================================
   BUTTON HOVER
========================================== */

button{

    transition:.35s;

}


/* ==========================================
   SMOOTH
========================================== */

a{

    transition:.35s;

}

img{

    transition:.45s;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1024px){

    .header-glass{

        border-radius:22px;

    }

}

@media(max-width:640px){

    .header-glass{

        border-radius:18px;

    }

    .menu-link{

        padding:10px 14px;

    }

}