/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
       box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}


html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    overflow-x:hidden;
    color:#082f49;
}


/* ================= HEADER ================= */


.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:
#ffffff;
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
border-bottom:
1px solid rgba(255,255,255,.35);
box-shadow:
0 8px 32px rgba(8,47,73,.15);
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

/* ================= LOGO ================= */

.logo{
font-family:Broadway;
font-size:3rem;
color:#38bdf8;
letter-spacing:2px;
text-shadow:
0 5px 15px rgba(14,165,233,.35);
margin-top: -10px;
}

.logo img{
height: 60px;
display: inline;
margin-left: -20px;
margin-top: -0px;
}


/* ================= NAVBAR ================= */

.navbar ul{
display:flex;
list-style:none;
gap:35px;
}

.navbar ul li a{
color:#075985;
font-weight:700;
text-decoration:none;
transition:.3s ease;
}

.navbar ul li a:hover{
color:#38bdf8;
text-shadow:
0 0 15px rgba(56,189,248,.8);
}

/*==========================================
            HERO SECTION
==========================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* Slides */

.hero-slider{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.hero::before{

content:"";

position:absolute;

inset:0;

z-index:2;

}

/* Content */

.hero-content{

position:relative;

z-index:5;

max-width:900px;

padding:0 20px;

text-align:center;

animation:fadeUp 1s ease;

}

.hero-tag{

display:inline-block;

padding:12px 28px;

background:rgba(255,255,255,.15);

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(15px);

border-radius:40px;

color:#fff;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:4.4rem;

font-weight:700;

line-height:1.2;

color:#fff;

margin-bottom:25px;

}

.hero h1 span{

display:block;

color:#7dd3fc;

}

.hero p{

font-size:1.15rem;

line-height:1.9;

max-width:760px;

margin:auto;

color:#e5e7eb;

margin-bottom:40px;

}

/* Buttons */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.hero-buttons a{

padding:16px 38px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.primary-btn{

background:#0ea5e9;

color:#fff;

}

.primary-btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(14,165,233,.35);

}

.secondary-btn{

background:#0ea5e9;

color:#fff;


}

.secondary-btn:hover{

background:#fff;

color:#0284c7;

}

/* Slider Buttons */

.hero-prev,
.hero-next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:55px;

height:55px;

border:none;

border-radius:50%;

background:rgba(255,255,255,.18);

color:#fff;

font-size:24px;

cursor:pointer;

z-index:8;

transition:.3s;

backdrop-filter:blur(10px);

}

.hero-prev{

left:30px;

}

.hero-next{

right:30px;

}

.hero-prev:hover,
.hero-next:hover{

background:#0ea5e9;

}

/* Dots */

.hero-dots{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:12px;

z-index:9;

}

.hero-dot{

width:13px;

height:13px;

border-radius:50%;

background:rgba(255,255,255,.45);

cursor:pointer;

transition:.35s;

}

.hero-dot.active{

background:#38bdf8;

transform:scale(1.2);

}

/* Animation */

