/* =========================================================
   ROOT
========================================================= */

:root{
    --primary:#0d6efd;
    --primary-dark:#0757c9;
    --secondary:#081b36;
    --dark:#071426;
    --text:#536174;
    --white:#ffffff;
    --light:#f5f8fc;
    --border:#e5ebf3;
    --shadow:0 20px 60px rgba(7,20,38,.10);
    --radius:16px;
    --transition:all .35s ease;
}


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    font-family:inherit;
}

.container{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
}

.section-padding{
    padding:110px 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:20px 0;
    transition:var(--transition);
}

.site-header.scrolled{
    position:fixed;
    padding:12px 0;
    background:rgba(7,20,38,.96);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}


/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:11px;
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:20px;
    font-weight:700;
    white-space:nowrap;
}


.logo-icon{
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:linear-gradient(135deg,#0d6efd,#5aa2ff);
    color:#fff;
    font-size:14px;
    font-weight:800;
    box-shadow:0 8px 25px rgba(13,110,253,.30);
}


/* NAVIGATION */

.main-navigation{
    display:flex;
    align-items:center;
    gap:29px;
}

.main-navigation>a,
.nav-dropdown>a{
    position:relative;
    display:flex;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.85);
    font-size:14px;
    font-weight:500;
    transition:var(--transition);
}

.main-navigation>a:hover,
.main-navigation>a.active,
.nav-dropdown>a:hover{
    color:#fff;
}

.main-navigation>a::after,
.nav-dropdown>a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#4d9aff;
    transition:var(--transition);
}

.main-navigation>a:hover::after,
.main-navigation>a.active::after,
.nav-dropdown>a:hover::after{
    width:100%;
}


/* DROPDOWN */

.nav-dropdown{
    position:relative;
    padding:10px 0;
}

.nav-dropdown>a i{
    font-size:10px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:-20px;
    width:230px;
    padding:12px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:var(--transition);
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:11px 14px;
    border-radius:8px;
    color:#344154;
    font-size:13px;
    transition:var(--transition);
}

.dropdown-menu a:hover{
    color:var(--primary);
    background:#f1f6ff;
    padding-left:19px;
}


/* HEADER BUTTON */

.header-btn{
    display:flex;
    align-items:center;
    gap:9px;
    padding:12px 20px;
    border-radius:8px;
    background:var(--primary);
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:var(--transition);
}

.header-btn:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-2px);
}

.header-btn i{
    font-size:11px;
}


/* MOBILE TOGGLE */

.mobile-toggle{
    display:none;
    width:43px;
    height:43px;
    padding:9px;
    border:0;
    border-radius:8px;
    background:var(--primary);
    cursor:pointer;
}

.mobile-toggle span{
    display:block;
    width:24px;
    height:2px;
    margin:5px auto;
    background:#fff;
    transition:var(--transition);
}

.mobile-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu{
    display:none;
}


/* =========================================================
   HERO
========================================================= */

.hero-slider{
    position:relative;
    height:800px;
    min-height:700px;
    overflow:hidden;
    background:#061326;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .9s ease,visibility .9s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.08);
    transition:transform 6s ease;
}

.hero-slide.active .hero-bg img{
    transform:scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(90deg,
        rgba(3,14,29,.94) 0%,
        rgba(3,14,29,.80) 42%,
        rgba(3,14,29,.35) 100%);
}

.hero-container{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    z-index:3;
}

.hero-content{
    max-width:760px;
    padding-top:55px;
    transform:translateY(30px);
    opacity:0;
    transition:all 1s ease .3s;
}

.hero-slide.active .hero-content{
    transform:translateY(0);
    opacity:1;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:22px;
    padding:8px 14px;
    border:1px solid rgba(110,171,255,.35);
    border-radius:50px;
    background:rgba(13,110,253,.12);
    color:#8fc1ff;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.hero-tag i{
    color:#57a0ff;
}

.hero-content h1{
    margin-bottom:25px;
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:clamp(44px,5.2vw,70px);
    font-weight:800;
    line-height:1.12;
    letter-spacing:-2px;
}

.hero-content h1 span{
    color:#58a2ff;
}

.hero-content>p{
    max-width:670px;
    margin-bottom:34px;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 24px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 12px 30px rgba(13,110,253,.25);
}

.btn-primary:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-3px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    background:rgba(255,255,255,.04);
}

.btn-outline:hover{
    border-color:#fff;
    background:#fff;
    color:var(--dark);
    transform:translateY(-3px);
}

.hero-trust{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:52px;
}

.hero-trust-item{
    display:flex;
    flex-direction:column;
}

.hero-trust-item strong{
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:24px;
    line-height:1.2;
}

.hero-trust-item span{
    color:rgba(255,255,255,.58);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.hero-divider{
    width:1px;
    height:38px;
    background:rgba(255,255,255,.2);
}

.hero-features{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.75);
    font-size:13px;
}

.hero-features i{
    color:#52a1ff;
    font-size:12px;
}


/* SLIDER BUTTONS */

.slider-arrow{
    position:absolute;
    top:50%;
    z-index:10;
    width:50px;
    height:50px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    background:rgba(0,0,0,.12);
    color:#fff;
    cursor:pointer;
    transform:translateY(-50%);
    transition:var(--transition);
}

.slider-arrow:hover{
    background:#fff;
    color:var(--primary);
    border-color:#fff;
}

.slider-prev{
    left:30px;
}

.slider-next{
    right:30px;
}


/* SLIDER DOTS */

.slider-dots{
    position:absolute;
    left:50%;
    bottom:40px;
    z-index:10;
    display:flex;
    align-items:center;
    gap:8px;
    transform:translateX(-50%);
}

.slider-dot{
    width:9px;
    height:9px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    cursor:pointer;
    transition:var(--transition);
}

.slider-dot.active{
    width:28px;
    border-radius:20px;
    background:#fff;
}


/* HERO SCROLL */

.hero-scroll{
    position:absolute;
    right:30px;
    bottom:35px;
    z-index:10;
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.5);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    writing-mode:vertical-rl;
}

.hero-scroll i{
    color:#64a9ff;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-label{
    display:inline-block;
    margin-bottom:13px;
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.section-heading{
    max-width:650px;
    margin-bottom:50px;
}

.section-heading.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.section-heading h2,
.about-content h2,
.why-content h2{
    margin-bottom:18px;
    color:var(--dark);
    font-family:"Poppins",sans-serif;
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-1px;
}

.section-heading h2 span,
.about-content h2 span,
.why-content h2 span{
    color:var(--primary);
}

.section-heading p{
    max-width:600px;
    color:#687587;
    font-size:15px;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section{
    width:100%;
    padding:100px 30px;
    background:#fff;
    overflow:hidden;
}

.about-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:55px;
}


/* =========================================================
   LEFT IMAGE AREA
========================================================= */

.about-images{
    width:52%;
    flex-shrink:0;
    position:relative;
    min-height:790px;
}

.about-image{
    position:absolute;
    overflow:hidden;
    border-radius:0;
}

.about-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}


/* TOP IMAGE */

.about-image-one{
    top:0;
    left:0;
    width:64%;
    height:500px;
    border-radius:0 32px 0 32px;
}


/* BOTTOM IMAGE */

