/* =====================================
   RESET
===================================== */

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

:root{

--bg:#071A2D;
--card:#0D2746;
--blue:#1FA8FF;
--text:#ffffff;
--gray:#B9C6D5;

}

body{

background:var(--bg);
color:var(--text);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

.container{

width:90%;
max-width:1280px;
margin:auto;

}

/* =====================================
HEADER
===================================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:18px 0;
background:rgba(7,26,45,.92);
backdrop-filter:blur(12px);

}

.navbar{

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

}

.logo{

display:flex;
align-items:center;
gap: 0px;
color: white;

}

.logo img{

width:100px;

}

.logo h2{

font-size:24px;
font-weight:700;

}

nav{

display:flex;
gap:35px;

}

nav a{

color:white;
font-size:15px;
font-weight:500;
transition:.3s;

}

nav a:hover{

color:var(--blue);

}

.talk-btn{

padding:14px 28px;
background:var(--blue);
border-radius:50px;
color:white;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
transition:.3s;

}

.talk-btn:hover{

transform:translateY(-3px);
box-shadow:0 12px 30px rgba(31,168,255,.35);

}

.menu{

display:none;
font-size:28px;
cursor:pointer;

}

/* =====================================
HERO
===================================== */

.hero{

position:relative;
min-height:125vh;
display:flex;
align-items:center;
overflow:hidden;

background:
linear-gradient(rgba(8,27,46,.75),rgba(8,27,46,.85)),
url("../images/hero.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}

.hero-wrapper{

display:flex;
align-items:center;
justify-content:space-between;
gap:70px;

}

.hero-left{

flex:1;

}

.tag{

display:inline-block;
padding:10px;
border-radius:30px;
background:#0E3053;
color:var(--blue);
font-size:13px;
font-weight:600;
letter-spacing:1px;
margin-bottom:25px;

}

.hero-left h1{

font-size:68px;
line-height:78px;
font-weight:800;
margin-bottom:25px;

}

.hero-left p{

font-size:18px;
line-height:32px;
color:var(--gray);
margin-bottom:40px;
max-width:620px;

}

.hero-btns{

display:flex;
gap:18px;
margin-bottom:60px;

}

.primary-btn{

padding:16px 34px;
background:var(--blue);
border-radius:50px;
color:white;
font-weight:600;
transition:.3s;

}

.primary-btn:hover{

transform:translateY(-3px);

}

.outline-btn{

padding:16px 34px;
border:2px solid var(--blue);
border-radius:50px;
color:var(--blue);
font-weight:600;
transition:.3s;

}

.outline-btn:hover{

background:var(--blue);
color:white;

}

.hero-stats{

display:flex;
gap:60px;

}

.hero-stats h2{

font-size:42px;
color:var(--blue);

}

.hero-stats p{

color:var(--gray);
margin-top:8px;

}

.hero-right{

flex:1;
display:flex;
justify-content:center;

}

.hero-right img{

max-width:620px;
animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

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

.about{

padding:120px 0;
background:#081F36;

}

.about .container{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-left{

position:relative;

}

.about-left img{

width:100%;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.about-right span{

color:var(--blue);
font-size:14px;
font-weight:600;
letter-spacing:2px;

}

.about-right h2{

font-size:48px;
margin:20px 0;

}

.about-right p{

font-size:17px;
line-height:32px;
color:var(--gray);
margin-bottom:30px;

}

.about-right ul{

list-style:none;

}

.about-right ul li{

margin:18px 0;
font-size:17px;
display:flex;
align-items:center;
gap:12px;

}

.about-right i{

color:var(--blue);

}

/* =====================================
SERVICES
===================================== */

.services{

padding:120px 0;
background:#071A2D;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

color:var(--blue);
font-size:15px;
letter-spacing:2px;
font-weight:600;

}

.section-title h2{

font-size:48px;
margin-top:15px;

}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}



.service-card{

background:#0D2746;
padding:40px;
border-radius:25px;
transition:.35s;
border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

transform:translateY(-12px);
border-color:var(--blue);
box-shadow:0 20px 45px rgba(31,168,255,.25);

}

.service-card i{

width:70px;
height:70px;
background:var(--blue);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
margin-bottom:25px;

}

.service-card h3{

font-size:24px;
margin-bottom:18px;

}

.service-card p{

line-height:30px;
color:var(--gray);

}

/* =====================================
COMMON BUTTON
===================================== */

.primary-btn{

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

}

/* =====================================
PORTFOLIO
===================================== */

.portfolio{
padding:80px 0;
background:#081F36;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
margin-top:60px;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    height:350px;
}

.portfolio-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.portfolio-card:hover img{
transform:scale(1.08);
}

.overlay{
position:absolute;
left:0;
bottom:-100%;
width:100%;
height:100%;
padding:40px;
display:flex;
flex-direction:column;
justify-content:flex-end;
background:linear-gradient(to top,
rgba(7,26,45,.98),
rgba(31,168,255,.18));
transition:.5s;
}

.portfolio-card:hover .overlay{
bottom:0;
}

.overlay h3{
font-size:30px;
margin-bottom:10px;
}

.overlay p{
color:#d6e6f6;
margin-bottom:20px;
}

.overlay a{
display:inline-block;
padding:14px 28px;
background:var(--blue);
border-radius:40px;
color:white;
font-weight:600;
transition:.3s;
}

.overlay a:hover{
transform:translateY(-3px);
}

/* =====================================
STATS
===================================== */

.stats{
padding:70px 0;
background:#071A2D;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stat-card{
background:#0D2746;
padding:45px;
border-radius:20px;
text-align:center;
transition:.35s;
}

.stat-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(31,168,255,.20);
}

.stat-card h2{
font-size:56px;
color:var(--blue);
margin-bottom:10px;
}

.stat-card p{
font-size:17px;
color:var(--gray);
}

/* =====================================
PROCESS
===================================== */

.process{
padding:120px 0;
background:#081F36;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:70px;
}

.process-card{
background:#0D2746;
padding:45px 35px;
border-radius:25px;
text-align:center;
transition:.35s;
position:relative;
overflow:hidden;
}

.process-card::before{
content:"";
position:absolute;
width:180px;
height:180px;
background:rgba(31,168,255,.08);
border-radius:50%;
top:-90px;
right:-90px;
}

.process-card:hover{
transform:translateY(-10px);
border:1px solid var(--blue);
}

.number{
width:75px;
height:75px;
background:var(--blue);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:700;
margin:auto;
margin-bottom:25px;
}

.process-card h3{
font-size:24px;
margin-bottom:15px;
}

.process-card p{
color:var(--gray);
line-height:30px;
}

/* =====================================
TESTIMONIAL
===================================== */

.testimonial{
padding:120px 0;
background:#071A2D;
}

.testimonial-slider{
max-width:900px;
margin:60px auto 0;
}

.testimonial-card{
display:none;
background:#0D2746;
padding:45px;
border-radius:25px;
text-align:center;
border:1px solid rgba(255,255,255,.06);
}

.testimonial-card.active{
display:block;
animation:fade .5s ease;
}

@keyframes fade{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.testimonial-card p{
font-size:18px;
line-height:32px;
color:var(--gray);
margin-bottom:25px;
}

.testimonial-card h3{
font-size:24px;
color:var(--blue);
margin-bottom:8px;
}

.testimonial-card span{
font-size:15px;
color:#dbe7f4;
}

/* =====================================
REVIEW FORM
===================================== */

/* .review-section{
padding:120px 0;
background:#081F36;
}

.review-section h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
}

#reviewForm{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

#reviewForm input,
#reviewForm textarea{
background:#0D2746;
border:1px solid rgba(255,255,255,.08);
padding:18px;
border-radius:15px;
color:white;
font-size:16px;
outline:none;
}

#reviewForm textarea{
height:180px;
resize:none;
}

#reviewForm button{
padding:18px;
border:none;
background:var(--blue);
color:white;
font-size:18px;
font-weight:600;
border-radius:15px;
cursor:pointer;
transition:.3s;
}

#reviewForm button:hover{
transform:translateY(-3px);
}

.review-card{
background:#0D2746;
padding:25px;
border-radius:20px;
margin-top:20px;
}

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

.contact{
padding:120px 0;
background:#071A2D;
}

.contact-form{
max-width:800px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
border-radius:15px;
background:#0D2746;
border:1px solid rgba(255,255,255,.06);
color:white;
font-size:16px;
}

.contact-form textarea{
grid-column:1/3;
height:180px;
resize:none;
}

.contact-form button{
grid-column:1/3;
padding:18px;
background:var(--blue);
border:none;
border-radius:15px;
color:white;
font-size:18px;
cursor:pointer;
} */

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

footer{
background:#061220;
padding:80px 0 25px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-grid h2,
.footer-grid h3{
margin-bottom:20px;
}

.footer-grid p,
.footer-grid a{
color:var(--gray);
line-height:30px;
display:block;
margin-bottom:10px;
transition:.3s;
}

.footer-grid a:hover{
color:var(--blue);
}

.footer-grid i{
font-size:22px;
margin-right:18px;
color:white;
transition:.3s;
}

.footer-grid i:hover{
color:var(--blue);
}

.copyright{
margin-top:50px;
text-align:center;
color:#9fb1c5;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
}

/*==========================================
AUTO SCROLL GALLERY
==========================================*/

.gallery{
    padding:120px 0;
    background:#081b2e;
    overflow:hidden;
}

.gallery-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    height:900px;
    overflow:hidden;
}

.gallery-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.gallery-item{
    border-radius:18px;
    overflow:hidden;
    background:#111;
    cursor:pointer;
}

.gallery-item img,
.gallery-item video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img,
.gallery-item:hover video{
    transform:scale(1.08);
}

.large{
    height:380px;
}

.medium{
    height:250px;
}

.small{
    height:130px;
}

.tall{
    height:450px;
}
/*==========================
AUTO SCROLL
==========================*/

.scroll-up{
    animation:scrollUp 25s linear infinite;
}

.scroll-down{
    animation:scrollDown 25s linear infinite;
}

.gallery-column:hover{
    animation-play-state:paused;
}

@keyframes scrollUp{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-50%);
}

}

@keyframes scrollDown{

0%{
transform:translateY(-50%);
}

100%{
transform:translateY(0);
}

}

/*==========================
EDGE FADE
==========================*/

.gallery{
    position:relative;
}

.gallery::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:120px;
background:linear-gradient(to bottom,#081b2e,transparent);
z-index:5;

}

.gallery::after{

content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:120px;
background:linear-gradient(to top,#081b2e,transparent);
z-index:5;

}

/*==========================================
GALLERY RESPONSIVE
==========================================*/

@media(max-width:992px){

.gallery-wrapper{

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

}

}

@media(max-width:768px){

.gallery-wrapper{

grid-template-columns:1fr;
height:500px;

}

.large{

height:250px;

}

.small{

height:130px;

}

}



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

.contact-section{

padding:120px 0;

background:#081b2e;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.contact-info{

display:grid;

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

gap:20px;

}

.contact-card{

display:flex;

align-items:center;

gap:18px;

padding:25px;

background:#10263d;

border-radius:18px;

transition:.4s;

}

.contact-card:hover{

transform:translateY(-8px);

background:#163654;

}

.contact-card i{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#0c2237;

color:#2ea8ff;

font-size:26px;

flex-shrink:0;

}

.contact-card h3{

color:#fff;

margin-bottom:6px;

font-size:20px;

}

.contact-card p{

color:#d9d9d9;

font-size:15px;

line-height:24px;

}

.contact-map iframe{

width:100%;

height:450px;

border:none;

border-radius:20px;

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

}

/*==========================================
SERVICE CARD PREMIUM
==========================================*/

.service-card{

    background:#10263d;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);

}

.service-card::before{

    content:"";
    position:absolute;
    top:-100%;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(180deg,
    transparent,
    rgba(47,168,255,.12),
    transparent);

    transition:.6s;

}

.service-card:hover::before{

    top:100%;

}

.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    border-color:#2fa8ff;

}

.service-card i{

    font-size:50px;
    color:#2fa8ff;
    margin-bottom:20px;

}

.service-card h3{

    font-size:24px;
    color:#fff;
    margin-bottom:15px;

}

.service-card p{

    color:#cfcfcf;
    line-height:28px;
    margin-bottom:25px;

}

/* Read More Button */

.service-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    background:#2fa8ff;

    color:#fff;

    font-weight:600;

    transition:.35s;

    
}

.service-btn:hover{

    background:#fff;
    color:#081b2e;
    transform:translateY(-2px);

}

/*==========================
OUR PRODUCTS
==========================*/

.products{

    padding:120px 0;
    background:#081b2e;

}

.products-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:60px;

}

.product-card{

    background:#10263d;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);

}

.product-card:hover{

    transform:translateY(-10px);
    border-color:#2fa8ff;
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.product-card img{

    width:90px;
    height:90px;
    object-fit:contain;
    margin:0 auto 20px;

}

.product-card h3{

    color:#fff;
    font-size:22px;
    margin-bottom:15px;

}

.product-card p{

    color:#d8d8d8;
    line-height:28px;
    margin-bottom:25px;

}

.product-card .primary-btn{

    width:100%;
    justify-content:center;

}

/* TESTIMONIALS */

.client-info{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-top:30px;
}

.client-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #2fa8ff;
    margin-bottom:15px;
}

.client-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.client-info h3{
    color:#fff;
    font-size:22px;
    margin:0;
}

.client-info span{
    color:#cfcfcf;
    font-size:15px;
    margin-top:5px;
}

.service-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 25px;
    display:block;
    transition:.4s;
}

.service-card:hover img{
    transform:scale(1.1);
}