@keyframes zoomHero{

from{

transform:scale(1);

}

to{

transform:scale(1.12);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/* ================= ABOUT SECTION ================= */

.about{
padding:100px 0;
background:
linear-gradient(
135deg,
#ffffff,
#ffffff
);
text-align:center;
}

.about h2{
font-size:3rem;
color:#082f49;
margin-bottom:25px;
}

.about p{
max-width:850px;
margin:20px auto;
line-height:1.9;
color:#475569;
font-size:1.1rem;
}

/* ================= SERVICES ================= */

.services{
padding:100px 0;
background:#ffffff;
}

.services h2{
text-align:center;
font-size:3rem;
color:#082f49;
margin-bottom:60px;
}

.service-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:rgba(255,255,255,.8);
padding:35px;
border-radius:25px;
text-align:center;
border-top:4px solid #38bdf8;
box-shadow:0 10px 30px rgba(8,47,73,.08);
transition:.4s ease;
display:flex;
flex-direction:column;
height:100%;
}

.service-card:hover{
transform:
translateY(-12px);
box-shadow:
0 20px 45px rgba(14,165,233,.25);
}

.service-card i{
font-size:3rem;
color:#0284c7;
margin-bottom:20px;
}

.service-card h3{
color:#082f49;
margin-bottom:15px;
}

.service-card p{
color:#64748b;
line-height:1.7;
flex-grow: 1;
margin-bottom: 25px;
}

.card-btn{

display:inline-block;

padding:12px 25px;

background:linear-gradient(135deg,#38bdf8,#0284c7);

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.4s ease;

box-shadow:0 8px 20px rgba(2,132,199,.25);

margin-top:auto;

}

.card-btn:hover{
transform:translateY(-4px);
background:linear-gradient(135deg,#0284c7,#075985);
box-shadow:0 12px 25px rgba(2,132,199,.35);
}


/* ================= WHY CHOOSE US ================= */

.why-us{
padding:100px 0;
background:#ffffff;
}

.why-us h2{
text-align:center;
font-size:3rem;
color:#082f49;
margin-bottom:60px;
}

.why-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.why-card{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
border-top:4px solid #38bdf8;
transition:.4s;
box-shadow:
0 10px 30px rgba(8,47,73,.08);
}

.why-card:hover{
transform:
translateY(-10px);
}

.why-card h3{
color:#082f49;
margin-bottom:15px;
}

.why-card p{
color:#475569;
line-height:1.7;
}

.stats{
max-width:1200px;
margin:-100px auto 100px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:130px;
padding:0 70px;
position:relative;
z-index:100;
}

.stat-card{
background:rgba(18, 91, 131, 0.08);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.1);
padding:35px;
border-radius:25px;
text-align:center;
font-weight: bold;
color:#475569;
text-decoration: bol;
transition:.4s;
height: 170px;
width: 260px;
}

.stat-card:hover{
transform:translateY(-10px);
}

.stat-card h2{
font-size:3rem;
color:#ffffff;
margin-bottom:10px;
}

/* ================= GALLERY ================= */
.gallery{
padding:100px 0%;
background:#ffffff;
}

.gallery h2{
text-align:center;
font-size:3rem;
color:#082f49;
margin-bottom:50px;
}

.gallery-subtitle{
text-align:center;
max-width:700px;
margin:0 auto 40px;
color:#64748b;
font-size:1.1rem;
line-height:1.8;
}

.gallery-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{

width:100%;
height:250px;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery-grid img:hover{
transform:
scale(1.05);
box-shadow:
0 15px 30px rgba(14,165,233,.25);
}

/* ================= CONTACT SECTION ================= */



.contact{
padding:120px 8%;
background:#ffffff;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.contact-info{
    background:#0284c7;
    padding:40px;
    border-radius:25px;
    color:#fff;
    box-shadow:0 15px 35px rgba(8,47,73,.2);
}

.contact-info h3{
    font-size:2rem;
    margin-bottom:30px;
}

.contact-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    text-decoration:none;
    color:white;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    border-radius:15px;

    padding:15px 18px;

    margin-bottom:18px;

    transition:.4s;
}

.contact-link:hover{

    transform:translateX(8px);

    background:white;

    color:#0284c7;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.contact-link .icon{

    font-size:28px;

    animation:bounce 1.5s infinite;

}

.contact-link:hover .icon{

    transform:scale(1.2);

}

.contact-link .text{

    flex:1;

    font-size:17px;

    font-weight:600;

}

.contact-link small{

    display:block;

    margin-top:4px;

    font-size:12px;

    opacity:.8;

}

.contact-link .arrow{

    font-size:22px;

    transition:.3s;

}

.contact-link:hover .arrow{

    transform:translateX(8px);

}

.working-hours{

    margin-top:25px;

    padding:15px;

    text-align:center;

    border-radius:15px;

    background:rgba(255,255,255,.15);

    font-weight:600;

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

}
    

/* RIGHT FORM */

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
background:#ffffff;
border:2px solid #cbd5e1;
border-radius:15px;
font-size:1rem;
font-family:'Poppins',sans-serif;
color:#082f49;
transition:all .4s ease;
}

/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder{
color:#64748b;
}

/* HOVER */

.contact-form input:hover,
.contact-form textarea:hover{
border-color:#38bdf8;
box-shadow:0 0 15px rgba(56,189,248,.15);
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
background:#ffffff;
border-color:#38bdf8;
box-shadow:0 0 25px rgba(56,189,248,.25);
transform:translateY(-3px);
}

/* BUTTON */

.contact-form button{
padding:18px;
border:none;
border-radius:15px;
background:linear-gradient(
135deg,
#38bdf8,
#0284c7
);
color:white;
font-size:1rem;
font-weight:600;
cursor:pointer;
transition:.4s ease;
box-shadow:0 10px 25px rgba(14,165,233,.25);
}

.contact-form button:hover{
transform:
translateY(-5px)
scale(1.03);

background:linear-gradient(
135deg,
#0284c7,
#075985
);
box-shadow:0 15px 35px rgba(14,165,233,.35);
}

/* SUCCESS MESSAGE */

#success-message{
position:fixed;
bottom:300px;
right:270px;
background:#1081b9;
color:white;
padding:15px 25px;
border-radius:12px;
font-weight:600;
box-shadow:0 10px 25px rgba(16, 137, 185, 0.4);
opacity:0;
visibility:hidden;
transform:translateY(30px);
transition:all .5s ease;
z-index:9999;
}

