/*=========================================
GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071B3B;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

/*=========================================
HEADER
=========================================*/

.header-area{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    z-index:99999;
    background: #1f2227;
    transition:.4s;

}
.header-btn a{
    text-decoration: none;
}
.hero-btn a{
    text-decoration: none;
}

.header-area.sticky{

    background:rgba(8,28,58,.92);

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.header{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:70px;

}

.menu ul{

    display:flex;

    align-items:center;

    gap:40px;

}

.menu ul li{

    position:relative;

}

.menu ul li a{

    color:#fff;

    font-size:16px;

    font-weight:500;

    transition:.4s;

}

.menu ul li a:hover{

    color:#D4AF37;

}

.menu ul li a.active{

    color:#D4AF37;

}

.menu ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.4s;

}

.menu ul li a:hover::after{

    width:100%;

}

.quote-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 34px;

    border-radius:50px;

    background:#D4AF37;

    color:#fff;

    font-weight:600;

    transition:.4s;

}

.quote-btn:hover{

    background:#fff;

    color:#0B3B8C;

    transform:translateY(-3px);

}

.mobile-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.menu{

display:none;

}

.header-btn{

display:none;

}

.mobile-toggle{

display:block;

}

.logo img{

height:60px;

}

.header{

height:80px;

}

}

/*=========================================
HERO SECTION
=========================================*/

.hero-section{

position:relative;

padding:180px 0 120px;

overflow:hidden;

background:
linear-gradient(135deg,#06142D 0%,#0B3B8C 45%,#123B8A 100%);

min-height:100vh;

display:flex;

align-items:center;

}


/*=============================
BACKGROUND SHAPES
=============================*/

.hero-shape{

position:absolute;

border-radius:50%;

filter:blur(120px);

opacity:.35;

z-index:0;

}

.hero-shape-1{

width:420px;

height:420px;

background:#FFD54F;

left:-120px;

top:-120px;

animation:shapeOne 12s infinite alternate;

}

.hero-shape-2{

width:500px;

height:500px;

background:#1976D2;

right:-150px;

bottom:-150px;

animation:shapeTwo 15s infinite alternate;

}

.hero-shape-3{

width:220px;

height:220px;

background:#ffffff;

left:40%;

top:20%;

opacity:.08;

animation:floatShape 8s infinite;

}

@keyframes shapeOne{

0%{

transform:translateY(0);

}

100%{

transform:translateY(80px);

}

}

@keyframes shapeTwo{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-120px);

}

}

@keyframes floatShape{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

100%{

transform:translateY(0);

}

}


.menu a{
    text-decoration: none;
}


/*=============================
CONTENT
=============================*/

.hero-content{

position:relative;

z-index:2;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(20px);

border-radius:50px;

color:#fff;

font-size:14px;

margin-bottom:25px;

}

.hero-badge i{

color:#FFD54F;

}

.hero-content h1{

font-size:35px;

font-weight:800;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

.hero-content h1 span{

color:#FFD54F;

position:relative;

}

.hero-content h1 span::after{

content:"";

position:absolute;

left:0;

bottom:6px;

width:100%;

height:10px;

background:rgba(255,213,79,.25);

z-index:-1;

}

.hero-content p{

font-size:18px;

line-height:32px;

color:rgba(255,255,255,.85);

max-width:620px;

margin-bottom:40px;

}

/*=========================================
HERO BUTTONS
=========================================*/

.hero-btn{

display:flex;

gap:20px;

margin-bottom:50px;

flex-wrap:wrap;

}

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

background:linear-gradient(135deg,#FFD54F,#D4AF37);

color:#071B3B;

font-weight:700;

border-radius:60px;

transition:.4s;

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.primary-btn:hover{

transform:translateY(-6px);

color:#071B3B;

box-shadow:0 20px 40px rgba(212,175,55,.45);

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

border:2px solid rgba(255,255,255,.25);

backdrop-filter:blur(20px);

background:rgba(255,255,255,.08);

border-radius:60px;

color:#fff;

font-weight:600;

transition:.4s;

}

.secondary-btn:hover{

background:#fff;

color:#0B3B8C;

transform:translateY(-6px);

}



/*=========================================
COUNTER
=========================================*/

.hero-counter{

display:flex;

gap:25px;

flex-wrap:wrap;

}

.counter-box{

width:130px;

padding:25px 15px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(20px);

border-radius:20px;

text-align:center;

transition:.4s;

}

.counter-box:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.15);

}

.counter-box h2{

font-size:36px;

font-weight:700;

color:#FFD54F;

margin-bottom:8px;

}

