*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#fff;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*================ TOP BAR ================*/

.topbar{

background:#f4b548;

padding:12px 0;

font-size:15px;

}

.topbar .container{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.left{

display:flex;

align-items:center;

gap:10px;

}

.right{

display:flex;

align-items:center;

gap:25px;

}

.right a{

color:#111;

font-weight:500;

}

.social{

display:flex;

gap:12px;

}

.social a{

width:42px;

height:42px;

background:#071b3b;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

transition:.3s;

}

.social a:hover{

background:#000;

transform:translateY(-3px);

}

/*================ NAVBAR ================*/

header{

background:#071b3b;

position:sticky;

top:0;

z-index:999;

}

.nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo img{

height:58px;

}

nav ul{

display:flex;

gap:38px;

align-items:center;

}

nav ul li{

position:relative;

}

nav ul li a{

color:#fff;

font-weight:500;

transition:.3s;

}

nav ul li a:hover{

color:#f4b548;

}

.active{

color:#f4b548;

position:relative;

}

.active::after{

content:'';

position:absolute;

left:0;

bottom:-10px;

width:100%;

height:3px;

background:#f4b548;

}

/*================ DROPDOWN ================*/

.drop-btn{

display:flex;

align-items:center;

gap:7px;

}

.drop-btn i{

font-size:12px;

transition:.3s;

}

.dropdown-menu{
color: black;

position:absolute;

top:100%;

left:0;
background:#fff;

border-radius:10px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.15);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

z-index:999;
width:600px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
padding:20px;

}

/* .dropdown-menu{

position:absolute;

top:100%;

left:50%;

transform:translateX(-50%) translateY(20px);

width:620px;

background:#fff;

padding:20px;

border-radius:15px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

} */

.dropdown:hover .dropdown-menu{

opacity:1;

visibility:visible;

transform:translateY(0);
color: black;

}

.dropdown:hover .drop-btn i{

transform:rotate(180deg);

}

.dropdown-menu li a{
    display: block;
    padding: 15px 20px;
    color: #071b3b;
    background: #fff;
    transition: all .3s ease;
    border-radius: 8px;
}

.dropdown-menu li a:hover{
    background: #f4b548;
    color: #071b3b !important;
}
/*================ BUTTON ================*/

.btn{

background:#f4b548;

padding:16px 34px;

border-radius:12px;

font-weight:600;

color:#071b3b;

transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

}

.btn i{

margin-left:8px;

}

.menu{

display:none;

font-size:28px;

color:#fff;

cursor:pointer;

}

/*================ MOBILE ================*/

@media(max-width:991px){

.topbar{

display:none;

}

.menu{

display:block;

}

.btn{

display:none;

}

nav{

position:absolute;

left:0;

top:100%;

width:100%;

background:#071b3b;

display:none;

}

nav.show{

display:block;

}

nav ul{

flex-direction:column;

gap:0;

}

nav ul li{

width:100%;

}

nav ul li a{

display:block;

padding:18px 25px;

}

.dropdown-menu{

position:static;

width:100%;

opacity:1;

visibility:visible;

transform:none;

display:none;

background:#0b2854;

box-shadow:none;

border-radius:0;

}

.dropdown.active .dropdown-menu{

display:block;

}

.dropdown-menu li a{

/* color:#fff; */

padding-left:45px;
margin-top: 10px;

}

}

@media(max-width:768px){

.logo img{

height:45px;

}

}

/*==============================
CHAVO 
===============================*/

:root{

--primary:#071B3B;
--secondary:#F4B548;
--white:#ffffff;
--text:#d5d5d5;
--glass:rgba(255,255,255,.08);

}

.hero{

position:relative;

width:100%;

min-height:100vh;

background:linear-gradient(135deg,#06152d 0%,#071B3B 45%,#0b2d5c 100%);

overflow:hidden;

display:flex;

align-items:center;

padding:10px 0;

}

.hero-container{

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:70px;

position:relative;

z-index:10;

}

/*==============================
Background Glow
===============================*/

.blur{

position:absolute;

border-radius:50%;

filter:blur(90px);

opacity:.55;

animation:floatBlur 10s ease-in-out infinite;

}

.blur1{

width:420px;

height:420px;

background:#ffb300;

left:-150px;

top:-100px;

}

.blur2{

width:350px;

height:350px;

background:#4f8dff;

right:-100px;

bottom:-80px;

animation-delay:3s;

}

@keyframes floatBlur{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

100%{

transform:translateY(0);

}

}

/*==============================
Hero Content
===============================*/

.hero-content{

color:#fff;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

border-radius:40px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(15px);

font-size:15px;

margin-bottom:30px;

}

.hero h1{

font-size:65px;

line-height:1.1;

font-weight:700;

margin-bottom:25px;

}

.hero h1 span{

color:var(--secondary);

}

.hero p{

font-size:19px;

line-height:34px;

color:var(--text);

max-width:620px;

margin-bottom:40px;

}

/*==============================
Buttons
===============================*/

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

flex-wrap:wrap;

}

.primary-btn{

padding:18px 38px;

background:var(--secondary);

color:var(--primary);

font-weight:600;

border-radius:12px;

transition:.35s;

box-shadow:0 15px 40px rgba(244,181,72,.35);

}

.primary-btn:hover{

transform:translateY(-6px);

box-shadow:0 25px 45px rgba(244,181,72,.45);

}

.secondary-btn{

padding:18px 38px;

border:2px solid rgba(255,255,255,.15);

color:#fff;

border-radius:12px;

transition:.35s;

backdrop-filter:blur(20px);

}

.secondary-btn:hover{

background:#fff;

color:var(--primary);

transform:translateY(-6px);

}

/*==============================
Statistics
===============================*/

.hero-stats{

display:flex;

gap:60px;

flex-wrap:wrap;

}

.hero-stats div{

position:relative;

}

.hero-stats div::after{

content:"";

position:absolute;

right:-30px;

top:8px;

height:45px;

width:1px;

background:rgba(255,255,255,.15);

}

.hero-stats div:last-child::after{

display:none;

}

.hero-stats h2{

font-size:42px;

color:var(--secondary);

margin-bottom:8px;

}

.hero-stats span{

font-size:15px;

color:#ddd;

letter-spacing:.5px;

}

/*==============================
Right Section
===============================*/

.hero-image{

position:relative;

height:650px;

display:flex;

justify-content:center;

align-items:center;

}

/*==========================
Center Gradient Circle
===========================*/