#success-message.show{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* MOBILE */

@media(max-width:768px){
.contact-container{
grid-template-columns:1fr;
}

.contact-info{
text-align:center;
}
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
.about h2,
.services h2,
.why-us h2,
.contact h2{
font-size:2.2rem;
}

.hero-text h1{
font-size:2.5rem;
}

.service-card,
.why-card{
padding:25px;
}

.stat-box h3{
font-size:2.2rem;
}
}

/* ================= BUSINESS VERTICALS ================= */
.business-verticals{
padding:120px 0;
background:#ffffff;
}

.about h2::after,
.services h2::after,
.why-us h2::after,
.gallery h2::after,
.contact h2::after,
.business-verticals h2::after{
content:"";
display:block;
width:90px;
height:4px;
background:#38bdf8;
margin:15px auto 0;
border-radius:50px;
}
.section-title{
text-align:center;
max-width:850px;
margin:auto;
margin-bottom:70px;
}

.section-title h2{
font-size:3rem;
color:#082f49;
margin-bottom:20px;
position:relative;
}

.section-title h2::after{
content:"";
width:90px;
height:4px;
background:#38bdf8;
display:block;
margin:15px auto;
border-radius:50px;
}

.section-title p{
color:#64748b;
line-height:1.8;
font-size:1.1rem;
}

.vertical-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.vertical-card{
background:
linear-gradient(
145deg,
#ffffff,
#ecfeff
);

padding:40px 35px;
border-radius:25px;
text-align:center;
box-shadow:
0 10px 30px rgba(8,47,73,.08);
transition:.4s ease;
position:relative;
overflow:hidden;
}

.vertical-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:#38bdf8;
transform:scaleX(0);
transition:.4s;
}

.vertical-card:hover::before{
transform:scaleX(1);
}

.vertical-card:hover{
transform:
translateY(-12px);
box-shadow:
0 20px 45px rgba(14,165,233,.25);
}

.vertical-card i{
font-size:3rem;
color:#0284c7;
margin-bottom:25px;
}

.vertical-card h3{
color:#082f49;
margin-bottom:15px;
}

.vertical-card p{
color:#64748b;
line-height:1.8;
}

/* ================= GLOBAL OPPORTUNITIES ================= */

.global-opportunities{
padding:120px 0;
background:#ffffff;
}

.global-content{
display:flex;
justify-content:space-between;
gap:60px;
}

.global-text{
flex:1;
}

.global-tag{
display:inline-block;
padding:10px 18px;
background:#cffafe;
color:#0284c7;
font-size:.9rem;
font-weight:600;
border-radius:30px;
margin-bottom:20px;
}

.global-text h2{
font-size:2rem;
line-height:1.2;
color:#082f49;
margin-bottoM:25PX;
}

.global-text p{
font-size:1.1rem;
line-height:1.9;
color:#64748b;
margin-bottom:35px;
}