.about-image-two{
    top:485px;
    right:0;
    width:86%;
    height:430px;
    border:10px solid #fff;
    border-radius:28px 0 15px 0;
    z-index:2;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.experience-badge{
    position:absolute;
    top:55px;
    left:40%;
    z-index:5;
    width:120px;
    height:295px;
    background:#302df0;
    border-radius:8px 8px 60px 60px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    box-shadow:0 5px 15px rgba(48,45,240,.12);
    animation: experienceBlink 1.8s ease-in-out infinite;
    transform-origin:center bottom;
}


@keyframes experienceBlink{

    0%{
        transform:scale(1);
        filter:brightness(1);
        box-shadow:0 5px 15px rgba(48,45,240,.12);
    }

    50%{
        transform:scale(1.035);
        filter:brightness(1.08);
        box-shadow:
            0 0 8px rgba(48,45,240,.35),
            0 0 22px rgba(48,45,240,.22),
            0 8px 25px rgba(48,45,240,.15);
    }

    100%{
        transform:scale(1);
        filter:brightness(1);
        box-shadow:0 5px 15px rgba(48,45,240,.12);
    }

}

/* EXPERIENCE TEXT */

.experience-text{
    width:100%;
    height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    font-weight:600;
    line-height:1.1;
    text-align:center;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    letter-spacing:.5px;
}


/* EXPERIENCE NUMBER */

.experience-number{
    width:94px;
    height:94px;
    margin-top:0;
    border-radius:50%;
    background:#fff;
    color:#302df0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    font-weight:700;
    line-height:1;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-content{
    flex:1;
    padding-top:3px;
    min-width:0;
}


/* SMALL TITLE */

.about-small-title{
    display:block;
    margin-bottom:48px;
    color:#302df0;
    font-size:20px;
    font-weight:700;
    line-height:1;
    text-align:center;
}


/* HEADING */

.about-content h2{
    margin:0 0 24px;
    color:#444;
    font-size:34px;
    font-weight:700;
    line-height:1.35;
    letter-spacing:-.5px;
}

.about-content h2 span{
    color:#444;
}


/* PARAGRAPHS */

.about-content p{
    margin:0 0 10px;
    color:#555;
    font-size:16px;
    font-weight:400;
    line-height:1.55;
    letter-spacing:.1px;
}

.about-content p strong{
    color:#444;
    font-weight:700;
}


/* =========================================================
   FEATURES
========================================================= */

.about-features{
    width:100%;
    margin-top:75px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.about-feature{
    flex:1;
    display:flex;
    align-items:center;
    gap:25px;
    min-width:0;
}


/* FEATURE ICON */

.feature-icon{
    width:72px;
    height:72px;
    flex-shrink:0;
    border-radius:50%;
    background:#29c1e3;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#063b4c;
    font-size:27px;
}

.feature-text{
    flex:1;
    min-width:0;
}

.feature-text h4{
    margin:0;
    color:#444;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.about-bottom{
    width:100%;
    margin-top:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}


/* BUTTON */

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:205px;
    height:50px;
    padding:0 25px;
    border-radius:3px;
    background:#302df0;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.about-btn:hover{
    background:#211ed0;
    transform:translateY(-2px);
}


/* CONTACT */

.about-contact{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-icon{
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:4px;
    background:#302df0;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.about-contact strong{
    color:#444;
    font-size:21px;
    font-weight:600;
    white-space:nowrap;
}






/* =========================================================
   CLIENT LOGO SECTION
========================================================= */

.client-logo-section{
       width: 100%;
    padding: 32px 45px;
    background: #f7f9fc;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
    overflow: hidden;
    top: 35px;
    position: relative;
}


/* =========================================================
   SLIDER
========================================================= */

.client-logo-slider{
    width:100%;
    height:95px;
    position:relative;
    display:flex;
    align-items:center;
}


/* =========================================================
   LOGO VIEWPORT
========================================================= */

.client-logo-track{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    padding:0 55px;
    overflow:hidden;
}


/* =========================================================
   INDIVIDUAL LOGO
========================================================= */

.client-logo{
    width:170px;
    height:75px;
    flex:0 0 170px;
    display:flex;
    align-items:center;
    justify-content:center;
}


.client-logo img{
    width:100%;
    max-width:155px;
    height:auto;
    max-height:65px;
    object-fit:contain;
    display:block;
    filter:grayscale(100%);
    opacity:.9;
    transition:
        filter .3s ease,
        opacity .3s ease,
        transform .3s ease;
}


.client-logo:hover img{
    filter:grayscale(0);
    opacity:1;
    transform:scale(1.05);
}


/* =========================================================
   ARROWS
========================================================= */

.logo-arrow{
    position:absolute;
    top:50%;
    width:38px;
    height:42px;
    padding:0;
    border:0;
    background:transparent;
    color:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:10;
    transform:translateY(-50%);
    transition:
        color .3s ease,
        transform .3s ease;
}


/* CSS ARROW */

.logo-arrow::before{
    content:"";
    width:13px;
    height:13px;
    border-top:1.5px solid currentColor;
    border-right:1.5px solid currentColor;
    display:block;
    transition:.3s ease;
}


/* =========================================================
   PREVIOUS
========================================================= */

.logo-prev{
    left:0;
}


.logo-prev::before{
    transform:rotate(-135deg);
    margin-left:6px;
}


/* =========================================================
   NEXT
========================================================= */

.logo-next{
    right:0;
}


.logo-next::before{
    transform:rotate(45deg);
    margin-right:6px;
}


/* =========================================================
   ARROW HOVER
========================================================= */

.logo-prev:hover{
    color:#302df0;
    transform:translate(-3px,-50%);
}


.logo-next:hover{
    color:#302df0;
    transform:translate(3px,-50%);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section{
    background:var(--light);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    position:relative;
    overflow:hidden;
    padding:34px 30px;
    border:1px solid var(--border);
    border-radius:15px;
    background:#fff;
    transition:var(--transition);
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:var(--transition);
}

.service-card:hover{
    border-color:transparent;
    box-shadow:var(--shadow);
    transform:translateY(-7px);
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:12px;
    background:#edf5ff;
    color:var(--primary);
    font-size:21px;
    transition:var(--transition);
}

.service-card:hover .service-icon{
    background:var(--primary);
    color:#fff;
    transform:rotate(-5deg);
}

.service-number{
    position:absolute;
    top:28px;
    right:25px;
    color:#e8edf4;
    font-family:"Poppins",sans-serif;
    font-size:38px;
    font-weight:800;
}

.service-card h3{
    position:relative;
    margin-bottom:12px;
    color:var(--dark);
    font-family:"Poppins",sans-serif;
    font-size:19px;
}

.service-card p{
    margin-bottom:20px;
    font-size:13px;
    line-height:1.8;
}

.service-card>a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
}

.service-card>a i{
    transition:var(--transition);
}

.service-card>a:hover i{
    transform:translateX(5px);
}

.services-bottom{
    margin-top:40px;
    text-align:center;
}

.btn-dark{
    background:var(--dark);
    color:#fff;
}

.btn-dark:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section{
    width:100%;
    padding:55px 5%;
    background:#fff;
}

.stats-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:stretch;
}


/* =========================================================
   STAT ITEM
========================================================= */

.stat-item{
    position:relative;
    flex:1;
    padding:10px 25px;
    text-align:center;
}


/* =========================================================
   SEPARATOR
========================================================= */

.stat-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:15%;
    right:0;
    width:1px;
    height:70%;
    background:#ddd;
}


/* =========================================================
   ICON
========================================================= */

.stat-icon{
    width:62px;
    height:62px;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2929ed;
    color:#fff;
}

.stat-icon i{
    font-size:25px;
}


/* =========================================================
   NUMBER
========================================================= */

.stat-number{
    display:block;
    margin:0 0 7px;
    color:#2929ed;
    font-size:34px;
    line-height:1;
    font-weight:700;
}


/* =========================================================
   TEXT
========================================================= */

.stat-item span{
    display:block;
    color:#555;
    font-size:16px;
    line-height:1.4;
}


/* =========================================================
   HOVER
========================================================= */

.stat-item{
    transition:transform .3s ease;
}

.stat-item:hover{
    transform:translateY(-5px);
}

.stat-icon{
    transition:.3s ease;
}

.stat-item:hover .stat-icon{
    transform:scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .stats-section{
        padding:45px 25px;
    }

    .stats-container{
        flex-wrap:wrap;
    }

    .stat-item{
        flex:0 0 50%;
        padding:20px 15px;
    }

    .stat-item:nth-child(2)::after{
        display:none;
    }

    .stat-item:nth-child(3)::after{
        display:block;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .stats-section{
        padding:40px 15px;
    }

    .stats-container{
        display:flex;
        flex-wrap:wrap;
    }

    .stat-item{
        flex:0 0 50%;
        padding:18px 8px;
    }

    .stat-item:nth-child(2)::after{
        display:none;
    }

    .stat-item:nth-child(3)::after{
        display:block;
    }

    .stat-icon{
        width:54px;
        height:54px;
        margin-bottom:12px;
    }

    .stat-icon i{
        font-size:22px;
    }

    .stat-number{
        font-size:28px;
    }

    .stat-item span{
        font-size:14px;
    }

}




/* =========================================================
   CONSULTATION CTA
========================================================= */

.consultation-section {
    width: 100%;
    margin: 0;
    padding: 0 0 70px;
    box-sizing: border-box;
    background: #fff;
}

.consultation-box {
    width: 84%;
    max-width: 1380px;
    min-height: 360px;
    margin: 0 auto;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 55px 8%;

    border-radius: 45px;
    box-sizing: border-box;
}

/* Background Image */

.consultation-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

/* Overlay */

.consultation-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(3, 82, 126, 0.84);

    z-index: 1;
}

/* Consultation Content */

.consultation-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.consultation-content span {
    display: block;

    margin: 0 0 18px;
    padding: 0;

    color: #ffffff;

    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}

.consultation-content h2 {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

/* Consultation Button */

.consultation-btn {
    position: relative;
    z-index: 2;

    width: 190px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #287fe0;
    color: #ffffff;

    border-radius: 14px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    box-sizing: border-box;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.consultation-btn:hover {
    background: #176bc5;
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   TEAM SECTION
========================================================= */

.team-section {
    width: 100%;
    margin: 0;
    padding: 75px 0 90px;

    background: #f6f8fa;

    box-sizing: border-box;
}

.team-container {
    width: 84%;
    max-width: 1450px;

    margin: 0 auto;
}


/* =========================================================
   TEAM HEADING
========================================================= */

.team-heading {
    width: 100%;

    margin: 0 0 45px;

    text-align: center;
}

.team-heading span {
    display: block;

    margin: 0 0 12px;

    color: #303d4d;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.3px;
}

.team-heading h2 {
    margin: 0;
    padding: 0;

    color: #303d4d;

    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   TEAM MEMBERS
========================================================= */

.team-members {
    width: 100%;

    display: flex;
    align-items: stretch;

    gap: 20px;
}


/* =========================================================
   TEAM CARD
========================================================= */

.team-card {
    position: relative;

    flex: 1;
    min-width: 0;

    background: #ffffff;

    border-radius: 25px;

    overflow: hidden;

    cursor: pointer;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.team-image {
    width: 100%;
    height: 430px;

    position: relative;

    overflow: hidden;

    background: #e9edf1;
}

.team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.55s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.06);
}


/* =========================================================
   TEAM HOVER OVERLAY
========================================================= */

.team-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 30px 25px;

    box-sizing: border-box;

    background:
        linear-gradient(
            to top,
            rgba(3, 82, 126, 0.96) 0%,
            rgba(3, 82, 126, 0.78) 40%,
            rgba(3, 82, 126, 0.20) 75%,
            rgba(3, 82, 126, 0) 100%
        );

    opacity: 0;

    transition:
        opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}


/* =========================================================
   OVERLAY CONTENT
========================================================= */

.team-overlay-content {
    width: 100%;

    text-align: center;

    color: #ffffff;

    transform: translateY(35px);

    transition:
        transform 0.4s ease;
}

.team-card:hover .team-overlay-content {
    transform: translateY(0);
}

.team-overlay-content h3 {
    margin: 0 0 7px;
    padding: 0;

    color: #ffffff;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
}

.team-overlay-content span {
    display: block;

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.team-overlay-content p {
    max-width: 430px;

    margin: 0 auto 18px;
    padding: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   TEAM SOCIAL ICONS
========================================================= */

.team-social {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.team-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #287fe0;

    border-radius: 50%;

    text-decoration: none;

    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.team-social a:hover {
    background: #287fe0;
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TEAM MODAL BACKDROP
========================================================= */

.team-modal {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.72);

    opacity: 0;
    visibility: hidden;

    z-index: 99999;

    overflow-y: auto;

    box-sizing: border-box;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* JS SE active class add karega */

.team-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MODAL BOX
========================================================= */

.team-modal-box {
    width: 100%;
    max-width: 1050px;

    max-height: 90vh;

    position: relative;

    display: flex;

    background: #ffffff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(35px) scale(0.96);

    transition:
        transform 0.35s ease;
}

.team-modal.active .team-modal-box {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL CLOSE BUTTON
========================================================= */

.team-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: #ffffff;
    color: #303d4d;

    border-radius: 50%;

    font-size: 28px;
    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.team-modal-close:hover {
    background: #287fe0;
    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.team-modal-image {
    width: 42%;
    min-height: 570px;

    flex-shrink: 0;

    overflow: hidden;

    background: #edf1f4;
}

.team-modal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.team-modal-content {
    width: 58%;

    padding: 60px 55px 45px;

    overflow-y: auto;

    box-sizing: border-box;
}

.team-modal-content h2 {
    margin: 0 0 8px;
    padding: 0;

    color: #303d4d;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.modal-designation {
    display: block;

    margin: 0 0 25px;

    color: #287fe0;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.modal-description {
    margin: 0 0 28px;
    padding: 0;

    color: #666666;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================================
   MODAL CONTACT
========================================================= */

.modal-contact-row {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 0 0 13px;

    color: #555555;

    font-size: 15px;
    line-height: 1.5;
}

.modal-contact-row strong {
    min-width: 55px;

    color: #303d4d;

    font-weight: 700;
}

.modal-contact-row span {
    color: #666666;

    word-break: break-word;
}


/* =========================================================
   MODAL SOCIAL
========================================================= */

.modal-social {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 28px;
}

.modal-social a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef5fb;
    color: #287fe0;

    border-radius: 50%;

    text-decoration: none;

    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.modal-social a:hover {
    background: #287fe0;
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TABLET - 1200px
========================================================= */

@media (max-width: 1200px) {

    .consultation-box {
        width: 88%;
        min-height: 340px;

        padding: 50px 7%;
    }

    .consultation-content h2 {
        font-size: 36px;
    }

    .team-container {
        width: 88%;
    }

    .team-image {
        height: 380px;
    }

    .team-overlay-content p {
        font-size: 13px;
    }

    .team-modal-box {
        max-width: 920px;
    }

    .team-modal-image {
        min-height: 520px;
    }

    .team-modal-content {
        padding: 50px 40px 40px;
    }
}


/* =========================================================
   TABLET - 900px
========================================================= */

@media (max-width: 900px) {

    .consultation-section {
        padding-bottom: 55px;
    }

    .consultation-box {
        width: 90%;
        min-height: 320px;

        padding: 45px 6%;

        gap: 30px;

        border-radius: 35px;
    }

    .consultation-content span {
        font-size: 19px;
    }

    .consultation-content h2 {
        font-size: 31px;
    }

    .consultation-btn {
        width: 170px;
        height: 54px;

        font-size: 15px;
    }


    /* TEAM */

    .team-section {
        padding: 60px 0 70px;
    }

    .team-container {
        width: 90%;
    }

    .team-heading {
        margin-bottom: 35px;
    }

    .team-heading span {
        font-size: 18px;
    }

    .team-heading h2 {
        font-size: 29px;
    }

    .team-members {
        gap: 15px;
    }

    .team-image {
        height: 330px;
    }

    .team-overlay {
        padding: 22px 15px;
    }

    .team-overlay-content h3 {
        font-size: 19px;
    }

    .team-overlay-content span {
        font-size: 13px;
    }

    .team-overlay-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .team-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }


    /* MODAL */

    .team-modal {
        padding: 20px;
    }

    .team-modal-box {
        max-width: 750px;

        max-height: 92vh;

        display: block;
    }

    .team-modal-image {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }

    .team-modal-content {
        width: 100%;

        padding: 35px 35px 40px;
    }

    .team-modal-content h2 {
        font-size: 28px;
    }
}


/* =========================================================
   MOBILE - 700px
========================================================= */

@media (max-width: 700px) {

    .consultation-section {
        padding-bottom: 45px;
    }

    .consultation-box {
        width: 92%;
        min-height: 320px;

        padding: 40px 28px;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 25px;

        border-radius: 30px;
    }

    .consultation-content {
        max-width: 100%;
    }

    .consultation-content span {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .consultation-content h2 {
        font-size: 27px;
    }

    .consultation-btn {
        width: 170px;
        height: 52px;

        font-size: 15px;
    }


    /* TEAM */

    .team-section {
        padding: 50px 0 60px;
    }

    .team-container {
        width: 90%;
    }

    .team-heading {
        margin-bottom: 30px;
    }

    .team-heading span {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .team-heading h2 {
        font-size: 25px;
        line-height: 1.35;
    }

    .team-members {
        flex-direction: column;
        gap: 25px;
    }

    .team-card {
        width: 100%;
        flex: none;
    }

    .team-image {
        height: 380px;
    }

    /*
       Mobile par hover nahi hota,
       isliye overlay tap/click ke baad JS se
       .active add kar sakta hai.
    */

    .team-card.active .team-overlay {
        opacity: 1;
    }

    .team-card.active .team-overlay-content {
        transform: translateY(0);
    }

    .team-overlay {
        padding: 30px 22px;
    }

    .team-overlay-content h3 {
        font-size: 21px;
    }

    .team-overlay-content span {
        font-size: 14px;
    }

    .team-overlay-content p {
        font-size: 13px;
    }


    /* MODAL */

    .team-modal {
        padding: 15px;
        align-items: flex-start;
    }

    .team-modal-box {
        width: 100%;

        max-height: 94vh;

        margin-top: 10px;

        border-radius: 20px;
    }

    .team-modal-image {
        height: 280px;
        min-height: 280px;
    }

    .team-modal-content {
        padding: 30px 25px 35px;
    }

    .team-modal-content h2 {
        font-size: 25px;
    }

    .modal-designation {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .modal-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .modal-contact-row {
        font-size: 14px;
    }

    .modal-social {
        margin-top: 22px;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .consultation-box {
        width: 94%;
        min-height: 290px;

        padding: 35px 22px;

        border-radius: 25px;
    }

    .consultation-content span {
        font-size: 17px;
    }

    .consultation-content h2 {
        font-size: 24px;
    }

    .consultation-btn {
        width: 160px;
        height: 50px;

        border-radius: 11px;

        font-size: 14px;
    }


    /* TEAM */

    .team-container {
        width: 92%;
    }

    .team-heading h2 {
        font-size: 22px;
    }

    .team-image {
        height: 330px;
    }

    .team-overlay {
        padding: 25px 18px;
    }

    .team-overlay-content h3 {
        font-size: 19px;
    }

    .team-overlay-content span {
        font-size: 13px;
    }

    .team-overlay-content p {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .team-social a {
        width: 34px;
        height: 34px;
    }


    /* MODAL */

    .team-modal {
        padding: 10px;
    }

    .team-modal-box {
        border-radius: 18px;
    }

    .team-modal-image {
        height: 240px;
        min-height: 240px;
    }

    .team-modal-content {
        padding: 25px 20px 30px;
    }

    .team-modal-content h2 {
        font-size: 23px;
    }

    .modal-description {
        font-size: 13px;
    }

    .modal-contact-row {
        display: block;

        margin-bottom: 12px;
    }

    .modal-contact-row strong {
        display: inline-block;
        min-width: auto;

        margin-right: 5px;
    }

    .team-modal-close {
        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;

        font-size: 24px;
    }
}


/* =========================================================
   EXTRA SMALL - 360px
========================================================= */

@media (max-width: 360px) {

    .consultation-box {
        width: 95%;

        padding: 30px 18px;
    }

    .consultation-content span {
        font-size: 16px;
    }

    .consultation-content h2 {
        font-size: 22px;
    }

    .team-heading h2 {
        font-size: 20px;
    }

    .team-image {
        height: 290px;
    }

    .team-overlay-content h3 {
        font-size: 18px;
    }

    .team-overlay-content p {
        font-size: 11px;
    }

    .team-modal-image {
        height: 210px;
        min-height: 210px;
    }

    .team-modal-content {
        padding: 22px 16px 25px;
    }

    .team-modal-content h2 {
        font-size: 21px;
    }
}





/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    width: 100%;
    padding: 70px 0 90px;
    margin: 0;
    background: #082f5f;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.pricing-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -210px;
    top: -210px;
    background: rgba(25, 103, 205, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: -180px;
    background: rgba(22, 105, 210, 0.20);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   PRICING CONTAINER
========================================================= */

.pricing-container {
    width: 82%;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   PRICING HEADING
========================================================= */

.pricing-heading {
    width: 100%;
    margin: 0 0 48px;
}

.pricing-heading span {
    display: block;
    margin: 0 0 10px;
    padding: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.pricing-heading h2 {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 700;
    line-height: 1.25;
}


/* =========================================================
   PRICING GRID
========================================================= */

.pricing-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}


/* =========================================================
   PRICING CARD
========================================================= */

.pricing-card {
    width: 100%;
    min-width: 0;

    padding: 34px 25px 30px;

    background: #ffffff;

    border-radius: 16px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   FEATURED / PURPLE CARD
========================================================= */

.pricing-card.featured,
.pricing-card.active {
    background: linear-gradient(
        145deg,
        #955df0 0%,
        #a87af5 100%
    );

    color: #ffffff;
}


/* =========================================================
   CARD TITLE
========================================================= */

.pricing-card h3 {
    margin: 0 0 25px;
    padding: 0;

    color: #303d4d;

    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.pricing-card.featured h3,
.pricing-card.active h3 {
    color: #ffffff;
}


/* =========================================================
   PRICE BOX
========================================================= */

.pricing-price {
    width: 100%;
    min-height: 72px;

    margin: 0 0 30px;
    padding: 10px 18px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    background: #0b63c7;
    color: #ffffff;

    border-radius: 50px;
}


/* Featured price */
.pricing-card.featured .pricing-price,
.pricing-card.active .pricing-price {
    background: #ffffff;
    color: #000000;
}


/* =========================================================
   CURRENCY
========================================================= */

.pricing-price .currency {
    font-size: 17px;
    font-weight: 600;

    align-self: flex-start;

    margin-top: 7px;
}


/* =========================================================
   MAIN PRICE
========================================================= */

.pricing-price strong {
    margin: 0;
    padding: 0;

    font-size: 38px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   MONTH
========================================================= */

.pricing-price small {
    margin: 9px 0 0;
    padding: 0;

    font-size: 14px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   PRICING FEATURES
========================================================= */

.pricing-features {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 11px;

    flex: 1;
}

.pricing-features li {
    margin: 0;
    padding: 0;

    color: #405064;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.45;
}

.pricing-card.featured .pricing-features li,
.pricing-card.active .pricing-features li {
    color: #ffffff;
}


/* =========================================================
   CHECK ICON - IF USED
========================================================= */

.pricing-features li i {
    margin-right: 6px;

    font-size: 13px;
}


/* =========================================================
   LEARN MORE BUTTON
========================================================= */

.pricing-btn {
    width: 155px;
    min-height: 48px;

    margin: 28px auto 0;
    padding: 10px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: #ffffff;
    color: #111111;

    border: 1px solid #e2e5e9;
    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.pricing-btn:hover {
    background: #0b63c7;
    color: #ffffff;

    border-color: #0b63c7;

    transform: translateY(-2px);
}


/* =========================================================
   FEATURED BUTTON
========================================================= */

.pricing-card.featured .pricing-btn:hover,
.pricing-card.active .pricing-btn:hover {
    background: #0b63c7;
    color: #ffffff;

    border-color: #0b63c7;
}


/* =========================================================
   OPTIONAL PRICING ICON
========================================================= */

.pricing-card .pricing-icon {
    width: 45px;
    height: 45px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 18px;
}


/* =========================================================
   OPTIONAL BADGE
========================================================= */

.pricing-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 5px 11px;

    background: #ffffff;
    color: #8052df;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   TABLET - 1200px
========================================================= */

@media (max-width: 1200px) {

    .pricing-section {
        padding: 65px 0 80px;
    }

    .pricing-container {
        width: 88%;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .pricing-price {
        min-height: 68px;
    }

    .pricing-price strong {
        font-size: 34px;
    }

    .pricing-features li {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET - 950px
========================================================= */

@media (max-width: 950px) {

    .pricing-section {
        padding: 60px 0 75px;
    }

    .pricing-container {
        width: 90%;
    }

    .pricing-heading {
        margin-bottom: 38px;
    }

    .pricing-heading span {
        font-size: 19px;
    }

    .pricing-heading h2 {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card h3 {
        font-size: 21px;
    }

    .pricing-price strong {
        font-size: 32px;
    }

    .pricing-price .currency {
        font-size: 15px;
    }

    .pricing-price small {
        font-size: 13px;
    }

    .pricing-features {
        gap: 10px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    .pricing-btn {
        width: 150px;
        min-height: 46px;
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE - 700px
========================================================= */

@media (max-width: 700px) {

    .pricing-section {
        padding: 50px 0 65px;
    }

    .pricing-container {
        width: 90%;
    }

    .pricing-heading {
        margin-bottom: 32px;
        text-align: center;
    }

    .pricing-heading span {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .pricing-heading h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
        padding: 28px 20px 30px;

        border-radius: 15px;
    }

    .pricing-card h3 {
        font-size: 21px;
        margin-bottom: 22px;
    }

    .pricing-price {
        min-height: 66px;

        margin-bottom: 25px;
        padding: 9px 15px;
    }

    .pricing-price strong {
        font-size: 32px;
    }

    .pricing-price .currency {
        font-size: 14px;
        margin-top: 6px;
    }

    .pricing-price small {
        font-size: 12px;
        margin-top: 9px;
    }

    .pricing-features {
        gap: 9px;
    }

    .pricing-features li {
        font-size: 14px;
        line-height: 1.4;
    }

    .pricing-btn {
        width: 145px;
        min-height: 45px;

        margin-top: 25px;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .pricing-section {
        padding: 45px 0 55px;
    }

    .pricing-container {
        width: 92%;
    }

    .pricing-heading {
        margin-bottom: 28px;
    }

    .pricing-heading span {
        font-size: 17px;
    }

    .pricing-heading h2 {
        font-size: 22px;
    }

    .pricing-card {
        padding: 25px 17px 28px;
    }

    .pricing-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .pricing-price {
        min-height: 62px;
        padding: 8px 12px;
        margin-bottom: 23px;
    }

    .pricing-price strong {
        font-size: 29px;
    }

    .pricing-price .currency {
        font-size: 13px;
    }

    .pricing-price small {
        font-size: 11px;
    }

    .pricing-features {
        gap: 8px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .pricing-btn {
        width: 140px;
        min-height: 43px;

        margin-top: 23px;

        font-size: 13px;
    }

    .pricing-section::before {
        width: 280px;
        height: 280px;

        right: -170px;
        top: -170px;
    }
}


/* =========================================================
   EXTRA SMALL - 360px
========================================================= */

@media (max-width: 360px) {

    .pricing-container {
        width: 94%;
    }

    .pricing-heading span {
        font-size: 16px;
    }

    .pricing-heading h2 {
        font-size: 20px;
    }

    .pricing-card h3 {
        font-size: 19px;
    }

    .pricing-price strong {
        font-size: 27px;
    }

    .pricing-price .currency {
        font-size: 12px;
    }

    .pricing-price small {
        font-size: 10px;
    }

    .pricing-features li {
        font-size: 12px;
    }

    .pricing-btn {
        width: 135px;
        min-height: 42px;
        font-size: 12px;
    }
}





/* =========================================================
   WORKING PROCESS
========================================================= */

.working-process-section{
    width:100%;
    margin:0;
    padding:18px 0 35px;
    background:#fff;
    box-sizing:border-box;
    overflow:hidden;
}

.working-process-container{
    width:96%;
    max-width:1800px;
    margin:0 auto;
}

/* HEADING */

.working-process-heading{
    text-align:center;
    margin:0 0 28px;
}

.working-process-heading span{
    display:block;
    margin:0 0 10px;
    color:#303d4d;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
}

.working-process-heading h2{
    margin:0;
    padding:0;
    color:#303d4d;
    font-size:36px;
    font-weight:700;
    line-height:1.2;
}

/* MAIN LAYOUT */

.working-process-grid{
    width:100%;
    display:grid;
    grid-template-columns:1fr 360px 1fr;
    align-items:center;
    gap:25px;
}

/* LEFT + RIGHT */

.process-left,
.process-right{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* CARD */

.process-card{
    width:100%;
    min-height:185px;
    padding:22px 28px;
    background:#16499b;
    border-radius:30px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:transform .25s ease,box-shadow .25s ease;
}

.process-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(22,73,155,.18);
}

/* CARD TITLE */

.process-card h3{
    margin:0 0 18px;
    padding:0;
    color:#d9d9d9;
    font-size:27px;
    font-weight:700;
    line-height:1.2;
}

/* CARD TEXT */

.process-card p{
    margin:0;
    padding:0;
    color:#fff;
    font-size:16px;
    font-weight:400;
    line-height:1.5;
}

/* CENTER IMAGE */

.process-center{
    width:100%;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.process-center img{
    display:block;
    width:100%;
    max-width:360px;
    height:450px;
    object-fit:contain;
    object-position:center bottom;
    margin:0 auto;
}


/* =========================================================
   1300px
========================================================= */

@media(max-width:1300px){

    .working-process-grid{
        grid-template-columns:1fr 320px 1fr;
        gap:20px;
    }

    .working-process-heading h2{
        font-size:33px;
    }

    .process-card{
        min-height:175px;
        padding:20px 24px;
    }

    .process-card h3{
        font-size:24px;
        margin-bottom:15px;
    }

    .process-card p{
        font-size:15px;
    }

    .process-center img{
        height:420px;
    }
}


/* =========================================================
   1000px
========================================================= */

@media(max-width:1000px){

    .working-process-container{
        width:94%;
    }

    .working-process-heading{
        margin-bottom:22px;
    }

    .working-process-heading span{
        font-size:19px;
        margin-bottom:8px;
    }

    .working-process-heading h2{
        font-size:30px;
    }

    .working-process-grid{
        grid-template-columns:1fr 270px 1fr;
        gap:15px;
    }

    .process-left,
    .process-right{
        gap:15px;
    }

    .process-card{
        min-height:165px;
        padding:18px 20px;
        border-radius:25px;
    }

    .process-card h3{
        font-size:21px;
        margin-bottom:12px;
    }

    .process-card p{
        font-size:14px;
        line-height:1.45;
    }

    .process-center img{
        height:370px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:750px){

    .working-process-section{
        padding:25px 0 35px;
    }

    .working-process-container{
        width:92%;
    }

    .working-process-heading{
        margin-bottom:22px;
    }

    .working-process-heading span{
        font-size:18px;
        margin-bottom:7px;
    }

    .working-process-heading h2{
        font-size:25px;
        line-height:1.25;
    }

    .working-process-grid{
        display:flex;
        flex-direction:column;
        gap:18px;
    }

    .process-left,
    .process-right{
        gap:15px;
    }

    .process-center{
        order:2;
        height:auto;
    }

    .process-left{
        order:1;
    }

    .process-right{
        order:3;
    }

    .process-card{
        min-height:auto;
        padding:20px;
        border-radius:23px;
    }

    .process-card h3{
        font-size:20px;
        margin-bottom:10px;
    }

    .process-card p{
        font-size:14px;
        line-height:1.5;
    }

    .process-center img{
        width:100%;
        max-width:280px;
        height:330px;
    }

    .desktop-break{
        display:none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .working-process-section{
        padding:22px 0 30px;
    }

    .working-process-container{
        width:92%;
    }

    .working-process-heading{
        margin-bottom:18px;
    }

    .working-process-heading span{
        font-size:17px;
    }

    .working-process-heading h2{
        font-size:22px;
    }

    .working-process-grid{
        gap:15px;
    }

    .process-left,
    .process-right{
        gap:13px;
    }

    .process-card{
        padding:18px;
        border-radius:20px;
    }

    .process-card h3{
        font-size:18px;
        line-height:1.25;
        margin-bottom:9px;
    }

    .process-card p{
        font-size:13.5px;
        line-height:1.5;
    }

    .process-center img{
        max-width:250px;
        height:290px;
    }
}










/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section{
    width:100%;
    margin:0;
    padding:60px 0 70px;
    background:#f7f9fc;
    box-sizing:border-box;
}

.faq-container{
    width:84%;
    max-width:1100px;
    margin:0 auto;
}


/* =========================================================
   FAQ HEADING
========================================================= */

.faq-heading{
    text-align:center;
    margin:0 0 35px;
}

.faq-heading span{
    display:block;
    margin:0 0 10px;

    color:#303d4d;

    font-size:19px;
    font-weight:700;
    line-height:1.3;
}

.faq-heading h2{
    margin:0 0 12px;
    padding:0;

    color:#303d4d;

    font-size:34px;
    font-weight:700;
    line-height:1.25;
}

.faq-heading p{
    max-width:650px;
    margin:0 auto;

    color:#777;

    font-size:15px;
    font-weight:400;
    line-height:1.5;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:12px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item{
    width:100%;

    background:#fff;

    border:1px solid #e4e8ee;
    border-radius:12px;

    overflow:hidden;

    box-sizing:border-box;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-item.active{
    border-color:#16499b;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question{
    width:100%;
    min-height:62px;

    padding:16px 20px;

    border:0;
    outline:0;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    text-align:left;

    cursor:pointer;

    color:#303d4d;

    font-family:inherit;

    font-size:17px;
    font-weight:600;

    line-height:1.4;

    box-sizing:border-box;
}

.faq-question span{
    flex:1;
}


/* =========================================================
   PLUS ICON
========================================================= */

.faq-question i{
    width:30px;
    height:30px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#16499b;

    font-size:13px;

    border-radius:50%;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);

    background:#16499b;
    color:#fff;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .35s ease;
}

.faq-answer p{
    margin:0;
    padding:0 20px 18px;

    color:#666;

    font-size:14.5px;
    font-weight:400;

    line-height:1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .faq-section{
        padding:50px 0 60px;
    }

    .faq-container{
        width:90%;
    }

    .faq-heading{
        margin-bottom:28px;
    }

    .faq-heading span{
        font-size:18px;
    }

    .faq-heading h2{
        font-size:30px;
    }

    .faq-question{
        font-size:16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .faq-section{
        padding:45px 0 50px;
    }

    .faq-container{
        width:92%;
    }

    .faq-heading{
        margin-bottom:24px;
    }

    .faq-heading span{
        font-size:17px;
    }

    .faq-heading h2{
        font-size:25px;
        margin-bottom:9px;
    }

    .faq-heading p{
        font-size:14px;
    }

    .faq-list{
        gap:10px;
    }

    .faq-item{
        border-radius:10px;
    }

    .faq-question{
        min-height:58px;
        padding:14px 16px;

        font-size:15px;

        gap:12px;
    }

    .faq-question i{
        width:27px;
        height:27px;
        font-size:12px;
    }

    .faq-answer p{
        padding:0 16px 16px;
        font-size:14px;
        line-height:1.55;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:400px){

    .faq-section{
        padding:40px 0 45px;
    }

    .faq-heading h2{
        font-size:22px;
    }

    .faq-heading span{
        font-size:16px;
    }

    .faq-question{
        padding:13px 14px;
        font-size:14px;
    }

    .faq-answer p{
        padding:0 14px 15px;
        font-size:13.5px;
    }
}

/* =========================================================
   APPOINTMENT + CONTACT SECTION
========================================================= */

.appointment-section {
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #e8f7ff;
    box-sizing: border-box;
}

.appointment-container {
    width: 82%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;

    box-sizing: border-box;
}


/* =========================================================
   APPOINTMENT FORM BOX
========================================================= */

.appointment-form-box {
    width: 100%;
    margin: 0;
    padding: 18px 20px 22px;

    background: #ffffff;
    border-radius: 24px;

    box-sizing: border-box;
}

.appointment-subtitle {
    display: block;
    margin: 0 0 8px;

    text-align: center;

    color: #0879ee;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.appointment-form-box h2 {
    margin: 0 0 22px;
    padding: 0;

    text-align: center;

    color: #303d4d;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   FORM
========================================================= */

.appointment-form-box form {
    width: 100%;
    margin: 0;
    padding: 0;
}

.appointment-form-box input,
.appointment-form-box select,
.appointment-form-box textarea {
    width: 100%;
    display: block;

    margin: 0 0 12px;
    padding: 0 14px;

    border: 1px solid #d0d0d0;
    border-radius: 4px;

    background: #ffffff;
    color: #303d4d;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;

    outline: none;
    box-sizing: border-box;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.appointment-form-box input,
.appointment-form-box select {
    height: 46px;
}

.appointment-form-box textarea {
    height: 115px;

    padding: 12px 14px;

    resize: vertical;
}

.appointment-form-box input::placeholder,
.appointment-form-box textarea::placeholder {
    color: #999999;
}

.appointment-form-box select {
    cursor: pointer;
}

.appointment-form-box input:focus,
.appointment-form-box select:focus,
.appointment-form-box textarea:focus {
    border-color: #0879ee;
    box-shadow: 0 0 0 2px rgba(8, 121, 238, 0.07);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.appointment-form-box button {
    width: 135px;
    height: 42px;

    display: block;

    margin: 3px auto 0;

    border: 0;
    border-radius: 6px;

    background: #0879ee;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: background 0.2s ease,
                transform 0.2s ease;
}

.appointment-form-box button:hover {
    background: #0567ce;
    transform: translateY(-1px);
}


/* =========================================================
   CONTACT BOX
========================================================= */

.appointment-contact-box {
    width: 100%;
    margin: 0;
    padding: 5px 0;

    box-sizing: border-box;
}

.contact-subtitle {
    display: block;

    margin: 0 0 10px;

    color: #0879ee;

    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.appointment-contact-box h2 {
    margin: 0 0 17px;
    padding: 0;

    color: #303d4d;

    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
}

.contact-intro {
    max-width: 540px;

    margin: 0 0 24px;
    padding: 0;

    color: #303d4d;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 16px;

    margin: 0 0 18px;
    padding: 0;

    box-sizing: border-box;
}

.contact-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {
    width: 64px;
    height: 58px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0879ee;

    border-radius: 8px;

    color: #ffffff;

    box-sizing: border-box;
}

.contact-icon i {
    font-size: 22px;
    line-height: 1;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    min-width: 0;
}

.contact-details h4 {
    margin: 0 0 5px;
    padding: 0;

    color: #303d4d;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.contact-details a {
    display: inline-block;

    margin: 0;
    padding: 0;

    color: #303d4d;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;

    text-decoration: none;
    word-break: break-word;

    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #0879ee;
}

.contact-details p {
    margin: 0;
    padding: 0;

    color: #303d4d;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .appointment-container {
        width: 88%;
        gap: 30px;
    }

    .appointment-form-box h2 {
        font-size: 28px;
    }

    .appointment-contact-box h2 {
        font-size: 29px;
    }

    .contact-icon {
        width: 60px;
        height: 55px;
        flex-basis: 60px;
    }

    .contact-icon i {
        font-size: 21px;
    }

    .contact-details a {
        font-size: 16px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .appointment-section {
        padding: 35px 0;
    }

    .appointment-container {
        width: 88%;

        grid-template-columns: 1fr;

        gap: 32px;
    }

    .appointment-form-box {
        padding: 18px 20px 22px;
    }

    .appointment-form-box h2 {
        font-size: 28px;
    }

    .appointment-contact-box {
        padding: 0;
    }

    .appointment-contact-box h2 {
        font-size: 29px;
    }

    .contact-intro {
        max-width: 650px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .appointment-section {
        padding: 30px 0;
    }

    .appointment-container {
        width: 92%;
        gap: 28px;
    }


    /* FORM */

    .appointment-form-box {
        padding: 16px 15px 20px;
        border-radius: 20px;
    }

    .appointment-subtitle,
    .contact-subtitle {
        font-size: 17px;
    }

    .appointment-form-box h2 {
        margin-bottom: 18px;
        font-size: 25px;
    }

    .appointment-form-box input,
    .appointment-form-box select {
        height: 44px;
        margin-bottom: 11px;

        padding: 0 12px;

        font-size: 14px;
    }

    .appointment-form-box textarea {
        height: 105px;
        margin-bottom: 13px;

        padding: 11px 12px;

        font-size: 14px;
    }

    .appointment-form-box button {
        width: 130px;
        height: 40px;

        font-size: 13px;
    }


    /* CONTACT */

    .appointment-contact-box h2 {
        margin-bottom: 15px;

        font-size: 26px;
        line-height: 1.15;
    }

    .contact-intro {
        margin-bottom: 21px;

        font-size: 14px;
        line-height: 1.5;
    }

    .contact-item {
        gap: 13px;
        margin-bottom: 16px;
    }

    .contact-icon {
        width: 58px;
        height: 52px;

        flex: 0 0 58px;

        border-radius: 7px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-details h4 {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .contact-details a {
        font-size: 15px;
    }

    .contact-details p {
        font-size: 13px;
        line-height: 1.35;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .appointment-section {
        padding: 26px 0;
    }

    .appointment-container {
        width: 94%;
        gap: 25px;
    }

    .appointment-form-box {
        padding: 15px 12px 18px;
    }

    .appointment-subtitle,
    .contact-subtitle {
        font-size: 16px;
    }

    .appointment-form-box h2 {
        font-size: 23px;
    }

    .appointment-contact-box h2 {
        font-size: 24px;
    }

    .contact-item {
        gap: 11px;
    }

    .contact-icon {
        width: 54px;
        height: 49px;

        flex-basis: 54px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-details a {
        font-size: 14px;
    }

    .contact-details p {
        font-size: 12px;
    }
}




/* =========================================================
   NEWS & BLOG SECTION
========================================================= */

.news-section {
    width: 100%;
    margin: 0;
    padding: 35px 0 45px;
    background: #ffffff;
    box-sizing: border-box;
}

.news-container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.news-heading {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    text-align: center;
}

.news-heading span {
    display: block;

    margin: 0 0 7px;

    color: #0879ee;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.news-heading h2 {
    margin: 0;
    padding: 0;

    color: #303d4d;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   BLOG GRID
========================================================= */

.news-grid {
    width: 100%;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 34px;

    box-sizing: border-box;
}


/* =========================================================
   BLOG CARD
========================================================= */

.news-card {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.news-image {
    width: 100%;
    height: 365px;

    margin: 0 0 14px;

    overflow: hidden;

    border-radius: 8px;

    background: #eeeeee;
}

.news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.03);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.news-content {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* CATEGORY */

.news-category {
    display: block;

    margin: 0 0 5px;

    color: #0879ee;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;

    text-transform: uppercase;
}


/* TITLE */

.news-content h3 {
    margin: 0 0 12px;
    padding: 0;

    color: #111111;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #0879ee;
}


/* =========================================================
   BLOG META
========================================================= */

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    margin: 0;
    padding: 0;
}

.news-meta-item {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #777777;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.news-meta-item i {
    color: #777777;

    font-size: 14px;

    line-height: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .news-section {
        padding: 32px 0 40px;
    }

    .news-container {
        width: 92%;
    }

    .news-grid {
        gap: 24px;
    }

    .news-image {
        height: 300px;
    }

    .news-heading h2 {
        font-size: 30px;
    }

    .news-content h3 {
        font-size: 19px;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .news-image {
        height: 280px;
    }

    .news-heading {
        margin-bottom: 18px;
    }

    .news-heading h2 {
        font-size: 28px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .news-section {
        padding: 28px 0 35px;
    }

    .news-container {
        width: 92%;
    }

    .news-heading {
        margin-bottom: 18px;
    }

    .news-heading span {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .news-heading h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-image {
        height: 250px;
        margin-bottom: 12px;
        border-radius: 7px;
    }

    .news-category {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .news-content h3 {
        margin-bottom: 9px;
        font-size: 19px;
        line-height: 1.3;
    }

    .news-meta {
        gap: 15px;
    }

    .news-meta-item {
        gap: 6px;
        font-size: 12px;
    }

    .news-meta-item i {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .news-container {
        width: 94%;
    }

    .news-heading h2 {
        font-size: 23px;
    }

    .news-image {
        height: 225px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-meta-item {
        font-size: 12px;
    }
}

/* =========================================================
   READ MORE BUTTON
========================================================= */

.news-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 14px;
    padding: 8px 17px;

    background: #0879ee;
    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition: background 0.2s ease,
                transform 0.2s ease;
}

.news-read-more:hover {
    background: #0567ce;
    color: #ffffff;
    transform: translateY(-1px);
}

.news-read-more i {
    margin-left: 6px;
    font-size: 11px;
}


/* =========================================================
   MOBILE READ MORE
========================================================= */

@media (max-width: 600px) {

    .news-read-more {
        margin-top: 12px;
        padding: 8px 15px;
        font-size: 12px;
    }

    .news-read-more i {
        font-size: 10px;
    }
}






/* =========================================================
   WHY US
========================================================= */

.why-section{
    background:#fff;
}

.why-grid{
    gap:100px;
}

.why-content>p{
    max-width:560px;
    margin-bottom:32px;
    font-size:14px;
}

.why-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px 20px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.why-icon{
    flex:0 0 45px;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#edf5ff;
    color:var(--primary);
}

.why-item h3{
    margin-bottom:3px;
    color:var(--dark);
    font-size:14px;
}

.why-item p{
    font-size:11px;
    line-height:1.6;
}

.why-image{
    position:relative;
}

.why-image>img{
    height:550px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:var(--shadow);
}

.floating-card{
    position:absolute;
    left:-35px;
    bottom:35px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 20px;
    border-radius:12px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.floating-card-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:#fff4d8;
    color:#f2a900;
}

.floating-card div:last-child{
    display:flex;
    flex-direction:column;
}

.floating-card strong{
    color:var(--dark);
    font-size:13px;
}

.floating-card span{
    font-size:10px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section{
    background:var(--light);
}

.process-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    align-items:center;
    gap:18px;
}

.process-item{
    position:relative;
    text-align:center;
}

.process-number{
    position:absolute;
    top:-10px;
    right:12%;
    color:#dfe7f1;
    font-family:"Poppins",sans-serif;
    font-size:35px;
    font-weight:800;
}

.process-icon{
    position:relative;
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border:1px solid #dce7f4;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    font-size:23px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.process-item h3{
    margin-bottom:7px;
    color:var(--dark);
    font-family:"Poppins",sans-serif;
    font-size:16px;
}

.process-item p{
    font-size:11px;
    line-height:1.6;
}

.process-line{
    width:45px;
    height:1px;
    background:#cfd9e6;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-section{
    background:#fff;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.portfolio-card{
    position:relative;
    height:100%;
    overflow:hidden;
    border-radius:15px;
    background:#111;
}

.portfolio-card img{
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:70px 28px 25px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
}

.portfolio-overlay span{
    color:#7db6ff;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.portfolio-overlay h3{
    margin-top:5px;
    font-family:"Poppins",sans-serif;
    font-size:20px;
}

.portfolio-overlay>i{
    position:absolute;
    right:28px;
    bottom:28px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--dark);
    transition:var(--transition);
}

.portfolio-card:hover .portfolio-overlay>i{
    background:var(--primary);
    color:#fff;
    transform:rotate(45deg);
}

.portfolio-button{
    margin-top:40px;
    text-align:center;
}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section{
    position:relative;
    width:100%;
    padding:85px 0;
    margin:0;
    background:#f6f9ff;
    overflow:hidden;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(23,105,255,.06);
    pointer-events:none;
}

.testimonial-section::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(8,217,255,.06);
    pointer-events:none;
}


/* =========================================================
   CONTAINER
========================================================= */

.testimonial-section .container{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1250px;

    margin:0 auto;
    padding:0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.testimonial-section .section-heading{
    width:100%;
    margin:0 0 50px;
}

.testimonial-section .section-heading.center{
    text-align:center;
}

.testimonial-section .section-label{
    display:inline-block;

    margin:0 0 12px;
    padding:7px 18px;

    border:1px solid rgba(23,105,255,.2);
    border-radius:50px;

    background:rgba(23,105,255,.07);

    color:#1769ff;

    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:600;

    line-height:1.4;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.testimonial-section .section-heading h2{
    margin:0;

    color:#111c3b;

    font-family:'Poppins',sans-serif;
    font-size:42px;
    font-weight:600;
    line-height:1.25;

    letter-spacing:-.5px;
}

.testimonial-section .section-heading h2 span{
    color:#1769ff;
}


/* =========================================================
   TESTIMONIAL WRAPPER
   FLEX ONLY
========================================================= */

.testimonial-grid{
    width:100%;

    display:flex !important;
    flex-direction:row;
    flex-wrap:wrap;

    align-items:stretch;
    justify-content:center;

    gap:25px;

    margin:0;
    padding:0;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card{
    position:relative;

    width:calc(33.333333% - 17px);
    max-width:none;

    flex:0 0 calc(33.333333% - 17px);

    min-width:0;
    min-height:0;

    margin:0;
    padding:32px 30px 28px;

    border:1px solid #e1e8f5;
    border-radius:18px;

    background:#ffffff;

    box-shadow:
        0 10px 30px rgba(20,60,120,.07);

    overflow:hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.testimonial-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #1769ff,
        #08d9ff
    );
}

.testimonial-card::after{
    content:"";

    position:absolute;

    top:-75px;
    right:-75px;

    width:160px;
    height:160px;

    border-radius:50%;

    background:rgba(8,217,255,.07);

    pointer-events:none;
}

.testimonial-card:hover{
    transform:translateY(-7px);

    border-color:rgba(23,105,255,.25);

    box-shadow:
        0 18px 42px rgba(20,60,120,.13);
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;

    gap:5px;

    margin:0 0 18px;
    padding:0;
}

.testimonial-stars i{
    color:#ffb400;
    font-size:15px;
    line-height:1;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-card > p{
    position:relative;
    z-index:2;

    width:100%;

    margin:0;
    padding:0;

    color:#59677f;

    font-family:'Poppins',sans-serif;
    font-size:14px;
    font-style:normal;
    font-weight:400;

    line-height:1.8;

    text-align:left;

    overflow-wrap:break-word;
    word-break:normal;
}

.testimonial-card > p::before{
    content:"“";

    position:absolute;

    top:-24px;
    left:-5px;

    color:rgba(23,105,255,.08);

    font-family:Georgia,serif;
    font-size:78px;
    line-height:1;

    z-index:-1;
}


/* =========================================================
   CLIENT INFO
========================================================= */

.client-info{
    position:relative;
    z-index:2;

    width:100%;

    display:flex;
    align-items:center;

    gap:13px;

    margin:24px 0 0;
    padding:18px 0 0;

    border-top:1px solid #edf1f7;
}


/* =========================================================
   CLIENT AVATAR
========================================================= */

.client-avatar{
    width:50px;
    height:50px;

    flex:0 0 50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #1769ff,
        #08d9ff
    );

    color:#ffffff;

    font-family:'Poppins',sans-serif;
    font-size:18px;
    font-weight:600;

    box-shadow:
        0 7px 18px rgba(23,105,255,.2);
}


/* =========================================================
   CLIENT NAME
========================================================= */

.client-info strong{
    display:block;

    margin:0 0 3px;

    color:#17213f;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;

    line-height:1.4;
}

.client-info span{
    display:block;

    margin:0;

    color:#8994a9;

    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:400;

    line-height:1.4;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    padding-top:75px;
    background:#061120;
    color:#8795a8;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.2fr 1.2fr;
    gap:60px;
    padding-bottom:60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:20px;
    font-weight:700;
}

.footer-logo b{
    color:#62a7ff;
}

.footer-logo .logo-icon{
    width:40px;
    height:40px;
}

.footer-about p{
    max-width:320px;
    margin-bottom:22px;
    font-size:12px;
    line-height:1.8;
}

.social-links{
    display:flex;
    gap:8px;
}

.social-links a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.1);
    border-radius:8px;
    color:#a9b6c7;
    font-size:12px;
    transition:var(--transition);
}

.social-links a:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

.footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:9px;
}

.footer-column h3{
    margin-bottom:10px;
    color:#fff;
    font-family:"Poppins",sans-serif;
    font-size:14px;
}

.footer-column a{
    font-size:12px;
    transition:var(--transition);
}

.footer-column a:hover{
    color:#62a7ff;
    transform:translateX(4px);
}

.footer-contact>div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:12px;
    font-size:12px;
}

.footer-contact i{
    width:16px;
    margin-top:5px;
    color:#62a7ff;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p,
.footer-bottom a{
    font-size:10px;
}

.footer-bottom>div{
    display:flex;
    gap:22px;
}

.footer-bottom a:hover{
    color:#62a7ff;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:900;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:9px;
    background:var(--primary);
    color:#fff;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    box-shadow:0 10px 30px rgba(13,110,253,.3);
    transition:var(--transition);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--dark);
    transform:translateY(-4px);
}


/* =========================================================
   SELECTION
========================================================= */

::selection{
    background:var(--primary);
    color:#fff;
}