.circle{

    width:380px;
    height:380px;

    border-radius:50%;

    background:linear-gradient(135deg,#F4B548,#ff8c00);

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 0 60px rgba(244,181,72,.45),
    0 0 120px rgba(244,181,72,.25);

    animation:rotateCircle 15s linear infinite;

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*==========================
Center Logo Card
===========================*/

.center-card{

    position:absolute;

    width:220px;
    height:220px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 20px 45px rgba(0,0,0,.25);

    animation:floatCenter 5s ease-in-out infinite;

}

.center-card img{

    width:140px;

}

/*==========================
Glass Cards
===========================*/

.glass-card{

    position:absolute;

    width:180px;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);

}

.glass-card h4{

    margin-top:12px;

    font-size:17px;

    font-weight:600;

}

.glass-card:hover{

    transform:translateY(-10px) scale(1.05);

    background:rgba(255,255,255,.14);

    box-shadow:
    0 30px 60px rgba(0,0,0,.30);

}

/*==========================
Card Positions
===========================*/

.card1{

    top:0;
    left:10px;

    animation:float1 5s ease-in-out infinite;

}

.card2{

    top:80px;
    right:0;

    animation:float2 6s ease-in-out infinite;

}

.card3{

    bottom:150px;
    left:0;

    animation:float3 7s ease-in-out infinite;

}

.card4{

    bottom:140px;
    right:20px;

    animation:float4 5.5s ease-in-out infinite;

}

.card5{

    top:260px;
    right:350px;

    animation:float5 6.5s ease-in-out infinite;

}

/*==========================
Floating Animations
===========================*/

@keyframes floatCenter{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes float1{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes float2{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(18px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes float3{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(12px);
    }

    100%{
        transform:translateX(0);
    }

}

@keyframes float4{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes float5{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(-15px);
    }

    100%{
        transform:translateX(0);
    }

}

/*==========================
Scroll Indicator
===========================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:28px;
    height:48px;

    border:2px solid rgba(255,255,255,.5);

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;
    height:6px;

    background:#F4B548;

    border-radius:50%;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    animation:scrollWheel 2s infinite;

}

@keyframes scrollWheel{

    0%{

        opacity:1;
        top:10px;

    }

    100%{

        opacity:0;
        top:28px;

    }

}


/*=============
Large Screens
==============*/

@media (max-width:1400px){

.hero h1{

    font-size:58px;

}

.hero-container{

    gap:50px;

}

.hero-image{

    height:600px;

}

.circle{

    width:340px;
    height:340px;

}

.center-card{

    width:200px;
    height:200px;

}

.glass-card{

    width:165px;

}

}

/*=============
Laptop
==============*/

@media (max-width:1200px){

.hero{

    padding:90px 0;

}

.hero-container{

    gap:40px;

}

.hero h1{

    font-size:50px;

}

.hero p{

    font-size:17px;
    line-height:30px;

}

.hero-stats{

    gap:35px;

}

.hero-image{

    height:550px;

}

.circle{

    width:300px;
    height:300px;

}

.center-card{

    width:180px;
    height:180px;

}

.center-card img{

    width:110px;

}

.glass-card{

    width:150px;
    padding:18px;

}

.glass-card h4{

    font-size:15px;

}

}

/*=============
Tablet
==============*/

@media (max-width:991px){

.hero{

    padding:70px 0 100px;

}

.hero-container{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content{

    order:2;

}

.hero-image{

    order:1;

    margin-bottom:40px;

    height:520px;

}

.hero h1{

    font-size:42px;

}

.hero p{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

}

.hero-stats div::after{

    display:none;

}

.circle{

    width:280px;
    height:280px;

}

.center-card{

    width:170px;
    height:170px;

}

.center-card img{

    width:100px;

}

/* Floating Cards */

.card1{

    top:0;
    left:40px;

}

.card2{

    top:50px;
    right:40px;

}

.card3{

    bottom:130px;
    left:20px;

}

.card4{

    bottom:20px;
    right:20px;

}

.card5{

    top:220px;
    right:70px;

}

}

/*=============
Mobile
==============*/

@media (max-width:768px){

.hero{

    min-height:auto;

    padding:60px 0 90px;

}

.hero h1{

    font-size:34px;

    line-height:1.2;

}

.hero p{

    font-size:16px;

    line-height:28px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.primary-btn,
.secondary-btn{

    width:240px;

    text-align:center;

}

.hero-stats{

    gap:25px;

}

.hero-stats h2{

    font-size:32px;

}

.hero-image{

    height:450px;

}

.circle{

    width:240px;
    height:240px;

}

.center-card{

    width:150px;
    height:150px;

}

.center-card img{

    width:85px;

}

.glass-card{

    width:130px;

    padding:15px;

}

.glass-card h4{

    font-size:13px;

}

.card1{

    left:0;

}

.card2{

    right:0;

}

.card3{

    left:0;

}

.card4{

    right:0;

}

.card5{

    right:40px;

}

}

/*=============
Small Phones
==============*/

@media (max-width:480px){

.hero{

    padding:50px 0 80px;

}

.hero-badge{

    font-size:13px;

    padding:10px 18px;

}

.hero h1{

    font-size:28px;

}

.hero p{

    font-size:15px;

    line-height:26px;

}

.hero-image{

    height:380px;

}

.circle{

    width:180px;
    height:180px;

}

.center-card{

    width:120px;
    height:120px;

    border-radius:20px;

}

.center-card img{

    width:70px;

}

.glass-card{

    width:110px;

    padding:12px;

}

.glass-card h4{

    font-size:11px;

    margin-top:8px;

}

.card1{

    top:0;
    left:5px;

}

.card2{

    top:20px;
    right:5px;

}

.card3{

    bottom:90px;
    left:5px;

}

.card4{

    bottom:0;
    right:5px;

}

.card5{

    top:150px;
    right:30px;

}

.scroll-down{

    display:none;

}

}

/*=============
Extra Large Screens
==============*/

@media (min-width:1600px){

.hero-container{

    max-width:1450px;

}

.hero h1{

    font-size:72px;

}

.hero p{

    font-size:21px;

}

.circle{

    width:430px;
    height:430px;

}

.center-card{

    width:240px;
    height:240px;

}

.center-card img{

    width:150px;

}

.glass-card{

    width:190px;

}

}

/*=========================================
        CHAVO ABOUT SECTION
          
==========================================*/

.about-section{

    position:relative;

    padding:60px 0 40px 0;

    overflow:hidden;

    background:
    linear-gradient(135deg,#06152d 0%,#071B3B 60%,#0d3368 100%);

}

/*=============================
Background Glow
==============================*/

.about-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

}

.circle-one{

    width:350px;
    height:350px;

    background:#F4B548;

    top:-120px;
    left:-100px;

}

.circle-two{

    width:300px;
    height:300px;

    background:#4b8cff;

    bottom:-100px;
    right:-80px;

}

/*=============================
Container
==============================*/

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    position:relative;

    z-index:5;

}

/*=============================
Left Side
==============================*/

.about-left{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:650px;

}

/*=============================
Dashboard
==============================*/

.dashboard{

    width:500px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border-radius:28px;

    overflow:hidden;

    box-shadow:

    0 30px 80px rgba(0,0,0,.30);

}

/*=============================
Dashboard Header
==============================*/

.dashboard-header{

    display:flex;

    gap:12px;

    padding:18px 22px;

    background:rgba(255,255,255,.06);

}

.dashboard-header span{

    width:14px;
    height:14px;

    border-radius:50%;

}

.dashboard-header span:nth-child(1){

    background:#ff5f57;

}

.dashboard-header span:nth-child(2){

    background:#ffbd2e;

}

.dashboard-header span:nth-child(3){

    background:#28c840;

}

/*=============================
Dashboard Body
==============================*/

.dashboard-body{

    padding:35px;

}

.dashboard-title h3{

    color:#fff;

    font-size:28px;

    margin-bottom:8px;

}

.dashboard-title p{

    color:#d9d9d9;

    margin-bottom:40px;

}

/*=============================
Chart
==============================*/

.chart-box{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    height:180px;

    margin-bottom:50px;

}

.chart-bar{

    width:50px;

    border-radius:15px 15px 0 0;

    background:linear-gradient(
    to top,
    #F4B548,
    #ffd76d);

}

.h1{

    height:70px;

}

.h2{

    height:130px;

}

.h3{

    height:95px;

}

.h4{

    height:165px;

}

.h5{

    height:120px;

}

/*=============================
Progress
==============================*/

.progress-group{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.progress-item span{

    color:#fff;

    display:block;

    margin-bottom:10px;

}

.progress{

    width:100%;

    height:12px;

    background:rgba(255,255,255,.08);

    border-radius:30px;

    overflow:hidden;

}

.fill{

    height:100%;

    border-radius:30px;

    background:#F4B548;

}

.fill1{

    width:90%;

}

.fill2{

    width:96%;

}

.fill3{

    width:98%;

}

/*=============================
Right Side
==============================*/

.about-right{

    color:#fff;

}

.section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;

}

.about-right h2{

    font-size:56px;

    line-height:1.2;

    margin-bottom:30px;

}

.about-right h2 span{

    color:#F4B548;

}

.about-right p{

    color:#d5d5d5;

    line-height:34px;

    font-size:18px;

    margin-bottom:40px;

}

/*=============================
Features
==============================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

    font-size:17px;

}

.feature-box i{

    width:38px;
    height:38px;

    border-radius:50%;

    background:#F4B548;

    color:#071B3B;

    display:flex;

    justify-content:center;

    align-items:center;

}

/*=============================
Button
==============================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 40px;

    background:#F4B548;

    color:#071B3B;

    font-weight:600;

    border-radius:12px;

    transition:.35s;

}

.about-btn:hover{

    transform:translateY(-6px);

    box-shadow:

    0 18px 40px rgba(244,181,72,.35);

}

/*=============================
Counter Cards
==============================*/

.about-counter{

    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:22px;

    padding:35px;

    text-align:center;

}

.counter-box h3{

    font-size:42px;

    color:#F4B548;

    margin-bottom:10px;

}

.counter-box p{

    color:#fff;

    font-size:16px;

}


/*=============================
Floating Cards
==============================*/

.floating-card{

    position:absolute;

    width:180px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

    transition:.4s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,.20);

    cursor:pointer;

}

.floating-card h4{

    margin-top:12px;

    font-size:16px;

    font-weight:600;

}

.floating-card:hover{

    transform:translateY(-12px) scale(1.05);

    background:rgba(255,255,255,.14);

    box-shadow:
    0 35px 60px rgba(0,0,0,.35);

}

/*=============================
Card Positions
==============================*/

.card-web{

    top:20px;

    left:-30px;

    animation:floatOne 6s ease-in-out infinite;

}

.card-ai{

    top:70px;

    right:-45px;

    animation:floatTwo 7s ease-in-out infinite;

}

.card-cloud{

    bottom:40px;

    left:-40px;

    animation:floatThree 6.5s ease-in-out infinite;

}

.card-mobile{

    bottom:0;

    right:-30px;

    animation:floatFour 7.5s ease-in-out infinite;

}

/*=============================
Dashboard Hover
==============================*/

.dashboard{

    transition:.45s ease;

}

.dashboard:hover{

    transform:translateY(-10px);

    box-shadow:
    0 40px 80px rgba(0,0,0,.45);

}

/*=============================
Chart Animation
==============================*/

.chart-bar{

    animation:growBar 2s ease forwards;

    transform-origin:bottom;

}

@keyframes growBar{

    from{

        transform:scaleY(0);

    }

    to{

        transform:scaleY(1);

    }

}

/*=============================
Progress Animation
==============================*/

.fill{

    animation:progressFill 2.5s ease forwards;

    transform-origin:left;

}

@keyframes progressFill{

    from{

        transform:scaleX(0);

    }

    to{

        transform:scaleX(1);

    }

}

/*=============================
Floating Animations
==============================*/

@keyframes floatOne{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@keyframes floatTwo{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(18px);

    }

}

@keyframes floatThree{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(15px);

    }

}

@keyframes floatFour{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*=============================
Feature Hover
==============================*/

.feature-box{

    transition:.35s;

    padding:12px;

    border-radius:12px;

}

.feature-box:hover{

    background:rgba(255,255,255,.08);

    transform:translateX(8px);

}

/*=============================
Counter Cards
==============================*/

.counter-box{

    transition:.4s ease;

}

.counter-box:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.12);

    box-shadow:
    0 25px 50px rgba(0,0,0,.30);

}

/*=============================
Button Hover
==============================*/

.about-btn i{

    transition:.35s;

}

.about-btn:hover i{

    transform:translateX(6px);

}

/*=============================
Section Fade Animation
==============================*/

.about-left{

    animation:fadeLeft 1.2s ease;

}

.about-right{

    animation:fadeRight 1.2s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=============================
Glow Effect
==============================*/

.dashboard::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(244,181,72,.35),
    transparent,
    rgba(75,140,255,.25)
    );

    z-index:-1;

    filter:blur(15px);

}

/*=============================
Glass Shine
==============================*/

.dashboard::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100px;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.18),

    transparent

    );

    transform:skewX(-25deg);

    animation:shine 6s infinite;

}