.country-list{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.country-box{
display: inline-block;
padding:12px 20px;
background:white;
border-radius:50px;
font-weight:600;
color:#082f49;
box-shadow:
0 5px 15px rgba(8,47,73,.1);
transition:.3s;
}

.country-box:hover{
transform:
translateY(-5px);
background:#0284c7;
color:white;
}

.global-image{
flex:1;
margin-top: 70PX;
}

.global-image img{
width:100%;
border-radius:30px;
box-shadow:
0 20px 40px rgba(8,47,73,.15);
}


/* LEADERSHIP SECTION */

.leadership{
padding:120px 8%;
background:#f8fafc;
}

.leader-card{
display:flex;
align-items:center;
gap:60px;
margin-top:70px;
}

.leader-card.reverse{
flex-direction:row-reverse;
}

.leader-img{
flex:1;
text-align:center;
}

.leader-img img{
width:320px;
height:400px;
object-fit:cover;
border-radius:25px;
box-shadow:
0 20px 40px rgba(8,47,73,.15);
transition:.4s;
}

.leader-img img:hover{
transform:translateY(-10px);
}

.leader-content{
flex:2;
}

.leader-content h3{
font-size:2rem;
color:#0284c7;
margin-bottom:10px;
}

.leader-content h4{
font-size:1.3rem;
color:#082f49;
margin-bottom:20px;
font-weight:600;
margin-top: 20px;
}

.leader-content p{
font-size:1.05rem;
line-height:1.9;
color:#64748b;
}

/* MOBILE */

@media(max-width:768px){

.leader-card,
.leader-card.reverse{
flex-direction:column;
text-align:center;
}

.leader-img img{
width:250px;
height:250px;
}
}

/* ================= PREMIUM FOOTER ================= */

.footer{
background:
linear-gradient(
135deg,
#082f49,
#0f172a
);
padding:
120px 8%;
color:white;
}

.footer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-box h3{
margin-bottom:25px;
font-size:1.3rem;
color:#38bdf8;
}

.footer-box p{
line-height:1.9;
color:#cbd5e1;
}

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:12px;
}

.footer-box ul li a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-box ul li a:hover{
color:#38bdf8;
}

.footer hr{
margin:50px 0 25px;
border:none;
height:1px;
background:rgba(255,255,255,.15);
} 

.footer-bottom{
text-align:center;
}

.footer-bottom p{
color:#94a3b8;
font-size:.95rem;
}

.social-icons{
display:flex;
gap:15px;
margin-top:20px;
}

.social-icons a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#0ea5e9;
color:white;
border-radius:50%;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
transform:translateY(-5px);
background:#38bdf8;
}
.whatsapp-link{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    transition:.4s ease;
    box-shadow:0 8px 20px rgba(37,211,102,.35);
}

.whatsapp-link:hover{
    transform:translateY(-6px) scale(1.15);
    box-shadow:0 15px 30px rgba(37,211,102,.5);
}

.whatsapp-link i{
    font-size:24px;
    transition:.4s;
}

.whatsapp-link:hover i{
    transform:rotate(12deg);
}

/* ================= FINAL MOBILE ================= */

@media(max-width:900px){
.global-content{
flex-direction:column;
}

.global-text{
text-align:center;
}

.country-list{
justify-content:center;
}

.global-text h2{
font-size:2.4rem;
}

.director-wrapper{
flex-direction:column;
}

.director-content{
text-align:center;
}

.director-content h2{
font-size:2.3rem;
}
}

#topBtn{
position:fixed;
bottom:30px;
right:30px;
width:60px;
height:60px;
border:none;
border-radius:50%;
background:linear-gradient(
135deg,
#38bdf8,
#0284c7
);
color:white;
font-size:1.5rem;
font-weight:bold;
cursor:pointer;
display:none;
z-index:9999;
box-shadow:
0 10px 25px rgba(56,189,248,.35);
transition:all .4s ease;
}

#topBtn:hover{
transform:
translateY(-8px)
scale(1.1);
box-shadow:
0 18px 35px rgba(56,189,248,.45);
background:linear-gradient(
135deg,
#0ea5e9,
#0369a1
);
}

#topBtn:active{
transform:scale(.95);
}

#topBtn::before{
content:"";
position:absolute;
inset:-5px;
border-radius:50%;
background:rgba(56,189,248,.25);
z-index:-1;
filter:blur(10px);
}

@media (max-width:768px){

.container{
    width:95%;
}

h1{
    font-size:2.2rem !important;
}

h2{
    font-size:2rem !important;
}

p{
    font-size:1rem;
}

.header .container,
.hero-content,
.global-content,
.director-wrapper,
.contact-container{
    flex-direction:column !important;
}

.service-grid,
.why-grid,
.gallery-grid,
.footer-grid{
    grid-template-columns:1fr !important;
}

.country-list{
    justify-content:center;
}

#topBtn{
    width:50px;
    height:50px;
    right:15px;
    bottom:15px;
}

}

.whatsapp-btn{

position:fixed;

bottom:120px;

right:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

text-decoration:none;

box-shadow:
0 0 20px rgba(37,211,102,.6);

z-index:9999;
}