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

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background: white;
color:black;
overflow-x:hidden;
}

@media(max-width:768px){
nav{
display:none;
}
}
@media(max-width:900px){

.portfolio-grid{
grid-template-columns:1fr;
}

}

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

}

@media(max-width:900px){

.founder{
grid-template-columns:1fr;
text-align:center;
}

}
/* =========================
   CUSTOM CURSOR
========================= */

.cursor{
width:20px;
height:20px;
border:2px solid black;
border-radius:50%;
position:fixed;
pointer-events:none;
z-index:9999;
transform:translate(-50%,-50%);
transition:.08s linear;
}

/* =========================
   LOADER
========================= */

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

.navbar{
position:fixed;
top:0;
left:0;
width:100%;

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

padding: 22px 7%;

backdrop-filter:blur(20px);
/* background:rgba(75, 75, 75, 0.35); */
background: whitesmoke;

z-index:1000;
}

.logo{
font-size:1.1rem;
font-weight:800;
letter-spacing:2px;
}
.mainlogo{
    display:flex;
    align-items:center;
    gap:12px;
}

.mainlogo img{
    width:130px;
    height:80px;
    object-fit:cover;
}

.logo{
    font-size:1.2rem;
    font-weight:800;
    color:#0c4e78;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
text-decoration:none;
color:black;
font-size:.95rem;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.nav-btn{
padding:14px 26px;
background: rgb(12, 78, 120);
color:white;
font-weight:700;
text-decoration:none;
border-radius:50px;
transition:.4s;
}

.nav-btn:hover{
transform:translateY(-4px);
}

/* =========================
   HERO
========================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:130px 8% 60px;
    position:relative;
    overflow:hidden;
    box-sizing:border-box;
}

.hero-content{
width:55%;
z-index:10;
}

.hero-tag{
display:inline-block;
padding:12px 24px;
border:1px solid rgba(255,255,255,.1);
border-radius:50px;
background:rgba(255,255,255,.04);
backdrop-filter:blur(20px);
margin-bottom:25px;
color: rgb(12, 78, 120);
}


/* .hero h1{
font-size:clamp(3rem,8vw,7rem);
line-height:1;
} */

.hero h1{
    font-size:clamp(2.8rem,6vw,5.5rem);
    line-height:1.25;
    margin:20px 0 25px;
    color:#0c4e78;
    font-weight:800;
}


.hero p{
font-size:1.1rem;
line-height:1.8;
max-width:650px;
color:#bdbdbd;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.primary-btn{
background: rgb(12, 78, 120);
padding:18px 35px;
border-radius:60px;
text-decoration:none;
font-weight:700;
color:white;
transition:.4s;
}

.primary-btn:hover{
transform:translateY(-5px);
}

.secondary-btn{
padding:18px 35px;
border-radius:60px;
text-decoration:none;
color:white;
border:1px solid rgba(255,255,255,.15);
background:rgba(255,255,255,.04);
backdrop-filter:blur(15px);
}

.hero-stats{
display:flex;
gap:50px;
margin-top:70px;
}

.hero-stats h2{
font-size:2.5rem;
color:black;
}

.hero-stats span{
color: black;
}

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

.hero-right{
width:40%;
height:100%;
position:relative;
display:flex;
justify-content:center;
align-items:center;
margin-bottom: 200px;
}



@keyframes rotateSphere{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

.floating-card{
position:absolute;
padding:18px 25px;

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

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

backdrop-filter:blur(20px);

border-radius:20px;

font-weight:600;
}

.card1{
top:20%;
left:0;
}

.card2{
top:25%;
right:0;
}

.card3{
bottom:25%;
left:5%;
}

.card4{
bottom:20%;
right:5%;
}

/* =========================
   GLOW EFFECTS
========================= */

.hero-glow{
position:absolute;
border-radius:50%;
filter:blur(120px);
}

.glow1{
width:500px;
height:500px;
background:#d4af3730;
top:-100px;
left:-100px;
}

.glow2{
width:500px;
height:500px;
background:#0f3d7c40;
bottom:-100px;
right:-100px;
}

/* =========================
   MARQUEE
========================= */

.marquee{
padding:25px 0;
border-top:1px solid rgba(255,255,255,.08);
border-bottom:1px solid rgba(255,255,255,.08);
overflow:hidden;
}

.marquee-content{
display:flex;
gap:80px;
white-space:nowrap;
animation:marqueeMove 20s linear infinite;
}

.marquee-content span{
color: black;
font-weight:700;
font-size:1rem;
}

@keyframes marqueeMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-30%);
}

}