@keyframes shine{

    0%{

        left:-120%;

    }

    100%{

        left:140%;

    }

}

/*=========================================
        CHAVO ABOUT SECTION
       (ANIMATIONS)
==========================================*/

/*=============================
Floating Cards
==============================*/

.floating-card{

    position:absolute;

    width:180px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

    transition:.4s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,.20);

    cursor:pointer;

}

.floating-card h4{

    margin-top:12px;

    font-size:16px;

    font-weight:600;

}

.floating-card:hover{

    transform:translateY(-12px) scale(1.05);

    background:rgba(255,255,255,.14);

    box-shadow:
    0 35px 60px rgba(0,0,0,.35);

}

/*=============================
Card Positions
==============================*/

.card-web{

    top:20px;

    left:-30px;

    animation:floatOne 6s ease-in-out infinite;

}

.card-ai{

    top:70px;

    right:-45px;

    animation:floatTwo 7s ease-in-out infinite;

}

.card-cloud{

    bottom:40px;

    left:-40px;

    animation:floatThree 6.5s ease-in-out infinite;

}

.card-mobile{

    bottom:0;

    right:-30px;

    animation:floatFour 7.5s ease-in-out infinite;

}

/*=============================
Dashboard Hover
==============================*/

.dashboard{

    transition:.45s ease;

}

.dashboard:hover{

    transform:translateY(-10px);

    box-shadow:
    0 40px 80px rgba(0,0,0,.45);

}

/*=============================
Chart Animation
==============================*/

.chart-bar{

    animation:growBar 2s ease forwards;

    transform-origin:bottom;

}

@keyframes growBar{

    from{

        transform:scaleY(0);

    }

    to{

        transform:scaleY(1);

    }

}

/*=============================
Progress Animation
==============================*/

.fill{

    animation:progressFill 2.5s ease forwards;

    transform-origin:left;

}

@keyframes progressFill{

    from{

        transform:scaleX(0);

    }

    to{

        transform:scaleX(1);

    }

}

/*=============================
Floating Animations
==============================*/

@keyframes floatOne{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@keyframes floatTwo{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(18px);

    }

}

@keyframes floatThree{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(15px);

    }

}

@keyframes floatFour{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*=============================
Feature Hover
==============================*/

.feature-box{

    transition:.35s;

    padding:12px;

    border-radius:12px;

}

.feature-box:hover{

    background:rgba(255,255,255,.08);

    transform:translateX(8px);

}

/*=============================
Counter Cards
==============================*/

.counter-box{

    transition:.4s ease;

}

.counter-box:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.12);

    box-shadow:
    0 25px 50px rgba(0,0,0,.30);

}

/*=============================
Button Hover
==============================*/

.about-btn i{

    transition:.35s;

}

.about-btn:hover i{

    transform:translateX(6px);

}

/*=============================
Section Fade Animation
==============================*/

.about-left{

    animation:fadeLeft 1.2s ease;

}

.about-right{

    animation:fadeRight 1.2s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=============================
Glow Effect
==============================*/

.dashboard::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(244,181,72,.35),
    transparent,
    rgba(75,140,255,.25)
    );

    z-index:-1;

    filter:blur(15px);

}

/*=============================
Glass Shine
==============================*/

.dashboard::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100px;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.18),

    transparent

    );

    transform:skewX(-25deg);

    animation:shine 6s infinite;

}

@keyframes shine{

    0%{

        left:-120%;

    }

    100%{

        left:140%;

    }

}


/*==============================
1400px
===============================*/

@media(max-width:1400px){

.about-container{

    gap:60px;

}

.dashboard{

    width:450px;

}

.about-right h2{

    font-size:48px;

}

.floating-card{

    width:165px;

}

}

/*==============================
1200px
===============================*/

@media(max-width:1200px){

.about-container{

    gap:40px;

}

.dashboard{

    width:420px;

}

.dashboard-body{

    padding:28px;

}

.about-right h2{

    font-size:42px;

}

.about-right p{

    font-size:17px;

    line-height:30px;

}

.feature-box{

    font-size:15px;

}

.about-counter{

    gap:20px;

}

.counter-box{

    padding:25px;

}

.counter-box h3{

    font-size:36px;

}

}