.counter-box p{

margin:0;

font-size:15px;

color:#fff;

}



/*=========================================
RIGHT IMAGE
=========================================*/

.hero-image{

position:relative;

z-index:2;

text-align:center;

}

.main-image{

width:100%;

max-width:620px;

animation:heroFloat 5s ease-in-out infinite;

filter:drop-shadow(0 25px 45px rgba(0,0,0,.30));

}

@keyframes heroFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}



/*=========================================
FLOATING CARDS
=========================================*/

.floating-card{

position:absolute;

width:170px;

padding:20px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(18px);

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.15);

text-align:center;

animation:floatingCard 4s ease-in-out infinite;

}

.floating-card i{

font-size:28px;

color:#FFD54F;

margin-bottom:10px;

}

.floating-card h5{

font-size:16px;

color:#fff;

margin-bottom:6px;

}

.floating-card strong{

font-size:28px;

color:#fff;

}

.card-one{

top:20px;

left:-40px;

}

.card-two{

top:180px;

right:-20px;

animation-delay:1s;

}

.card-three{

bottom:40px;

left:10px;

animation-delay:2s;

}

@keyframes floatingCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*=========================================
LOGO CIRCLE
=========================================*/

.logo-circle{

position:absolute;

right:50px;

bottom:-25px;

width:120px;

height:120px;

background:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 20px 40px rgba(0,0,0,.25);

animation:rotateLogo 18s linear infinite;

}

.logo-circle img{

width:80px;

}

@keyframes rotateLogo{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}


/*=========================================
HERO RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero-content h1{

font-size:58px;

}

.main-image{

max-width:540px;

}

}

@media(max-width:992px){

.hero-section{

padding:150px 0 80px;

text-align:center;

}

.hero-content{

margin-bottom:60px;

}

.hero-content p{

margin:auto auto 40px;

}

.hero-btn{

justify-content:center;

}

.hero-counter{

justify-content:center;

}

.hero-image{

margin-top:30px;

}

.card-one{

left:0;

top:20px;

}

.card-two{

right:0;

top:180px;

}

.card-three{

left:20px;

bottom:20px;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:42px;

line-height:1.3;

}

.hero-content p{

font-size:16px;

line-height:30px;

}

.hero-btn{

flex-direction:column;

}

.primary-btn,

.secondary-btn{

width:100%;

}

.counter-box{

width:46%;

}

.logo-circle{

display:none;

}

.floating-card{

display:none;

}

}

@media(max-width:576px){

.hero-section{

padding:130px 0 70px;

}

.hero-content h1{

font-size:34px;

}

.hero-badge{

font-size:13px;

padding:8px 18px;

}

.counter-box{

width:100%;

}

}



/*=========================================
HERO GRID
=========================================*/

.hero-section::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background-image:

linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

background-size:60px 60px;

pointer-events:none;

}



/*=========================================
SCROLL INDICATOR
=========================================*/

.scroll-down{

position:absolute;

left:50%;

bottom:35px;

transform:translateX(-50%);

z-index:20;

}

.scroll-down span{

display:block;

width:28px;

height:45px;

border:2px solid rgba(255,255,255,.45);

border-radius:40px;

position:relative;

}

.scroll-down span::before{

content:"";

position:absolute;

left:50%;

top:8px;

width:6px;

height:6px;

background:#FFD54F;

border-radius:50%;

transform:translateX(-50%);

animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

0%{

opacity:0;

top:8px;

}

50%{

opacity:1;

}

100%{

opacity:0;

top:24px;

}

}



/*=========================================
IMAGE HOVER
=========================================*/

.hero-image:hover .main-image{

transform:scale(1.02);

transition:.4s;

}



/*=========================================
GLOW
=========================================*/

.hero-image::after{

content:"";

position:absolute;

width:320px;

height:320px;

background:#FFD54F;

filter:blur(120px);

opacity:.18;

left:50%;

top:50%;

transform:translate(-50%,-50%);

z-index:-1;

}



/*=========================================
BOTTOM WAVE
=========================================*/

.hero-wave{

position:absolute;

left:0;

bottom:0;

width:100%;

line-height:0;

}

.hero-wave svg{

width:100%;

height:120px;

fill:#fff;

}

/*=========================================
TRUSTED TECHNOLOGIES
=========================================*/

.trusted-section{
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
    position:relative;
}

.section-tag{
    display:inline-block;
    padding:10px 25px;
    background:#eef4ff;
    color:#0B3B8C;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:30px;
    font-weight:700;
    color:#0B3B8C;
    margin-bottom:15px;
}