/* =========================
   SECTION COMMON
========================= */

section{
padding:80px 8%;
}

.section-title span{
color:#d4af37;
letter-spacing:2px;
font-size:.9rem;
}

.section-title h2{
font-size:3rem;
margin-top:10px;
}

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

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
margin-top:60px;
}

.about-left h3{
font-size:2rem;
line-height:1.4;
}

.about-right p{
font-size:1.1rem;
line-height:2;
color:#bdbdbd;
}

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

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

.service-card{
padding:40px;

/* background:rgba(255,255,255,.03); */
background:lightblue;


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

border-radius:25px;

backdrop-filter:blur(20px);

transition:.4s;

font-weight:600;
}

.service-card:hover{

transform:translateY(-10px);

border-color:black;

box-shadow:0 0 30px rgba(212,175,55,.15);

}

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

@media(max-width:1100px){

.hero{
flex-direction:column;
text-align:center;
height:auto;
padding-top:180px;
}

.hero-content{
width:100%;
}

.hero-right{
width:100%;
margin-top:80px;
}

.hero h1{
font-size:4rem;
}

.hero-stats{
justify-content:center;
flex-wrap:wrap;
}

.about-grid{
grid-template-columns:1fr;
}

.service-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
display:none;
}

.hero h1{
font-size:3rem;
}

.hero-buttons{
flex-direction:column;
}

.service-grid{
grid-template-columns:1fr;
}

.hero-stats{
gap:25px;
}

.sphere{
width:280px;
height:280px;
}

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

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

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

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.7);
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
opacity:0;
transition:.5s;
}

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