/*==============================
Tablet
===============================*/

@media(max-width:991px){

.about-section{

    padding:90px 0;

}

.about-container{

    grid-template-columns:1fr;

    gap:70px;

}

.about-left{

    order:1;

    min-height:550px;

}

.about-right{

    order:2;

    text-align:center;

}

.about-right p{

    margin:auto auto 40px;

}

.about-features{

    grid-template-columns:repeat(2,1fr);

}

.about-btn{

    margin:auto;

}

.dashboard{

    width:480px;

}

.about-counter{

    grid-template-columns:repeat(2,1fr);

    margin-top:70px;

}

.counter-box{

    padding:30px;

}

/* Floating Cards */

.card-web{

    top:0;

    left:10px;

}

.card-ai{

    top:30px;

    right:10px;

}

.card-cloud{

    bottom:30px;

    left:10px;

}

.card-mobile{

    bottom:0;

    right:10px;

}

}

/*==============================
Mobile
===============================*/

@media(max-width:768px){

.about-section{

    padding:70px 0;

}

.dashboard{

    width:100%;

}

.dashboard-title h3{

    font-size:22px;

}

.dashboard-title p{

    font-size:14px;

}

.chart-box{

    height:150px;

}

.chart-bar{

    width:38px;

}

.about-right h2{

    font-size:34px;

}

.about-right p{

    font-size:16px;

    line-height:28px;

}

.about-features{

    grid-template-columns:1fr;

}

.feature-box{

    justify-content:flex-start;

}

.about-btn{

    width:220px;

    justify-content:center;

}

.about-counter{

    grid-template-columns:1fr;

    gap:20px;

}

.counter-box{

    padding:28px;

}

.counter-box h3{

    font-size:34px;

}

.floating-card{

    width:140px;

    padding:15px;

}

.floating-card h4{

    font-size:13px;

}

}

/*==============================
480px
===============================*/

@media(max-width:480px){

.about-left{

    min-height:420px;

}

.dashboard{

    border-radius:20px;

}

.dashboard-body{

    padding:20px;

}

.dashboard-header{

    padding:15px;

}

.dashboard-header span{

    width:12px;

    height:12px;

}

.chart-box{

    height:120px;

}

.chart-bar{

    width:24px;

}

.about-right h2{

    font-size:28px;

}

.about-right p{

    font-size:15px;

}

.section-tag{

    font-size:12px;

}

.about-btn{

    width:100%;

}

.counter-box h3{

    font-size:30px;

}

/* Floating Cards */

.floating-card{

    width:110px;

    padding:12px;

    border-radius:14px;

}

.floating-card h4{

    font-size:11px;

    margin-top:8px;

}

.card-web{

    left:0;

    top:-15px;

}

.card-ai{

    right:0;

    top:15px;

}

.card-cloud{

    left:0;

    bottom:20px;

}

.card-mobile{

    right:0;

    bottom:-10px;

}

}

/*==============================
Large Desktop
===============================*/

@media(min-width:1600px){

.about-container{

    max-width:1450px;

    margin:auto;

}

.dashboard{

    width:560px;

}

.about-right h2{

    font-size:64px;

}

.about-right p{

    font-size:20px;

}

.floating-card{

    width:190px;

}

.counter-box{

    padding:45px;

}

.counter-box h3{

    font-size:52px;

}

}

/*=====================================================CHAVO SERVICES SECTION ============================================================================================*/

/*==============================
        Services Section
===============================*/

.services-section{

    position: relative;

    padding:60px 0 40px 0;

    background:#081B36;

    overflow:hidden;

}

/*==============================
        Background Circles
===============================*/

.services-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;

    z-index:0;

}

.circle-one{

    width:350px;

    height:350px;

    background:#F4B548;

    top:-120px;

    left:-100px;

}

.circle-two{

    width:420px;

    height:420px;

    background:#3A86FF;

    right:-140px;

    bottom:-150px;

}

/*==============================
        Container
===============================*/

.services-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*==============================
        Heading
===============================*/

.services-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.section-subtitle{

    display:inline-block;

    padding:10px 24px;

    background:rgba(244,181,72,.12);

    color:#F4B548;

    border:1px solid rgba(244,181,72,.25);

    border-radius:40px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:22px;

}

.services-heading h2{

    font-size:52px;

    line-height:1.2;

    color:#fff;

    margin-bottom:20px;

    font-weight:700;

}

.services-heading h2 span{

    display:block;

    color:#F4B548;

}

.services-heading p{

    color:#C9D3E2;

    font-size:18px;

    line-height:34px;

}

/*==============================
        Main Layout
===============================*/

.services-wrapper{

    display:grid;

    grid-template-columns:65% 35%;

    gap:40px;

    align-items:stretch;

}

/*==============================
        Left Slider
===============================*/

.myServiceSlider{

    width:100%;

    position:relative;

    overflow:hidden;

    border-radius:30px;

}

/* Swiper Base */

.swiper{

    width:100%;

    height:100%;

}

.swiper-wrapper{

    display:flex;

}

.swiper-slide{

    flex-shrink:0;

    width:100%;

    height:auto;

}

/*==============================
        Service Card
===============================*/

.service-card{

    position:relative;

    background:linear-gradient(135deg,#132B52,#0A1C38);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:55px;

    overflow:hidden;

    min-height:720px;

    box-shadow:
    0 25px 70px rgba(0,0,0,.35);

    transition:.4s ease;

}

/*==============================
      Glow Effect
===============================*/

.service-card::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(244,181,72,.15);

    top:-120px;

    right:-100px;

    filter:blur(70px);

}

.service-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(58,134,255,.15);

    bottom:-100px;

    left:-80px;

    filter:blur(80px);

}

/*==============================
      Hover Effect
===============================*/

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 90px rgba(0,0,0,.45);

}

/*==============================
      Service Icon
===============================*/

.service-icon{

    width:95px;

    height:95px;

    border-radius:24px;

    background:#F4B548;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:35px;

    transition:.35s;

    box-shadow:
    0 15px 40px rgba(244,181,72,.30);

}

.service-icon i{

    font-size:40px;

    color:#081B36;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*==============================
      Heading
===============================*/

.service-card h3{

    color:#fff;

    font-size:46px;

    line-height:1.25;

    margin-bottom:22px;

    font-weight:700;

}

/*==============================
      Description
===============================*/

.service-card p{

    color:#D7E1F2;

    font-size:18px;

    line-height:34px;

    margin-bottom:35px;

}

/*==============================
      Tech Stack
===============================*/

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:40px;

}

.tech-stack span{

    padding:12px 20px;

    border-radius:30px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    font-size:14px;

    transition:.35s;

}

.tech-stack span:hover{

    background:#F4B548;

    color:#081B36;

    transform:translateY(-4px);

}

/*==============================
      Features
===============================*/

.service-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;

}

.service-features div{

    display:flex;

    align-items:center;

    gap:14px;

    color:#fff;

    font-size:17px;

}

.service-features i{

    width:36px;

    height:36px;

    border-radius:50%;

    background:#F4B548;

    color:#081B36;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    flex-shrink:0;

}

/*==============================
      Button
===============================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 32px;

    border-radius:14px;

    background:#F4B548;

    color:#081B36;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

    transition:.35s;

}

.service-btn:hover{

    transform:translateY(-5px);

    background:#FFD166;

    box-shadow:
    0 15px 35px rgba(244,181,72,.35);

}

.service-btn i{

    transition:.3s;

}

.service-btn:hover i{

    transform:translateX(6px);

}

/*==============================
        Right Menu
===============================*/

.service-menu{

    display:flex;

    flex-direction:column;

    gap:20px;

}

/*==============================
        Menu Item
===============================*/

.service-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    cursor:pointer;

    transition:.35s;

    backdrop-filter:blur(12px);

}

.service-item:hover{

    transform:translateX(8px);

    border-color:#F4B548;

    background:rgba(244,181,72,.08);

}