.section-text{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-bottom:60px;
}

/*============================*/

.brand-slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

.brand-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
}

.brand-item{

    width:170px;
    height:120px;

    background:#fff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #eee;

    flex-shrink:0;

}

.brand-item:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.brand-item img{

    width:70px;

    transition:.4s;

}

.brand-item:hover img{

    transform:scale(1.15);

}

/* Fade Left Right */

.brand-slider::before{

content:"";

position:absolute;

left:0;

top:0;

width:120px;

height:100%;

background:linear-gradient(to right,#fff,transparent);

z-index:5;

}

.brand-slider::after{

content:"";

position:absolute;

right:0;

top:0;

width:120px;

height:100%;

background:linear-gradient(to left,#fff,transparent);

z-index:5;

}


/* Responsive */

@media(max-width:768px){

.section-title{

font-size:34px;

}

.brand-item{

width:130px;

height:90px;

}

.brand-item img{

width:50px;

}

}


/*=========================================
OUR SERVICES
=========================================*/

.services-section{

    padding:120px 0;

    background:#f7f9fc;

    position:relative;

    overflow:hidden;

}

.services-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:#0B3B8C;

opacity:.05;

border-radius:50%;

top:-200px;

right:-150px;

filter:blur(80px);

}

.services-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:#D4AF37;

opacity:.08;

border-radius:50%;

left:-120px;

bottom:-120px;

filter:blur(80px);

}

/*========================*/

.service-card{

position:relative;

background:#fff;

padding:40px 30px;

border-radius:25px;

overflow:hidden;

transition:.45s;

box-shadow:0 15px 40px rgba(0,0,0,.08);

height:100%;

border:1px solid rgba(0,0,0,.05);

z-index:2;

}

.service-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

120deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transition:.8s;

}

.service-card:hover::before{

left:120%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(11,59,140,.15);

}

/*========================*/

.service-icon{

width:85px;

height:85px;

border-radius:22px;

background:linear-gradient(135deg,#0B3B8C,#184fae);

display:flex;

justify-content:center;

align-items:center;

margin-bottom:30px;

transition:.4s;

}

.service-icon i{

font-size:36px;

color:#fff;

transition:.4s;

}

.service-card:hover .service-icon{

background:linear-gradient(135deg,#D4AF37,#f6c84f);

transform:rotate(-8deg);

}

.service-card:hover .service-icon i{

color:#0B3B8C;

transform:scale(1.15);

}

/*========================*/

.service-card h4{

font-size:18px;

font-weight:700;

color:#081C3A;

margin-bottom:15px;

}

.service-card p{

font-size:16px;

line-height:30px;

color:#666;

margin-bottom:25px;

}

.service-card a{

display:inline-flex;

align-items:center;

gap:10px;

font-weight:600;

color:#0B3B8C;

transition:.3s;

text-decoration:none;

}

.service-card:hover a{

color:#D4AF37;

}

.service-card a i{

transition:.3s;

}

.service-card:hover a i{

transform:translateX(8px);

}


/*=========================================
SERVICE CARD ANIMATION
=========================================*/

.service-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:0;

height:5px;

background:linear-gradient(90deg,#0B3B8C,#D4AF37);

transition:.5s;

}

.service-card:hover::after{

width:100%;

}


/*=========================================
NUMBER
=========================================*/

.service-card{

counter-increment:service;

}

.service-card .service-number{

position:absolute;

right:25px;

top:20px;

font-size:60px;

font-weight:700;

color:rgba(11,59,140,.05);

transition:.4s;

}

.service-card:hover .service-number{

transform:scale(1.1);

color:rgba(212,175,55,.12);

}


/*=========================================
ICON GLOW
=========================================*/

.service-icon{

box-shadow:0 15px 35px rgba(11,59,140,.18);

}

.service-card:hover .service-icon{

box-shadow:0 20px 45px rgba(212,175,55,.35);

}


/*=========================================
TITLE
=========================================*/

.service-card h4{

transition:.3s;

}

.service-card:hover h4{

color:#0B3B8C;

}


/*=========================================
READ MORE
=========================================*/

.service-card a{

position:relative;

}

.service-card a::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:2px;

background:#D4AF37;

transition:.4s;

}

.service-card:hover a::after{

width:100%;

}


/*=========================================
GRID
=========================================*/

.services-section .row{

position:relative;

z-index:2;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.services-section{

padding:90px 0;

}

.service-card{

padding:35px 25px;

}

.service-card h4{

font-size:22px;

}

}

@media(max-width:768px){

.services-section{

padding:70px 0;

}

.section-title{

font-size:34px;

}

.section-text{

font-size:16px;

}

.service-icon{

width:70px;

height:70px;

}

.service-icon i{

font-size:30px;

}

.service-card{

border-radius:20px;

}

}

@media(max-width:576px){

.service-card{

padding:30px 22px;

}

.service-card h4{

font-size:20px;

}

.service-card p{

font-size:15px;

line-height:28px;

}

}


/*=========================================
PRICING SECTION
=========================================*/

.pricing-section{

    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.pricing-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:#0B3B8C;

opacity:.05;

border-radius:50%;

right:-180px;

top:-180px;

filter:blur(100px);

}

.pricing-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:#D4AF37;

opacity:.08;

border-radius:50%;

left:-150px;

bottom:-120px;

filter:blur(100px);

}