.portfolio-card:hover .overlay{
opacity:1;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.why-card,
.testimonial-card{
padding:35px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
}

.founder{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.founder img{
width:100%;
border-radius:25px;
}

.testimonial-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:50px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea{
padding:18px;
background:#111;
border:1px solid #222;
color:white;
border-radius:12px;
}

.contact-form button{
padding:18px;
background:#d4af37;
border:none;
font-weight:700;
cursor:pointer;
}

.footer{
padding:60px;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
}
.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.portfolio-card{
height:320px;
position:relative;
overflow:hidden;
border-radius:20px;
}

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

.portfolio-overlay{
position:absolute;
inset:0;
background: lightcyan;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
opacity:0;
transition:.5s;
}

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

.portfolio-card:hover .portfolio-overlay{
opacity:1;
}


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

.why-card{
padding:35px;
background:rgba(255,255,255,.04);
border-radius:20px;
}

.founder{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.founder img{
width:100%;
border-radius:25px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
padding:35px;
background:rgba(255,255,255,.04);
border-radius:20px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
padding:18px;
background:rgb(199, 193, 193);
border:2px solid #222;
color:  black;
border-radius:12px;
}

.contact-form button{
padding:18px;
background:#d4af37;
border:none;
font-weight:700;
cursor:pointer;
}

.footer{
text-align:center;
padding:80px 20px;
border-top:1px solid rgba(255,255,255,.08);
margin-top:80px;
}

@media(max-width:900px){

.portfolio-grid,
.why-grid,
.testimonial-grid,
.stats-section{
grid-template-columns:1fr;
}

.founder,
.contact-grid{
grid-template-columns:1fr;
}

}
.whatsapp-float{

position:fixed;

bottom:25px;
right:25px;

width:65px;
height:65px;

border-radius:50%;

background:#25D366;

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

font-size:30px;

text-decoration:none;

z-index:9999;

box-shadow:
0 10px 30px rgba(37,211,102,.4);

animation:whatsappPulse 2s infinite;

}

@keyframes whatsappPulse
{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}




/* client  */


.clients{
    text-align:center;
}

.clients-grid{
    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.client-box{
    height:120px;

    background:white;

    border-radius:20px;

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

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.client-box:hover{
    transform:translateY(-5px);
}
.clients .section-title span{
    font-size:1.4rem;
    font-weight:800;
    letter-spacing:4px;
    color:#d4af37;
}

.client-box img{
    width:70%;
    height:70%;
    object-fit:contain;

    /* filter:grayscale(100%); */
    opacity:.8;

    transition:.3s;
}

.client-box:hover img{
    filter:none;
    opacity:1;
}
@media(max-width:900px){

.clients-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.clients-grid{
    grid-template-columns:1fr;
}

}

/* client  */

/* our team  */

/* =========================
   TEAM SECTION
========================= */
.team{
padding:100px 0;
background:#faf7f2;
}

.team-title{
text-align:center;
font-size:42px;
margin-bottom:60px;
color:#222;
}

.slider{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
}

.slider-container{
    width:82%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.slider-container::-webkit-scrollbar{
    display:none;
}

.slider-track{
display:flex;
gap:25px;
transition:.5s;
}

.card{

min-width:260px;
background:#fff;
border-radius:20px;
overflow:hidden;

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

transition:.4s;
}

.card:hover{

transform:translateY(-12px);

}

.card img{

width:100%;
height:300px;
object-fit:cover;

}

.card h3{

margin:18px 0 5px;
text-align:center;
color:#0c4e78;

}

.card p{

text-align:center;
padding-bottom:20px;
color:#777;

}

.btn{
    .btn{
    width:80px !important;
    height:80px !important;
    font-size:40px !important;
}
    border:none;
    border-radius:50%;
    font-size:34px;
    cursor:pointer;
    background:#0c4e78;
    color:white;
    transition:.3s;
    box-shadow:0 10px 25px rgba(12,78,120,.3);
}

.btn:hover{
    background:#d4af37;
    color:#000;
    transform:scale(1.12);
}

/* Slider */


/* Mobile */

@media(max-width:768px){

.team-card{ 
    width:190px;
    height:320px;
}

.team-card img{
    height:220px;
}

.team-card:nth-child(even){
    margin-top:20px;
}

.team-track{
    gap:15px;
    animation:teamMove 10s linear infinite;
}

}

/* our team  */

.hero-logo{
width:500px;
max-width:90%;
height:auto;
object-fit:contain;

animation:floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{

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

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

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

}

/* Remove old sphere & cards */

.sphere,
.floating-card{
display:none !important;
}

/* video */

/* =========================
   VIDEO SHOWCASE
========================= */

.video-showcase{
    padding:100px 8%;
    overflow:hidden;
    background:#fff;
}

.video-showcase .section-title{
    text-align:center;
    margin-bottom:50px;
}

.video-showcase .section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:700;
}

.video-showcase .section-title h2{
    font-size:3rem;
    color:#0c4e78;
    margin:10px 0;
}

.video-showcase .section-title p{
    color:#777;
    font-size:1rem;
}

.video-slider{
    position:relative;
    display:flex;
    align-items:center;
}

.video-track{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:20px 10px;
}

.video-track::-webkit-scrollbar{
    display:none;
}

.video-card{
    min-width:340px;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
    cursor:pointer;
    position:relative;
}

.video-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 20px 45px rgba(12,78,120,.25);
}

.video-card video{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.video-card:hover video{
    transform:scale(1.05);
}

.video-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
}

.video-info h3{
    color:#fff;
    font-size:1.2rem;
    margin-bottom:5px;
}

.video-info span{
    color:#ddd;
    font-size:.9rem;
}

.video-btn1{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0c4e78;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
    box-shadow:0 10px 30px rgba(12,78,120,.3);
}

.video-btn1:hover{
    background:#d4af37;
    color:#000;
    transform:scale(1.1);
}

.prev{
    margin-right:20px;
}

.next{
    margin-left:20px;
}

/* Mobile */

@media(max-width:768px){

.video-card{
    min-width:260px;
}

.video-card video{
    height:400px;
}

.video-showcase .section-title h2{
    font-size:2.2rem;
}

.video-btn1{
    width:45px;
    height:45px;
    font-size:20px;
}

}

@media (max-width: 768px) {

.video-slider{
    width:100%;
    overflow:hidden;
}

.video-track{
    display:flex;
    gap:15px;
}

.video-card{
    min-width:100%;
    width:100%;
    flex:0 0 100%;
}

.video-card video{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
}

}