/*==============================
        Active Item
===============================*/

.service-item.active{

    background:#F4B548;

    border-color:#F4B548;

    box-shadow:0 15px 40px rgba(244,181,72,.30);

}

.service-item.active .menu-content h4,

.service-item.active .menu-content p,

.service-item.active .menu-icon i{

    color:#081B36;

}

/*==============================
        Menu Icon
===============================*/

.menu-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    transition:.35s;

}

.menu-icon i{

    font-size:26px;

    color:#F4B548;

}

.service-item:hover .menu-icon{

    transform:rotate(-10deg);

}

/*==============================
        Menu Content
===============================*/

.menu-content{

    flex:1;

}

.menu-content h4{

    color:#fff;

    font-size:20px;

    margin-bottom:8px;

    transition:.3s;

}

.menu-content p{

    color:#C9D3E2;

    font-size:15px;

    line-height:28px;

    transition:.3s;

}

/*==============================
      Swiper Pagination
===============================*/

.myServiceSlider .swiper-pagination{

    bottom:20px !important;

}

.myServiceSlider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.35;

    transition:.35s;

}

.myServiceSlider .swiper-pagination-bullet-active{

    width:36px;

    border-radius:30px;

    background:#F4B548;

    opacity:1;

}

/*==============================
      Navigation Buttons
===============================*/

.myServiceSlider .swiper-button-prev,

.myServiceSlider .swiper-button-next{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.12);

    color:#F4B548;

    transition:.35s;

}

.myServiceSlider .swiper-button-prev{

    left:20px;

}

.myServiceSlider .swiper-button-next{

    right:20px;

}

.myServiceSlider .swiper-button-prev::after,

.myServiceSlider .swiper-button-next::after{

    font-size:20px;

    font-weight:700;

}

.myServiceSlider .swiper-button-prev:hover,

.myServiceSlider .swiper-button-next:hover{

    background:#F4B548;

    color:#081B36;

    transform:scale(1.08);

}

/*==============================
        Slide Animation
===============================*/

.swiper-slide-active .service-icon{

    animation:fadeUp .5s ease;

}

.swiper-slide-active h3{

    animation:fadeUp .7s ease;

}

.swiper-slide-active p{

    animation:fadeUp .9s ease;

}

.swiper-slide-active .tech-stack{

    animation:fadeUp 1.1s ease;

}

.swiper-slide-active .service-features{

    animation:fadeUp 1.3s ease;

}

.swiper-slide-active .service-btn{

    animation:fadeUp 1.5s ease;

}

/*==============================
        Keyframes
===============================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==============================
        Large Tablet
===============================*/

@media(max-width:1200px){

.services-wrapper{

    grid-template-columns:60% 40%;

    gap:30px;

}

.service-card{

    padding:45px;

}

.service-card h3{

    font-size:38px;

}

}

/*==============================
        Tablet
===============================*/

@media(max-width:991px){

.services-wrapper{

    grid-template-columns:1fr;

}

.service-menu{

    margin-top:40px;

}

.service-card{

    min-height:auto;

    padding:40px;

}

.service-card h3{

    font-size:34px;

}

.services-heading h2{

    font-size:42px;

}

.services-heading p{

    font-size:17px;

}

}

/*==============================
        Mobile
===============================*/

@media(max-width:768px){

.services-section{

    padding:80px 0;

}

.services-heading{

    margin-bottom:45px;

}

.services-heading h2{

    font-size:32px;

}

.services-heading p{

    font-size:16px;

    line-height:30px;

}

.service-card{

    padding:30px;

    border-radius:22px;

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

}

.service-icon i{

    font-size:28px;

}

.service-card h3{

    font-size:28px;

}

.service-card p{

    font-size:15px;

    line-height:28px;

}

.tech-stack{

    gap:10px;

}

.tech-stack span{

    padding:10px 16px;

    font-size:13px;

}

.service-features{

    grid-template-columns:1fr;

    gap:16px;

}

.service-features div{

    font-size:15px;

}

.service-btn{

    width:100%;

    justify-content:center;

}

.service-item{

    padding:18px;

    gap:16px;

}

.menu-icon{

    width:55px;

    height:55px;

}

.menu-icon i{

    font-size:22px;

}

.menu-content h4{

    font-size:18px;

}

.menu-content p{

    font-size:14px;

    line-height:24px;

}

.myServiceSlider .swiper-button-prev,

.myServiceSlider .swiper-button-next{

    display:none;

}

}

/*==============================
        Small Mobile
===============================*/

@media(max-width:480px){

.services-heading h2{

    font-size:26px;

}

.section-subtitle{

    font-size:12px;

    padding:8px 18px;

}

.service-card{

    padding:25px;

}

.service-card h3{

    font-size:24px;

}

.service-card p{

    font-size:14px;

    line-height:26px;

}

.tech-stack span{

    font-size:12px;

    padding:8px 14px;

}

.service-features div{

    font-size:14px;

}

.menu-content h4{

    font-size:16px;

}

.menu-content p{

    display:none;

}

.menu-icon{

    width:50px;

    height:50px;

}

}

/*==============================
        Smooth Scrolling
===============================*/

.service-item,

.service-card,

.service-btn,

.tech-stack span,

.menu-icon{

    transition:all .35s ease;

}
/* 
.myServiceSlider .swiper-button-prev,
.myServiceSlider .swiper-button-next{

    width:55px;
    height:55px;

    background:#F4B548;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#081B36;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

}

.myServiceSlider .swiper-button-prev{

    left:20px;

}

.myServiceSlider .swiper-button-next{

    right:20px;

}

.myServiceSlider .swiper-button-prev:hover,
.myServiceSlider .swiper-button-next:hover{

    transform:scale(1.08);

    background:#FFD166;

} */

/*====================================
        Footer Layout
====================================*/

.service-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:40px;

}

/*====================================
        Navigation
====================================*/

.slider-navigation{

    display:flex;

    gap:15px;

}

.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next{

    position:relative;

    left:auto;
    right:auto;
    top:auto;
    bottom:auto;

    width:55px;
    height:55px;

    margin:0;

    border-radius:50%;

    background:#F4B548;

    color:#081B36;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.slider-navigation .swiper-button-prev::after,
.slider-navigation .swiper-button-next::after{

    display:none;

}

.slider-navigation i{

    font-size:18px;

}

.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover{

    transform:translateY(-4px);

    background:#FFD166;

}

@media(max-width:768px){

.service-footer{

    flex-direction:column;

    gap:25px;

    align-items:flex-start;

}

}

/*=====================================================
                CHAVO PORTFOLIO
                  PART - 1
======================================================*/

/*==============================
        Portfolio Section
===============================*/

.portfolio-section{

    position:relative;

    padding:40px 0 40px 0;

    background:#07182F;

    overflow:hidden;

}

/*==============================
        Background Glow
===============================*/

.portfolio-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(130px);

    opacity:.18;

}

.portfolio-section .circle-one{

    width:350px;

    height:350px;

    background:#F4B548;

    left:-120px;

    top:-120px;

}

.portfolio-section .circle-two{

    width:420px;

    height:420px;

    background:#2878FF;

    right:-150px;

    bottom:-150px;

}

/*==============================
        Container
===============================*/

.portfolio-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*==============================
        Heading
===============================*/

.portfolio-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.portfolio-heading .section-subtitle{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(244,181,72,.10);

    color:#F4B548;

    border:1px solid rgba(244,181,72,.25);

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:600;

}

.portfolio-heading h2{

    margin-top:22px;

    font-size:52px;

    color:#fff;

    line-height:1.2;

}

.portfolio-heading h2 span{

    display:block;

    color:#F4B548;

}

.portfolio-heading p{

    margin-top:20px;

    color:#CBD6E6;

    font-size:18px;

    line-height:34px;

}

/*==============================
        Swiper
===============================*/

.portfolioSlider{

    position:relative;

    overflow:hidden;

    padding-bottom:80px;

}

.portfolioSlider .swiper-wrapper{

    display:flex;

}