/*=======================*/

.pricing-card{

position:relative;

background:#fff;

border-radius:25px;

padding:45px 35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.45s;

overflow:hidden;

height:100%;

border:1px solid #ececec;

z-index:2;

}

.pricing-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(11,59,140,.15);

}

/*=======================*/

.pricing-label{

display:inline-block;

padding:8px 22px;

background:#eef4ff;

color:#0B3B8C;

font-size:14px;

font-weight:600;

border-radius:40px;

margin-bottom:25px;

}

.pricing-card h2{

font-size:40px;

font-weight:800;

color:#0B3B8C;

margin-bottom:15px;

}

.pricing-card p{

font-size:16px;

line-height:28px;

color:#666;

margin-bottom:30px;

}

/*=======================*/

.pricing-card ul{

margin:0;

padding:0;

list-style:none;

}

.pricing-card ul li{

padding:14px 0;

border-bottom:1px solid #eee;

font-size:16px;

color:#555;

display:flex;

align-items:center;

gap:12px;

}

.pricing-card ul li:last-child{

border:none;

}

.pricing-card ul li i{

color:#16a34a;

font-size:18px;

}

/*=========================================
PRICING BUTTON
=========================================*/

.pricing-btn{

display:block;

width:100%;

margin-top:35px;

padding:16px 20px;

text-align:center;

border-radius:50px;

background:linear-gradient(135deg,#0B3B8C,#184fae);

color:#fff;

font-weight:600;

font-size:16px;

transition:.4s;

text-decoration:none;

}

.pricing-btn:hover{

background:linear-gradient(135deg,#D4AF37,#f3c53d);

color:#081C3A;

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(212,175,55,.35);

}


/*=========================================
ACTIVE PLAN
=========================================*/

.active-plan{

background:linear-gradient(180deg,#0B3B8C,#123F92);

transform:scale(1.05);

border:none;

}

.active-plan h2,

.active-plan p,

.active-plan li,

.active-plan .pricing-label{

color:#fff;

}

.active-plan ul li{

border-bottom:1px solid rgba(255,255,255,.12);

}

.active-plan .pricing-label{

background:rgba(255,255,255,.15);

}

.active-plan .pricing-btn{

background:#D4AF37;

color:#081C3A;

}

.active-plan .pricing-btn:hover{

background:#fff;

color:#0B3B8C;

}


/*=========================================
POPULAR BADGE
=========================================*/

.popular-badge{

position:absolute;

top:20px;

right:-45px;

background:#D4AF37;

color:#081C3A;

padding:10px 55px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

box-shadow:0 10px 25px rgba(0,0,0,.2);

}


/*=========================================
PRICE SMALL TEXT
=========================================*/

.pricing-card h2 span{

font-size:18px;

font-weight:500;

margin-left:5px;

color:#777;

}

.active-plan h2 span{

color:#fff;

}


/*=========================================
HOVER EFFECT
=========================================*/

.pricing-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

120deg,

transparent,

rgba(255,255,255,.35),

transparent

);

transition:.8s;

}

.pricing-card:hover::before{

left:120%;

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.active-plan{

transform:none;

}

}

@media(max-width:768px){

.pricing-section{

padding:80px 0;

}

.pricing-card{

padding:35px 25px;

}

.pricing-card h2{

font-size:42px;

}

.popular-badge{

font-size:11px;

right:-48px;

padding:8px 50px;

}

}

/*=========================================
ACTIVE PLAN WHITE TEXT
=========================================*/

.active-plan{

    background:linear-gradient(135deg,#0B3B8C,#1B4FAE);

    color:#fff;

}

.active-plan .pricing-label{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.active-plan h2{

    color:#fff;

}

.active-plan h2 span{

    color:rgba(255,255,255,.85);

}

.active-plan p{

    color:rgba(255,255,255,.90);

}

.active-plan ul li{

    color:#fff;

    border-bottom:1px solid rgba(255,255,255,.12);

}

.active-plan ul li i{

    color:#FFD54F;

}

.active-plan .pricing-btn{

    background:#FFD54F;

    color:#081C3A;

}

.active-plan .pricing-btn:hover{

    background:#fff;

    color:#0B3B8C;

}


/*=========================================
PORTFOLIO SECTION
=========================================*/

.portfolio-section{

    padding:120px 0;

    background:#f8fafc;

    position:relative;

    overflow:hidden;

}

.portfolio-section::before{

content:"";

position:absolute;

top:-200px;

left:-180px;

width:450px;

height:450px;

background:#0B3B8C;

opacity:.05;

border-radius:50%;

filter:blur(100px);

}

.portfolio-section::after{

content:"";

position:absolute;

right:-180px;

bottom:-180px;

width:400px;

height:400px;

background:#D4AF37;

opacity:.08;

border-radius:50%;

filter:blur(100px);

}

/*==============================*/

.portfolio-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.45s;

height:100%;

}

.portfolio-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/*==============================*/

.portfolio-image{

position:relative;

overflow:hidden;

height:270px;

}

.portfolio-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.portfolio-card:hover img{

transform:scale(1.12);

}

/*==============================*/

.portfolio-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(8,28,58,.75);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.4s;

}

.portfolio-card:hover .portfolio-overlay{

opacity:1;

}

.portfolio-overlay a{

width:70px;

height:70px;

border-radius:50%;

background:#D4AF37;

display:flex;

justify-content:center;

align-items:center;

color:#081C3A;

font-size:24px;

transition:.4s;

text-decoration:none;

}

.portfolio-overlay a:hover{

transform:rotate(45deg) scale(1.1);

background:#fff;

}

/*==============================*/

.portfolio-content{

padding:30px;

}

.portfolio-content span{

display:inline-block;

padding:8px 18px;

background:#eef4ff;

border-radius:40px;

font-size:13px;

font-weight:600;

color:#0B3B8C;

margin-bottom:15px;

}

.portfolio-content h4{

font-size:24px;

font-weight:700;

color:#081C3A;

margin:0;

transition:.3s;

}

.portfolio-card:hover h4{

color:#0B3B8C;

}

/*=========================================
PORTFOLIO HOVER EFFECT
=========================================*/

.portfolio-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transition:.8s;

z-index:2;

pointer-events:none;

}