.portfolioSlider .swiper-slide{

    height:auto;

}

/*==============================
        Portfolio Card
===============================*/

.portfolio-card{

    position:relative;

    background:linear-gradient(135deg,#10284D,#081A35);

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.30);

    height:100%;

}

.portfolio-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

/*==============================
        Image
===============================*/

.portfolio-image{

    position:relative;

    height:280px;

    overflow:hidden;

}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.portfolio-card:hover .portfolio-image img{

    transform:scale(1.08);

}

/*==============================
        Overlay
===============================*/

.portfolio-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(8,27,54,.85),
        rgba(8,27,54,.10)
    );

    z-index:1;

}

/*==============================
        Badge
===============================*/

.portfolio-badge{

    position:absolute;

    top:20px;

    left:20px;

    z-index:2;

    background:#F4B548;

    color:#081B36;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

/*==============================
        Content
===============================*/

.portfolio-content{

    padding:30px;

}

.portfolio-content h3{

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

    line-height:1.3;

}

.portfolio-content p{

    color:#C8D4E5;

    font-size:16px;

    line-height:30px;

    margin-bottom:25px;

}

/*==============================
        Technology Tags
===============================*/

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.portfolio-tags span{

    padding:10px 18px;

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.10);

    border-radius:30px;

    color:#fff;

    font-size:13px;

    transition:.35s;

}

.portfolio-tags span:hover{

    background:#F4B548;

    color:#081B36;

    transform:translateY(-3px);

}

/*==============================
        Button
===============================*/

.portfolio-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:#F4B548;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

    transition:.35s;

}

.portfolio-btn:hover{

    color:#fff;

}

.portfolio-btn i{

    transition:.35s;

}

.portfolio-btn:hover i{

    transform:translateX(6px);

}


/*==============================
        Card Glow Effect
===============================*/

.portfolio-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(244,181,72,.5),
        rgba(40,120,255,.4)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    opacity:0;

    transition:.4s;

}

.portfolio-card:hover::before{

    opacity:1;

}

/*==============================
        Hover Overlay
===============================*/

.portfolio-card::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(244,181,72,.12);

    border-radius:50%;

    filter:blur(70px);

    right:-100px;

    top:-120px;

    opacity:0;

    transition:.5s;

}

.portfolio-card:hover::after{

    opacity:1;

}

/*==============================
      Swiper Navigation
===============================*/

.portfolio-prev,
.portfolio-next{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    color:#F4B548;

    transition:.35s;

}

.portfolio-prev{

    left:calc(50% - 70px);

    bottom:0;

    top:auto;

}

.portfolio-next{

    right:calc(50% - 70px);

    bottom:0;

    top:auto;

}

.portfolio-prev::after,
.portfolio-next::after{

    display:none;

}

.portfolio-prev i,
.portfolio-next i{

    font-size:18px;

}

.portfolio-prev:hover,
.portfolio-next:hover{

    background:#F4B548;

    color:#081B36;

    transform:translateY(-5px);

}

/*==============================
      Pagination
===============================*/

.portfolio-pagination{

    bottom:18px !important;

}

.portfolio-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.3;

    transition:.35s;

}

.portfolio-pagination .swiper-pagination-bullet-active{

    width:40px;

    border-radius:20px;

    background:#F4B548;

    opacity:1;

}

/*==============================
        Tablet
===============================*/

@media(max-width:992px){

.portfolio-heading h2{

    font-size:42px;

}

.portfolio-content{

    padding:25px;

}

.portfolio-content h3{

    font-size:24px;

}

}

/*==============================
        Mobile
===============================*/

@media(max-width:768px){

.portfolio-section{

    padding:90px 0;

}

.portfolio-heading{

    margin-bottom:50px;

}

.portfolio-heading h2{

    font-size:32px;

}

.portfolio-heading p{

    font-size:16px;

    line-height:30px;

}

.portfolio-image{

    height:220px;

}

.portfolio-content{

    padding:22px;

}

.portfolio-content h3{

    font-size:22px;

}

.portfolio-content p{

    font-size:15px;

    line-height:28px;

}

.portfolio-tags{

    gap:10px;

}

.portfolio-tags span{

    font-size:12px;

    padding:8px 14px;

}

.portfolio-prev,
.portfolio-next{

    display:none;

}

}

/*==============================
      Small Mobile
===============================*/

@media(max-width:480px){

.portfolio-heading h2{

    font-size:26px;

}

.portfolio-image{

    height:190px;

}

.portfolio-content h3{

    font-size:20px;

}

.portfolio-content p{

    font-size:14px;

    line-height:26px;

}

}

/*==========================================
            BLOG SECTION
==========================================*/

.blog-section{
    position:relative;
    padding:60px 0 40px 0;
    background:#081B36;
    overflow:hidden;
}

.blog-section .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*==========================================
            Heading
==========================================*/

.blog-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.blog-heading .section-subtitle{
    display:inline-block;
    padding:10px 24px;
    background:rgba(244,181,72,.1);
    color:#F4B548;
    border:1px solid rgba(244,181,72,.3);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.blog-heading h2{
    margin-top:20px;
    color:#fff;
    font-size:48px;
    line-height:1.2;
}

.blog-heading h2 span{
    display:block;
    color:#F4B548;
}

.blog-heading p{
    margin-top:18px;
    color:#BFC9D9;
    font-size:17px;
    line-height:32px;
}

/*==========================================
            Swiper
==========================================*/

.blogSlider{
    position:relative;
    padding-bottom:70px;
}

.blogSlider .swiper-slide{
    height:auto;
}

/*==========================================
            Blog Card
==========================================*/

.blog-card{

    background:#10284D;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    height:100%;

    display:flex;

    flex-direction:column;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/*==========================================
            Blog Image
==========================================*/

.blog-image{

    position:relative;

    overflow:hidden;

    height:220px;

}

.blog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover .blog-image img{

    transform:scale(1.08);

}

/*==========================================
            Category Badge
==========================================*/

.blog-category{

    position:absolute;

    top:18px;

    left:18px;

    background:#F4B548;

    color:#081B36;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}
/*==========================================
            Blog Content
==========================================*/

.blog-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.blog-meta{

    display:flex;

    align-items:center;

    margin-bottom:18px;

}

.blog-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    color:#AFC3DA;

    font-size:14px;

}

.blog-meta i{

    color:#F4B548;

}

/*==========================================
            Blog Title
==========================================*/

.blog-content h3{

    color:#fff;

    font-size:24px;

    line-height:34px;

    margin-bottom:16px;

    transition:.35s;

}

.blog-card:hover h3{

    color:#F4B548;

}

/*==========================================
            Blog Description
==========================================*/

.blog-content p{

    color:#C7D3E5;

    font-size:15px;

    line-height:28px;

    margin-bottom:28px;

    flex:1;

}

/*==========================================
            Read More Button
==========================================*/

.blog-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#F4B548;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.blog-btn i{

    transition:.35s;

}

.blog-btn:hover{

    color:#fff;

}

.blog-btn:hover i{

    transform:translateX(6px);

}

/*==========================================
        Navigation Buttons
==========================================*/

.blog-prev,
.blog-next{

    width:54px;

    height:54px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:#F4B548;

    transition:.35s;

}

.blog-prev{

    left:-15px;

}

.blog-next{

    right:-15px;

}

.blog-prev::after,
.blog-next::after{

    display:none;

}

.blog-prev i,
.blog-next i{

    font-size:18px;

}

.blog-prev:hover,
.blog-next:hover{

    background:#F4B548;

    color:#081B36;

}

/*==========================================
            Pagination
==========================================*/

.blog-pagination{

    bottom:5px !important;

}

.blog-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.3;

    transition:.3s;

}

.blog-pagination .swiper-pagination-bullet-active{

    width:34px;

    border-radius:20px;

    background:#F4B548;

    opacity:1;

}

/*==========================================
            Tablet
==========================================*/

@media(max-width:992px){

.blog-heading h2{

    font-size:40px;

}

.blog-image{

    height:200px;

}

.blog-content{

    padding:22px;

}

.blog-content h3{

    font-size:21px;

    line-height:30px;

}

}

/*==========================================
            Mobile
==========================================*/

@media(max-width:768px){

.blog-section{

    padding:90px 0;

}

.blog-heading{

    margin-bottom:45px;

}

.blog-heading h2{

    font-size:32px;

}

.blog-heading p{

    font-size:16px;

    line-height:28px;

}

.blog-image{

    height:190px;

}

.blog-content{

    padding:20px;

}

.blog-content h3{

    font-size:20px;

}

.blog-content p{

    font-size:14px;

    line-height:26px;

}

.blog-prev,
.blog-next{

    display:none;

}

}

@media(max-width:480px){

.blog-heading h2{

    font-size:26px;

}

.blog-content h3{

    font-size:18px;

    line-height:28px;

}

.blog-content p{

    font-size:14px;

}

}

/*==========================================
            CONTACT SECTION
==========================================*/

.contact-section{

    position:relative;

    padding:60px 0;

    background:#081B36;

    overflow:hidden;

}

.contact-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*==========================================
            Heading
==========================================*/

.contact-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.contact-heading .section-subtitle{

    display:inline-block;

    padding:10px 24px;

    background:rgba(244,181,72,.10);

    border:1px solid rgba(244,181,72,.25);

    color:#F4B548;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-heading h2{

    margin-top:20px;

    font-size:52px;

    color:#fff;

    line-height:1.2;

}

.contact-heading h2 span{

    display:block;

    color:#F4B548;

}

.contact-heading p{

    margin-top:18px;

    color:#C6D4E5;

    font-size:18px;

    line-height:34px;

}

/*==========================================
        Contact Layout
==========================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:45px;

    align-items:start;

}

/*==========================================
        Contact Information
==========================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.info-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-6px);

    border-color:#F4B548;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.info-icon{

    width:60px;

    height:60px;

    background:#F4B548;

    color:#081B36;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.info-icon i{

    font-size:24px;

}

.info-text h4{

    color:#fff;

    font-size:20px;

    margin-bottom:8px;

}

.info-text p{

    color:#C8D3E2;

    line-height:28px;

    font-size:15px;

}

/*==========================================
            CONTACT FORM
==========================================*/

.contact-form-box{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:20px 40px 0px 40px ;

}

.contact-form{

    margin-bottom:40px;

}

/*==========================================
            Input Row
==========================================*/

.input-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

.input-group{

    display:flex;

    flex-direction:column;

}

.input-group label{

    color:#fff;

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

}

/*==========================================
            Inputs
==========================================*/

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:16px 18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:#fff;

    font-size:15px;

    outline:none;

    transition:.35s;

    resize:none;

}

.input-group input::placeholder,
.input-group textarea::placeholder{

    color:#9FB1C7;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#F4B548;

    box-shadow:0 0 0 3px rgba(244,181,72,.15);

}

/*==========================================
            Select Options
==========================================*/

.input-group select{

    appearance:none;

    cursor:pointer;

}

.input-group select option{

    background:#081B36;

    color:#fff;

}

/*==========================================
            Button
==========================================*/

.contact-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    background:#F4B548;

    color:#081B36;

    border:none;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;
    margin-top: 15px;

}

.contact-btn:hover{

    background:#FFD166;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(244,181,72,.35);

}

.contact-btn i{

    transition:.35s;

}

.contact-btn:hover i{

    transform:translateX(5px);

}

/*==========================================
            Google Map
==========================================*/

.contact-map{

    margin-top:40px;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.contact-map iframe{

    width:100%;

    height:320px;

    border:0;

    display:block;

}

/*==========================================
            Responsive
==========================================*/

@media(max-width:992px){

.contact-wrapper{

    grid-template-columns:1fr;

}

.contact-info{

    margin-bottom:15px;

}

}

@media(max-width:768px){

.contact-section{

    padding:90px 0;

}

.contact-heading{

    margin-bottom:50px;

}

.contact-heading h2{

    font-size:34px;

}

.contact-heading p{

    font-size:16px;

    line-height:30px;

}

.contact-form-box{

    padding:25px;

}

.input-row{

    grid-template-columns:1fr;

}

.info-card{

    padding:20px;

}

.info-icon{

    width:55px;

    height:55px;

}

.info-icon i{

    font-size:22px;

}

.contact-btn{

    width:100%;

    justify-content:center;

}

.contact-map iframe{

    height:260px;

}

}

@media(max-width:480px){

.contact-heading h2{

    font-size:28px;

}

.contact-heading p{

    font-size:15px;

}

.info-text h4{

    font-size:18px;

}

.info-text p{

    font-size:14px;

    line-height:24px;

}

.contact-form-box{

    padding:20px;

}

.input-group input,
.input-group select,
.input-group textarea{

    padding:14px 16px;

    font-size:14px;

}

.contact-map iframe{

    height:220px;

}

}

/*==========================================
            FULL WIDTH MAP
==========================================*/

.map-section{

    margin-top:80px;

}

.map-heading{

    text-align:center;

    margin-bottom:35px;

}

.map-heading h3{

    color:#ffffff;

    font-size:36px;

    margin-top:15px;

}

.full-map{

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.full-map iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}
@media(max-width:768px){

.full-map iframe{

    height:350px;

}

.map-heading h3{

    font-size:28px;

}

}

@media(max-width:480px){

.full-map iframe{

    height:280px;

}

}

/*==========================================
            GALLERY SECTION
==========================================*/

.gallery-section{

    position:relative;

    padding:120px 0;

    background:#081B36;

    overflow:hidden;

}

.gallery-section .container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/*==========================================
            Heading
==========================================*/

.gallery-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.gallery-heading .section-subtitle{

    display:inline-block;

    padding:10px 24px;

    background:rgba(244,181,72,.10);

    border:1px solid rgba(244,181,72,.25);

    color:#F4B548;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.gallery-heading h2{

    margin-top:20px;

    color:#ffffff;

    font-size:52px;

    line-height:1.2;

}

.gallery-heading h2 span{

    display:block;

    color:#F4B548;

}

.gallery-heading p{

    margin-top:18px;

    color:#C7D4E5;

    font-size:18px;

    line-height:34px;

}

/*==========================================
            Gallery Grid
==========================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==========================================
            Gallery Item
==========================================*/

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    background:#10284D;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/*==========================================
            Image
==========================================*/

.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.6s ease;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

/*==========================================
            GALLERY OVERLAY
==========================================*/

.gallery-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        rgba(8,27,54,.15),
        rgba(8,27,54,.90)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s ease;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

/*==========================================
            PLUS ICON
==========================================*/

.gallery-overlay i{

    width:70px;

    height:70px;

    background:#F4B548;

    color:#081B36;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    transform:scale(.5);

    transition:.4s ease;

    box-shadow:0 10px 30px rgba(244,181,72,.35);

}

.gallery-item:hover .gallery-overlay i{

    transform:scale(1);

}

/*==========================================
            GLOW BORDER
==========================================*/

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(244,181,72,.65),
        rgba(40,120,255,.45)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.gallery-item:hover::before{

    opacity:1;

}

/*==========================================
        TABLET RESPONSIVE
==========================================*/

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.gallery-heading h2{

    font-size:42px;

}

.gallery-item img{

    height:230px;

}

}

/*==========================================
        MOBILE RESPONSIVE
==========================================*/

@media(max-width:768px){

.gallery-section{

    padding:90px 0;

}

.gallery-heading{

    margin-bottom:50px;

}

.gallery-heading h2{

    font-size:34px;

}

.gallery-heading p{

    font-size:16px;

    line-height:30px;

}

.gallery-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.gallery-item img{

    height:240px;

}

.gallery-overlay i{

    width:60px;

    height:60px;

    font-size:20px;

}

}

/*==========================================
        SMALL MOBILE
==========================================*/