.portfolio-card:hover::before{

left:120%;

}

/*=========================================
IMAGE EFFECT
=========================================*/

.portfolio-image img{

transition:.8s ease;

}

.portfolio-card:hover .portfolio-image img{

transform:scale(1.08);

filter:brightness(.75);

}

/*=========================================
CONTENT
=========================================*/

.portfolio-content{

transition:.4s;

}

.portfolio-card:hover .portfolio-content{

background:#fff;

}

.portfolio-card:hover .portfolio-content span{

background:#0B3B8C;

color:#fff;

}

/*=========================================
ARROW
=========================================*/

.portfolio-overlay a{

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.portfolio-overlay a i{

transition:.3s;

}

.portfolio-overlay a:hover i{

transform:rotate(-45deg);

}

/*=========================================
VIEW ALL BUTTON
=========================================*/

.portfolio-btn{

margin-top:70px;

text-align:center;

}

.portfolio-btn a{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 45px;

border-radius:60px;

background:linear-gradient(135deg,#0B3B8C,#1D4FAF);

color:#fff;

font-size:17px;

font-weight:600;

transition:.4s;

text-decoration:none;

}

.portfolio-btn a:hover{

background:linear-gradient(135deg,#D4AF37,#FFD54F);

color:#081C3A;

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(212,175,55,.35);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.portfolio-section{

padding:90px 0;

}

.portfolio-image{

height:230px;

}

}

@media(max-width:768px){

.portfolio-section{

padding:70px 0;

}

.portfolio-content{

padding:22px;

}

.portfolio-content h4{

font-size:21px;

}

.portfolio-image{

height:220px;

}

.portfolio-overlay a{

width:55px;

height:55px;

font-size:18px;

}

}

@media(max-width:576px){

.portfolio-image{

height:200px;

}

.portfolio-btn a{

width:100%;

}

}