@media(max-width:480px){

.gallery-heading h2{

    font-size:28px;

}

.gallery-heading p{

    font-size:15px;

}

.gallery-item img{

    height:220px;

}

}

/*==========================================
        LIGHTBOX
==========================================*/

.gallery-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.gallery-lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:90%;

    max-height:85vh;

    border-radius:15px;

    box-shadow:0 25px 60px rgba(0,0,0,.5);

}

.lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close:hover{

    color:#F4B548;

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    color:#fff;

    transition:.3s;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:#F4B548;

    color:#081B36;

}

.lightbox-prev i,
.lightbox-next i{

    font-size:20px;

}

@media(max-width:768px){

.lightbox-prev,
.lightbox-next{

    width:50px;

    height:50px;

}

.lightbox-prev{

    left:15px;

}

.lightbox-next{

    right:15px;

}

.lightbox-close{

    right:20px;

    top:20px;

}

.lightbox-image{

    max-width:95%;

}

}
/* ============================================== */

/*==========================================
            PREMIUM FOOTER
==========================================*/

.premium-footer{

    position:relative;

    background:#041120;

    padding:40px 0 40px;

    overflow:hidden;

}

.premium-footer .container{

    width:90%;

    max-width:1400px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*==========================================
            BACKGROUND GLOW
==========================================*/

.footer-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

}

.footer-glow-1{

    width:350px;

    height:350px;

    background:#005BFF;

    top:-120px;

    left:-120px;

}

.footer-glow-2{

    width:320px;

    height:320px;

    background:#F4B548;

    right:-100px;

    bottom:80px;

}

/*==========================================
            CTA CARD
==========================================*/

.footer-cta{

    max-width:1100px;

    margin:0 auto 140px;

    text-align:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:70px 60px;

    position:relative;

    overflow:hidden;

}

.footer-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,91,255,.08),
        rgba(244,181,72,.08)
    );

    pointer-events:none;

}

.footer-tag{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:rgba(244,181,72,.12);

    border:1px solid rgba(244,181,72,.30);

    color:#F4B548;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.footer-cta h2{

    margin:30px 0 20px;

    font-size:58px;

    color:#ffffff;

    line-height:1.15;

}

.footer-cta h2 span{

    display:block;

    color:#F4B548;

}

.footer-cta p{

    max-width:700px;

    margin:auto;

    color:#C7D4E5;

    line-height:34px;

    font-size:18px;

}
/*==========================================
            CTA BUTTONS
==========================================*/

.footer-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.footer-buttons a{

    text-decoration:none;

    padding:18px 40px;

    border-radius:60px;

    font-size:16px;

    font-weight:600;

    transition:.4s ease;

}

.btn-primary{

    background:#F4B548;

    color:#041120;

    box-shadow:0 15px 40px rgba(244,181,72,.35);

}

.btn-primary:hover{

    transform:translateY(-6px);

    background:#FFD369;

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    color:#ffffff;

}

.btn-secondary:hover{

    background:#005BFF;

    border-color:#005BFF;

    transform:translateY(-6px);

}

/*==========================================
        HUGE BACKGROUND TEXT
==========================================*/

.footer-big-text{

    position:absolute;

    top:420px;

    left:50%;

    transform:translateX(-50%);

    font-size:180px;

    font-weight:800;

    letter-spacing:18px;

    color:rgba(255,255,255,.03);

    text-transform:uppercase;

    white-space:nowrap;

    pointer-events:none;

    user-select:none;

}

/*==========================================
        FOOTER GRID
==========================================*/

.footer-content{

    position:relative;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:60px;

    z-index:2;

}

/*==========================================
        ABOUT COLUMN
==========================================*/

.footer-about img{

    width:180px;

    margin-bottom:30px;

}

.footer-about p{

    color:#B8C7D9;

    line-height:32px;

    font-size:16px;

    max-width:340px;

}

/*==========================================
        COLUMN TITLES
==========================================*/

.footer-col h3{

    color:#ffffff;

    font-size:24px;

    margin-bottom:30px;

    position:relative;

}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:50px;

    height:3px;

    border-radius:20px;

    background:#F4B548;

}

/*==========================================
        LINKS
==========================================*/

.footer-col ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-col ul li{

    margin-bottom:18px;

}

.footer-col ul li a{

    color:#C7D4E5;

    text-decoration:none;

    transition:.35s;

    display:inline-block;

}

.footer-col ul li a:hover{

    color:#F4B548;

    transform:translateX(10px);

}
/*==========================================
        CONTACT INFORMATION
==========================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.footer-contact div{

    display:flex;

    align-items:flex-start;

    gap:16px;

}

.footer-contact i{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    color:#F4B548;

    font-size:18px;

    transition:.35s;

}

.footer-contact div:hover i{

    background:#F4B548;

    color:#041120;

    transform:rotate(-8deg) scale(1.08);

}

.footer-contact span{

    color:#C7D4E5;

    line-height:28px;

    font-size:15px;

}

/*==========================================
            DIVIDER
==========================================*/

.footer-divider{

    width:100%;

    height:1px;

    /* margin:70px 0 35px; */

    background:linear-gradient(
        90deg,
        transparent,
        rgba(244,181,72,.6),
        rgba(0,91,255,.6),
        transparent
    );

}

/*==========================================
        FOOTER BOTTOM
==========================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================
        SOCIAL ICONS
==========================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:18px;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#ffffff;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.footer-social a:hover{

    transform:translateY(-8px);

    background:#F4B548;

    color:#041120;

    box-shadow:0 15px 35px rgba(244,181,72,.35);

}

/*==========================================
            COPYRIGHT
==========================================*/

.footer-copy p{

    color:#C7D4E5;

    font-size:15px;

    margin:0;

}

.footer-copy strong{

    color:#F4B548;

}
/*==========================================
            BACK TO TOP BUTTON
==========================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#F4B548,#FFCC66);

    color:#041120;

    font-size:20px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 40px rgba(244,181,72,.35);

    transition:.35s;

    z-index:999;

}

.back-to-top:hover{

    transform:translateY(-8px) scale(1.08);

    box-shadow:0 25px 50px rgba(244,181,72,.45);

}

/*==========================================
            TABLET
==========================================*/

@media(max-width:992px){

.footer-cta{

    padding:60px 35px;

    margin-bottom:100px;

}

.footer-cta h2{

    font-size:44px;

}

.footer-big-text{

    font-size:120px;

    top:360px;

}

.footer-content{

    grid-template-columns:repeat(2,1fr);

    gap:50px;

}

}

/*==========================================
            MOBILE
==========================================*/

@media(max-width:768px){

.premium-footer{

    padding:120px 0 30px;

}

.footer-cta{

    padding:40px 25px;

    border-radius:24px;

    margin-bottom:70px;

}

.footer-tag{

    font-size:12px;

    padding:10px 20px;

}

.footer-cta h2{

    font-size:34px;

}

.footer-cta p{

    font-size:16px;

    line-height:30px;

}

.footer-buttons{

    flex-direction:column;

}

.footer-buttons a{

    width:100%;

    text-align:center;

}

.footer-big-text{

    display:none;

}

.footer-content{

    grid-template-columns:1fr;

    text-align:center;

    gap:45px;

}

.footer-about{

    margin:auto;

}

.footer-about p{

    max-width:100%;

}

.footer-col h3::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-contact div{

    justify-content:center;

    text-align:left;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:25px;

}

.footer-social{

    justify-content:center;

}

.back-to-top{

    width:50px;

    height:50px;

    right:18px;

    bottom:18px;

    font-size:18px;

}

}

/*==========================================
            SMALL MOBILE
==========================================*/

@media(max-width:480px){

.footer-cta h2{

    font-size:28px;

}

.footer-cta p{

    font-size:15px;

}

.footer-col h3{

    font-size:22px;

}

.footer-about img{

    width:160px;

}

.footer-copy p{

    font-size:14px;

}

.footer-social a{

    width:46px;

    height:46px;

}

}
