/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
padding-top:80px;
}

/* NAVBAR */

.navbar{
display:flex;
align-items:center;
padding:20px 80px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);

/* FIXED */
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
}

/* LOGO */

/* LOGO WITH IMAGE */

.logo{
display:flex;
align-items:center;
gap:10px;

text-decoration:none; /* underline hata dega */
color:#1f3b57;
font-size:22px;
font-weight:bold;
}

.logo img{
height:40px;
width:auto;
}
/* NAV LINKS CENTER */

.nav-links{
display:flex;
gap:40px;
list-style:none;

position:absolute;
left:50%;
transform:translateX(-50%);
}

.nav-links li{
position:relative;
}

/* LINKS */

.nav-links a{
position:relative;
text-decoration:none;
color:#1f3b57;
font-size:16px;
font-weight:500;
}

/* UNDERLINE */

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#d1a457;
transition:0.35s;
}

.nav-links a:hover::after{
width:100%;
}

/* ARROW */

.arrow{
font-size:12px;
transition:0.3s;
}

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

.dropdown{
position:relative;
}

/* invisible hover bridge */
.dropdown::after{
content:"";
position:absolute;
top:100%;
left:0;
width:100%;
height:15px;
}

/* dropdown menu */

.dropdown-menu{
position:absolute;
top:100%; /* FIXED */
left:0;

background:white;
min-width:220px;
padding:10px 0;

border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);

display:flex;
flex-direction:column;

/* animation */
opacity:0;
transform:translateY(10px);
pointer-events:none;

transition:0.3s;

z-index:1000;
}

/* dropdown links */

.dropdown-menu a{
padding:12px 20px;
color:#1f3b57;
font-size:15px;
transition:0.2s;
}

/* hover effect */

.dropdown-menu a:hover{
background:#f5f7fb;
padding-left:25px;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

/* arrow rotate */

.dropdown:hover .arrow{
transform:rotate(180deg);
}

/* BUTTON RIGHT */

.nav-btn{
margin-left:auto;
}

.nav-btn a{
background:#cfa45c;
color:white;
text-decoration:none;
padding:12px 28px;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.nav-btn a:hover{
background:#b8914d;
}

/*--------------------------------- HERO section ------------------------------*/

/* HERO SECTION */
.home-hero{
height:520px;
background:url("/images/hero.webp");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-left:120px;
border-bottom-left-radius:50px;
border-bottom-right-radius:50px;
}

/* HERO CONTENT */
.home-hero-content{
max-width:550px;
}

/* HEADING */
.home-hero-content h1{
font-size:48px;
color:#1f3b57;
margin-bottom:20px;
}

/* TEXT */
.home-hero-content p{
font-size:18px;
color:#333;
margin-bottom:30px;
}

/* BUTTONS */
.home-buttons{
display:flex;
gap:20px;
}

/* GOLD BUTTON */
.home-gold{
background:#cfa45c;
border:none;
padding:15px 35px;
border-radius:40px;
color:white;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.home-gold:hover{
background:#b8914d;
}

/* BLUE BUTTON */
.home-blue{
background:#1f3b57;
border:none;
padding:15px 35px;
border-radius:40px;
color:white;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.home-blue:hover{
background:#163047;
}

/*---------------------------------- WHO SECTION----------------------------- */

.who-section{
height:420px;
background:url("/images/about.webp");
background-size:cover;
background-position:center right;
display:flex;
align-items:center;
padding:80px 120px;
}

/* LEFT TEXT */

.who-text{
max-width:520px;
}

.who-text h2{
font-size:36px;
color:#1f3b57;
margin-bottom:15px;
}

.who-text h4{
font-size:18px;
font-weight:600;
color:#1f3b57;
margin-bottom:15px;
}

.who-text p{
font-size:16px;
color:#4b4b4b;
line-height:1.6;
margin-bottom:25px;
}

/* BUTTON */

.learn-btn{
display:inline-block;
background:#2d4a66;
color:white;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-size:15px;
transition:0.3s;
}

.learn-btn:hover{
background:#1f3b57;
}

/*----------------------------------expertise SECTION----------------------------- */

/* ===== EXPERTISE SECTION ===== */

.expertise{
background: url("/images/expertise-bg.webp");
background-size: cover;
background-position: center;
padding: 80px 0;
text-align: center;
}

/* container */

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

/* heading */

.expertise h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
color:#1a1a1a;
}

.subtitle{
color:#666;
margin-bottom:50px;
font-size:16px;
}

/* cards wrapper */

.home-cards{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

/* single card */

.home-card{
background:rgba(255,255,255,0.95);
padding:30px;
width:260px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

/* hover */

.home-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* icon */

.home-card img{
width:55px;
margin:0 auto 15px auto;  /* 🔥 center fix */
display:block;            /* 🔥 important */
}

/* title */

.home-card h3{
font-size:18px;
margin-bottom:10px;
color:#222;
}

/* text */

.home-card p{
font-size:14px;
color:#777;
margin-bottom:15px;
line-height:1.6;
}

/* button */

.home-card a{
display:inline-block;
padding:8px 18px;
background:#1c4c7d;
color:#fff;
border-radius:20px;
font-size:13px;
text-decoration:none;
transition:0.3s;
}

.home-card a:hover{
background:#163b60;
}

/* -----------------------------------INDUSTRY SECTION ------------------------*/

.industry{
padding:80px 0;
background:#f5f7fa;
text-align:center;
}

.industry h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.industry .subtitle{
color:#666;
margin-bottom:50px;
}

/* cards layout */

.industry-cards{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

/* single card */

.industry-card{
width:260px;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.industry-card:hover{
transform:translateY(-6px);
}

/* card image */

.industry-card img{
width:100%;
height:150px;
object-fit:cover;
}

/* card title */

.industry-card h3{
padding:15px;
font-size:16px;
color:#333;
}

/* -----------------------------------why-choose SECTION ------------------------*/

.home-why-choose{
padding:90px 0;
text-align:center;
background-image: url("/images/why-choose-bg.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.home-why-choose h2{
font-size:32px;
font-weight:700;
margin-bottom:10px;
}

.home-subtitle{
color:#666;
margin-bottom:40px;
font-size:14px;
}

.home-why-cards{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.home-why-card{
width:170px;
background:#fff;
padding:25px 15px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.home-why-card:hover{
transform:translateY(-6px);
}

.home-icon{
width:65px;
height:65px;
margin:auto;
margin-bottom:15px;
border-radius:50%;
background:linear-gradient(135deg,#5f8fb6,#3c6c92);
display:flex;
align-items:center;
justify-content:center;
}

.home-icon img{
width:30px;
height:30px;
object-fit:contain;
}

.home-why-card h4{
font-size:14px;
color:#333;
line-height:1.4;
}


/* -----------------------------------footer SECTION ------------------------*/



.footer{

background:#f5f7fa;
padding:70px 0 0;
border-top:3px solid #1f4b7a;

}

.footer-container{

max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding:0 20px;

}

.footer-col h3{

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

}

.footer-col h4{

font-size:18px;
color:#1f4b7a;
margin-bottom:15px;
position:relative;

}

.footer-col h4::after{

content:"";
width:40px;
height:3px;
background:#d4a85c;
display:block;
margin-top:6px;

}

.footer-col p{

font-size:14px;
line-height:1.7;
color:#555;

}

.footer-col ul{

list-style:none;
padding:0;

}

.footer-col ul li{

margin-bottom:10px;

}

.footer-col ul li a{

text-decoration:none;
color:#555;
transition:.3s;

}

.footer-col ul li a:hover{

color:#1f4b7a;

}

.footer-bottom{

margin-top:40px;
background:#e9edf2;
text-align:center;
padding:15px;
font-size:14px;
color:#444;

}



/*--------------------------------contact  PAGE ------------------------- */

.contact-page{

padding:80px 0;

background:url("/images/contact-bg.webp");
background-size:cover;
background-position:center;

display:flex;
justify-content:center;

}



/* CARD */

.contact-container{

width:100%;
max-width:1000px;

background:white;

border-radius:12px;

padding:30px;

display:grid;

grid-template-columns:220px 1fr 1fr;

gap:25px;

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

}



/* IMAGE */

.contact-image{

display:flex;
align-items:center;
}

.contact-image img{

width:200px;
height:auto;

}



/* CONTACT INFO */

.contact-info h2{

font-size:26px;
color:#1f3b57;
margin-bottom:20px;

}

.contact-info span{

color:#cfa45c;

}

.info-box{

margin-bottom:18px;

}

.info-box h4{

color:#1f3b57;
margin-bottom:5px;
font-size:16px;

}

.info-box p{

font-size:14px;
color:#555;

}



/* FORM */

.contact-form{

background:#f7f8fb;

padding:22px;

border-radius:10px;

}

.contact-form h3{

color:#1f3b57;
margin-bottom:8px;
font-size:20px;

}

.contact-form p{

font-size:13px;
margin-bottom:15px;
color:#555;

}

.form-row{

display:flex;
gap:10px;
margin-bottom:12px;

}

.contact-form input{

width:100%;
padding:10px;

border:1px solid #ddd;

border-radius:6px;

font-size:14px;

}

.contact-form textarea{

width:100%;
height:100px;

padding:10px;

border:1px solid #ddd;

border-radius:6px;

margin-bottom:12px;

font-size:14px;

}

.contact-form button{

width:100%;

background:#1f3b57;

color:white;

border:none;

padding:12px;

border-radius:6px;

font-size:15px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#cfa45c;

}


/*--------------------------------about PAGE ------------------------- */

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

.about-hero{
height:420px;
background:url('/images/about-bg.webp') center/cover no-repeat;
display:flex;
align-items:center;
color:rgb(239, 239, 241);
padding-left:80px;
}

.about-hero-content h1{
color:white;
}

.about-hero-content p{
color:#eee;
}

/* WHO WE ARE */

.who{
padding:80px 0;
}

.who-grid{
display:grid;
grid-template-columns:1fr 0.8fr;
gap:50px;
align-items:center;
}

.who-img img{
width:85%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* MISSION */

.mission{
background:#f3f6fa;
padding:60px 0;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.mission-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.mission-card i{
font-size:35px;
color:#f5a623;
margin-bottom:12px;
}

/* CORE VALUES */

.values{
padding:80px 0;
text-align:center;
background:#f8f9fb;
}

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

.value-card{
background:white;
padding:35px 25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.value-card:hover{
transform:translateY(-5px);
}

.value-card i{
font-size:40px;
color:#f5a623;
margin-bottom:15px;
}

.value-card h4{
margin-bottom:8px;
font-size:18px;
}

/* STATS SECTION */

.stats{
padding:70px 0;
background:url('/images/about-stats.webp') center/cover no-repeat;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
margin:auto;
}

.stat{
background:#1f3f66;
padding:35px;
border-radius:10px;
text-align:center;
color:white;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.stat h2{
font-size:20px;
color:#ffcc66;
margin-bottom:10px;
font-weight:600;
}

.stat p{
font-size:14px;
line-height:1.6;
}


/* TEAM SECTION */

.team{
padding:80px 0;
text-align:center;
background:#f8f9fb;
}

.team h2{
font-size:32px;
margin-bottom:40px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
width:90%;
margin:auto;
}

.team-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.team-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE FIX */

.team-card img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

/* IMAGE HOVER ZOOM */

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

.team-card h4{
margin-top:15px;
font-size:18px;
}

.team-card p{
margin-bottom:20px;
color:#666;
font-size:14px;
}



/* --------------------------------ai page ---------------------------------- */

.ai-hero{
height:450px;
background:url('/images/ai-hero.webp') center/cover no-repeat;
display:flex;
align-items:center;
padding-left:80px;
color:white;
}

.ai-hero h1{
font-size:48px;
margin-bottom:15px;
}

.ai-hero p{
font-size:20px;
margin-bottom:25px;
}

.ai-btn{
background:#f4b860;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:bold;
}


/* AI INTRO */

/* AI INTRO */

.ai-intro{
padding:80px 0;
background:#f7f8fb;
}

/* 🔥 NEW CONTAINER (ADD) */
.ai-container{
max-width:1200px;
margin:auto;
width:90%;
}

/* GRID */
.ai-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px; /* 🔥 better spacing */
align-items:center;
}

/* TEXT FIX */
.ai-text{
max-width:520px;
}

.ai-text h2{
font-size:32px;
color:#1f3b57;
margin-bottom:15px;
}

.ai-text p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* IMAGE */
.ai-image img{
width:100%;
border-radius:12px;
}


/* AI SOLUTIONS */

.ai-solutions{
padding:80px 0;
text-align:center;
}

.ai-card-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
margin:auto;
margin-top:40px;
}

.ai-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.ai-card:hover{
transform:translateY(-10px);
}

.ai-card i{
font-size:40px;
color:#24476c;
margin-bottom:15px;
}

/* AI WHY BG SECTION */

.ai-why{
height:420px;

background:url('/images/ai-team.webp') center/cover no-repeat;

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

position:relative;
text-align:center;
color:white;
}

/* DARK OVERLAY (important 🔥) */

.ai-why::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.6);
}

/* CONTENT */

.ai-why-content{
position:relative;
z-index:2;
max-width:700px;
}

/* HEADING */

.ai-why-content h2{
font-size:36px;
margin-bottom:25px;
}

/* LIST */

.ai-why-content ul{
list-style:none;
}

.ai-why-content li{
font-size:18px;
margin-bottom:15px;
}

.ai-why-content i{
color:#f4b860;
margin-right:10px;
}

/* ------------------------------cloud page -------------------------- */

.cloud-hero{
height:450px;
background:url('/images/cloud-hero.webp') center/cover no-repeat;
display:flex;
align-items:center;
padding-left:80px;
color:white;
}

.cloud-hero h1{
font-size:48px;
margin-bottom:10px;
}

.cloud-hero p{
font-size:20px;
margin-bottom:25px;
}

.cloud-btn{
background:#f4b860;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

.cloud-btn:hover{
background:#d89a3f;
}


/* INTRO */

.cloud-intro{
padding:80px 0;
background:#f8f9fb;
}

/* 🔥 NEW CONTAINER (ADD) */
.cloud-container{
max-width:1200px;
margin:auto;
width:90%;
}

/* GRID */
.cloud-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px; /* 🔥 spacing improve */
align-items:center;
}

/* TEXT FIX */
.cloud-text{
max-width:520px;
}

.cloud-text h2{
font-size:32px;
color:#1f3b57;
margin-bottom:15px;
}

.cloud-text p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* IMAGE */
.cloud-img img{
width:100%;
border-radius:12px;
}


/* SERVICES */

.cloud-services{
padding:80px 0;
text-align:center;
}

.cloud-card-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:90%;
margin:auto;
margin-top:40px;
}

.cloud-card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

.cloud-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.cloud-card i{
font-size:40px;
color:#24476c;
margin-bottom:15px;
}


/* WHY */

/* CLOUD WHY BACKGROUND STYLE */

.cloud-why{
height:420px;

background:url('/images/cloud-team.webp') center/cover no-repeat;

display:flex;
align-items:center;

padding-left:80px;

position:relative;
}


/* CONTENT */

.cloud-why-content{
position:relative;
z-index:2;
max-width:500px;
}

/* TEXT SAME AS BEFORE */

.cloud-why-content h2{
color:#1f3b57;
margin-bottom:20px;
}

.cloud-why-content ul{
list-style:none;
}

.cloud-why-content li{
font-size:18px;
margin-bottom:15px;
color:#1f3b57;
}

.cloud-why-content i{
color:#f4b860;
margin-right:10px;
}










/* ------------------------------experience  page -------------------------- */
/* HERO BACKGROUND IMAGE */

.exp-hero{

background: url("/images/experience-hero.webp") no-repeat center;

background-size: cover;

min-height:520px;

display:flex;

align-items:center;

padding:90px 120px;

position:relative;

border-bottom-left-radius:50px;
border-bottom-right-radius:50px;

}

/* DARK OVERLAY (taaki text clearly dikhe) */

.exp-hero::before{

content:"";

position:absolute;

top:0;
left:0;
width:100%;
height:100%;

background:rgba(10,30,60,0.6);

border-bottom-left-radius:50px;
border-bottom-right-radius:50px;

}

/* container */

.exp-container{

position:relative; /* IMPORTANT */

max-width:1200px;

width:100%;

}

/* TEXT */

.exp-text{

max-width:520px;

color:white;

}

.exp-text h1{

font-size:48px;

margin-bottom:20px;

}

.exp-text span{

color:#6ec1ff;

}

.exp-text p{

font-size:18px;

margin-bottom:30px;

color:#e6f0ff;

}

/* BUTTON */

.exp-btn{

background:#ff7a18;

border:none;

padding:15px 35px;

border-radius:30px;

color:white;

font-weight:bold;

cursor:pointer;

transition:0.3s;

}

.exp-btn:hover{

background:#ff8e33;

}
/* FEATURES */

.exp-features{
padding:80px 0;
text-align:center;
}

.exp-features h2{
font-size:34px;
margin-bottom:40px;
}

.exp-feature-cards{
display:flex;
justify-content:center;
gap:30px;
}

.exp-card{
background:white;
padding:30px;
width:260px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.exp-card img{
width:60px;
margin:0 auto 15px auto;
display:block;
}


/* TESTIMONIALS */

/* ================= TESTIMONIALS ================= */

.exp-testimonials{
background:#f5f7fa;
padding:80px 0;
text-align:center;
}

.exp-testimonials h2{
font-size:32px;
margin-bottom:50px;
color:#1f3b57;
}

/* cards layout */

.exp-testimonial-cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

/* single card */

.exp-testimonial{
background:white;
padding:30px 25px;
width:280px;
border-radius:15px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.exp-testimonial:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* user image */

.user-img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
margin:0 auto 15px auto;
display:block;
border:3px solid #e6eef7;
}

/* stars svg */

.stars{
display:flex;
justify-content:center;
gap:5px;
margin-bottom:15px;
}

.stars svg{
width:18px;
height:18px;
fill:#f5a623;
}

/* text */

.exp-testimonial p{
font-size:14px;
color:#555;
line-height:1.6;
margin-bottom:15px;
}

/* name */

.exp-testimonial h4{
font-size:16px;
color:#1f3b57;
font-weight:600;
}
/* COMMITMENT */

.exp-commitment{
padding:80px 0;
text-align:center;
}

.exp-commit-cards{
display:flex;
justify-content:center;
gap:30px;
}

.exp-commit{
background:white;
padding:30px;
width:220px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.exp-commit img{
width:60px;
margin:0 auto 10px auto;
display:block;
}


















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

.cyber-hero{
height:400px;
background:url("/images/cyber-hero.webp") center/cover no-repeat;
display:flex;
align-items:center;
padding:80px;
color:#fff;
}

.cyber-content h1{
font-size:48px;
margin-bottom:20px;
}

.cyber-content p{
max-width:500px;
margin-bottom:25px;
}

/* 🔥 BUTTON FIX */
.cyber-btn{
background:#cfa45c;
padding:12px 28px;
border-radius:30px;
color:white;
text-decoration:none;
display:inline-block;
}

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

.cyber-services{
position:relative;
padding:140px 80px 120px;
background:url("/images/cyber-about.webp") right center/cover no-repeat;
overflow:hidden;
}

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

.cyber-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
90deg,
rgba(255,255,255,0.95) 0%,
rgba(255,255,255,0.85) 40%,
rgba(255,255,255,0.0) 70%
);
z-index:0;
}

/* ================= CURVES ================= */

.cyber-services::before{
content:"";
position:absolute;
top:-60px;
left:-5%;
width:110%;
height:120px;
background:white;
border-bottom-left-radius:50%;
border-bottom-right-radius:50%;
z-index:0;
}

.cyber-services::after{
content:"";
position:absolute;
bottom:-80px;
left:-5%;
width:110%;
height:160px;
background:white;
border-top-left-radius:50%;
border-top-right-radius:50%;
z-index:0;
}

/* ================= CONTENT ================= */

.cyber-services-content{
position:relative;
z-index:2;
max-width:1100px;
margin:auto;
margin-top:30px;
}

.cyber-services-content h2{
font-size:36px;
color:#1f3b57;
margin-bottom:10px;
}

.cyber-services-content p{
color:#4b4b4b;
margin-bottom:25px;
}

/* ================= CARDS ================= */

.cyber-service-box{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:30px;
max-width:900px;
margin:30px auto 0;
}

.cyber-card{
background:white;
padding:22px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:0.3s;
width:100%;
}

.cyber-card:hover{
transform:translateY(-6px);
}

.cyber-card h3{
color:#1f3b57;
margin-bottom:8px;
}

.cyber-card p{
font-size:14px;
color:#666;
}

/* ================= WHY SECTION ================= */

.cyber-why{
padding:80px 20px;
text-align:center;
background:#f9f9f9;
}

.cyber-why h2{
margin-bottom:30px;
}

.cyber-why-box{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.cyber-why-card{
background:white;
padding:20px;
border-radius:10px;
width:200px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

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

.cyber-process{
padding:80px 20px;
text-align:center;
}

.cyber-process-box{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:20px;
}

.cyber-step{
background:#1f3b57;
color:white;
padding:15px 25px;
border-radius:30px;
}

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

.cyber-cta{
padding:80px 20px;
text-align:center;
background:#1f3b57;
color:white;
}

.cyber-cta .cyber-btn{
margin-top:20px;
}

/* ================= WHY CHOOSE FIX ================= */

.cyber-why{
padding:100px 80px;
background:url("/images/cyber.webp") center/cover no-repeat;
text-align:center;
}

.cyber-why-content{
max-width:1100px;
margin:auto;
}

.cyber-why h2{
font-size:32px;
color:#1f3b57;
margin-bottom:40px;
}

/* GRID FIX 🔥 */

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

/* CARD FIX 🔥 */

.cyber-why-card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);

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

transition:0.3s;
}

.cyber-why-card:hover{
transform:translateY(-6px);
}

.cyber-why-card span{
color:#d1a457;
font-size:18px;
}

.cyber-why-card p{
color:#1f3b57;
font-weight:500;
font-size:14px;
}


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

.cyber-process{
padding:100px 20px;
background:url("/images/cyber-proces.webp") center/cover no-repeat;
text-align:center;
}

.cyber-process h2{
font-size:32px;
color:#1f3b57;
margin-bottom:40px;
}

/* GRID CENTER */

.cyber-process-box{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

/* STEP CARD */

.cyber-step{
background:#1f3b57;
color:white;
padding:18px 30px;
border-radius:10px;
font-weight:500;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
transition:0.3s;
}

.cyber-step:hover{
transform:translateY(-5px);
}

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

.cyber-cta{
background:#1f3b57;
color:white;
text-align:center;
padding:100px 20px;
}

.cyber-cta h2{
font-size:34px;
margin-bottom:15px;
}

.cyber-cta p{
font-size:18px;
margin-bottom:35px;
}

.cyber-cta-btn{
display:inline-block;
background:#d1a457;
color:white;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cyber-cta-btn:hover{
background:#b98e4d;
transform:translateY(-3px);
}





/* -------------------------------------------aero hero------------------------------ */

.aero-hero{

height:420px;

background:url("/images/aero-hero.webp");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

padding:80px;

color:white;

}

.aero-hero-content h1{
color:white;
}

.aero-hero-content p{
color:#ddd;
}

.btn{
background:#d1a457;
padding:12px 28px;
border-radius:30px;
color:white;
text-decoration:none;
}


/* GALLERY */

.aero-gallery{

padding:80px;
text-align:center;

}

.gallery-box{

display:grid;

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

gap:20px;

margin-top:40px;

}

.gallery-card{

background:#fff;

border-radius:12px;

overflow:hidden;

box-shadow:0 10px 20px rgba(0,0,0,0.08);

transition:0.3s;

}

.gallery-card img{

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

}

.gallery-card h3{

padding:15px;
color:#1f3b57;

}

.gallery-card:hover{
transform:translateY(-8px);
}


/*--------------------------- SERVICES */


/* ================= AEROSPACE SERVICES FINAL ================= */

.aero-services{

position:relative;
padding:100px 80px;

background:url("/images/aero-service.webp"); 
background-size:cover;
background-position:center;
background-repeat:no-repeat;

text-align:center;
color:white;
overflow:hidden;

}


/* OVERLAY */

.aero-services::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.55);
z-index:1;

}


/* CONTENT FIX */

.aero-services h2,
.aero-service-box{

position:relative;
z-index:2;

}


/* TITLE */

.aero-services h2{

font-size:36px;
margin-bottom:40px;

}


/* GRID (UPDATED CLASS ✅) */

.aero-service-box{

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

}


/* CARD (UPDATED CLASS ✅) */

.aero-card{

background:rgba(255,255,255,0.9);
color:#1f3b57;

padding:25px;

border-radius:12px;

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

transition:0.3s;

}


/* TEXT */

.aero-card h3{
margin-bottom:10px;
}

.aero-card p{
color:#555;
font-size:14px;
}


/* HOVER */

.aero-card:hover{

transform:translateY(-8px);

}









/* CTA */

.aero-cta{

background:url("/images/sky.webp");
background-size:cover;
background-position:center;

text-align:center;

padding:100px;

color:black;

}

.aero-cta h2{
font-size:36px;
margin-bottom:15px;
}

.aero-cta p{
margin-bottom:30px;
}















/*------------------------------------asset page ----------------------------------- */

/* HERO */

.asset-hero{

height:420px;

background:url("/images/finance-bg.webp");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

padding:80px;

color:white;

position:relative;

}


/* content above overlay */

.hero-content{
position:relative;
z-index:2;
}

.asset-hero-content h1{
color:white;
}

.asset-hero-content p{
color:#ddd;
}


/* BUTTON */

.btn{
background:#d1a457;
padding:14px 32px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#b98e4d;
transform:translateY(-3px);
}


/* SERVICES */

/* ================= ASSET SERVICES FINAL ================= */

.asset-services{

padding:100px 80px;
text-align:center;

}


/* TITLE */

.asset-services h2{
font-size:36px;
margin-bottom:20px;
color:#1f3b57;
}


/* GRID (UPDATED CLASS ✅) */

.asset-service-box{

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

}


/* CARD (UPDATED CLASS ✅) */

.asset-card{

background:white;
padding:30px;

border-radius:15px;

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

transition:0.3s;

}


/* HOVER */

.asset-card:hover{
transform:translateY(-8px);
}


/* TEXT */

.asset-card h3{
color:#1f3b57;
margin-bottom:10px;
}

.asset-card p{
color:#555;
}


/* ================= ANALYTICS SECTION ================= */

.asset-analytics{

height:350px;

background:url("/images/finance-analytics.webp");
background-size:cover;
background-position:center;

display:flex;
align-items:center;

padding:80px;

color:white;

position:relative;

}


/* CONTENT */

.analytics-content{

position:relative;

z-index:2;

max-width:500px;

text-align:left;

}

.asset-analytics h2{
font-size:34px;
margin-bottom:15px;
}

.asset-analytics p{
margin-bottom:25px;
}

/* CTA */

.asset-cta{

background:url("/images/finance-sky.webp");

background-size:cover;

background-position:center;

text-align:center;

padding:120px 80px;

color:white;

position:relative;

}


/* overlay */

.asset-cta::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.35);

}


/* content */

.asset-cta h2,
.asset-cta p,
.asset-cta .btn{

position:relative;

z-index:2;

}

.asset-cta h2{
font-size:36px;
margin-bottom:15px;
}

.asset-cta p{
margin-bottom:30px;
}















/* -------------------------------------banking page------------------------------- */


/* HERO */
.bcm-hero {
  height: 80vh;
  background-image: url(/images/banking-hero.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* HERO TEXT */
.bcm-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.bcm-hero-content p {
  font-size: 18px;
}

/* SECTION */
.bcm-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HEADING FIX */
.bcm-title {
  font-size: 34px;
  margin-bottom: 10px;
  color: #1f3b57;
}

/* GRID */
.bcm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.bcm-card{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.bcm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.bcm-card img {
  width: 50px;
  margin-bottom: 15px;
}

.bcm-card h3 {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.bcm-card p {
  font-size: 13px;
  color: #777;
}

/* NEW STATS SECTION */
.bcm-stats {
  background: #f5f7fa;
  padding: 80px 20px;
  text-align: center;
}

.bcm-stats h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f3b57;
}

.bcm-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.bcm-stat {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.bcm-stat h3 {
  font-size: 32px;
  color: #cfa45c;
  margin-bottom: 10px;
}

.bcm-stat p {
  color: #555;
}

/* CTA */
.bcm-cta {
  background: linear-gradient(135deg,#2c5364,#203a43);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.bcm-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.bcm-cta button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: white;
  color: #2c5364;
  font-weight: 600;
  cursor: pointer;
}



















/*------------------------------consumer page ------------------------------ */
.cg-hero {
  height: 75vh;
  background-image: url(/images/consumer-hero.webp);

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

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cg-hero h1 {
  font-size: 48px;
}

/* FEATURES */
.cg-features {
  padding: 80px 20px;
  text-align: center;
  background: #f5f7fa;
}

.cg-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.cg-feature {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.cg-feature:hover {
  transform: translateY(-8px);
}

.cg-feature img {
  width: 50px;
  margin-bottom: 15px;
}

.cg-services{
padding:80px 20px;
text-align:center;
background:#f8f9fb;
}

.cg-services h2{
font-size:34px;
color:#1f3b57;
margin-bottom:10px;
}

.cg-subtitle{
color:#666;
max-width:700px;
margin:0 auto 40px;
}

.cg-service-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.cg-service{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.cg-service:hover{
transform:translateY(-8px);
}

.cg-service i{
font-size:40px;
color:#cfa45c;
margin-bottom:15px;
}

.cg-service h3{
font-size:18px;
margin-bottom:10px;
color:#1f3b57;
}

.cg-service p{
font-size:14px;
color:#555;
}

/* CTA */
.cg-cta {
  background: linear-gradient(135deg,#1f3b57,#2c5364);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cg-cta button {
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #1f3b57;
  font-weight: 600;
}






/* ================= GLOBAL FIX ================= */

img{
max-width:100%;
height:auto;
display:block;
}

h1,h2,h3{
word-wrap:break-word;
}

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

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
margin-left:auto;
}







/* ================= ------------------------------------TABLET ================= */
@media (max-width:992px){

/* NAVBAR */
.navbar{
    padding:15px 25px;
}

.nav-links{
    position:static;
    transform:none;
    gap:20px;
}

/* HERO */
.home-hero{
    padding:60px 30px;
    height:auto;
}

.home-hero-content{
    text-align:center;
    margin:auto;
}

.home-hero-content h1{
    font-size:34px;
}

/* WHO */
.who-section{
    padding:50px 30px;
    height:auto;
    text-align:center;
}

/* COMMON GRID FIX */
.who-grid,
.ai-grid,
.cloud-grid{
    grid-template-columns:1fr;
}

/* CONTACT */
.contact-container{
    grid-template-columns:1fr;
    text-align:center;
}

/* FOOTER */
.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}


/* ================= MOBILE ================= */
@media (max-width:768px){

/* NAVBAR */
.navbar{
    padding:15px 20px;
    flex-wrap:wrap;
}

.menu-toggle{
    display:block;
}

/* MOBILE MENU */
.nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;

    flex-direction:column;
    align-items:flex-start;
    padding:20px;

    display:none;
}

.nav-links.active{
    display:flex;
}

.nav-links li{
    width:100%;
}

.nav-links a{
    display:block;
    width:100%;
    padding:12px 0;
}


/* MOBILE DROPDOWN FIX */
.dropdown-menu{
    display:none;
}

.dropdown.active .dropdown-menu{
    display:flex;
}

.nav-btn{
    display:none;
}

/* HERO */
.home-hero{
    padding:40px 20px;
    text-align:center;
}

.home-hero-content h1{
    font-size:26px;
}

.home-hero-content p{
    font-size:14px;
}

.home-buttons{
    justify-content:center;
    gap:10px;
}

/* WHO */
.who-section{
    padding:40px 20px;
}

/* ALL CARDS FIX 🔥 */
.home-cards,
.industry-cards,
.home-why-cards,
.exp-feature-cards,
.exp-commit-cards{
    flex-direction:column;
    align-items:center;
}

.home-card,
.industry-card,
.home-why-card,
.exp-card,
.exp-commit{
    width:90%;
    max-width:320px;
}

/* ALL GRID PAGES 🔥 */
.ai-card-grid,
.cloud-card-grid,
.aero-service-box,
.gallery-box,
.asset-service-box,
.cyber-why-box{
    grid-template-columns:1fr;
}

/* CYBER */
.cyber-service-box{
    grid-template-columns:1fr;
}

/* CONTACT 🔥 */
.contact-page{
    padding:40px 15px;
}

.contact-container{
    grid-template-columns:1fr;
    width:90%;
    margin:auto;
    padding:20px;
    gap:25px;
}

.contact-image{
    justify-content:center;
}

.contact-image img{
    width:120px;
}

.contact-form{
    padding:18px;
}

.contact-form .form-row{
    flex-direction:column;
}

/* FOOTER 🔥 */
.footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:25px;
}

}




/* ===== ABOUT PAGE FINAL FIX ===== */

@media (max-width:768px){

.about-hero{
    padding:40px 20px;   /* 🔥 left padding remove */
    text-align:center;
}

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

.who-img img{
    width:100%;
}

/* IMPORTANT 🔥 */
.values-grid{
    grid-template-columns:1fr;
}

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

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

}


/* ================= CONTACT FINAL 100% FIX ================= */

@media (max-width:768px){

/* FORCE GRID FIX */
.contact-container{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:95% !important;
    margin:auto !important;
    padding:20px !important;
}

/* IMAGE CENTER */
.contact-image{
    justify-content:center !important;
}

.contact-image img{
    width:120px !important;
}

/* TEXT CENTER */
.contact-info{
    text-align:center !important;
}

/* FORM FULL WIDTH */
.contact-form{
    width:100% !important;
}

/* 🔥 IMPORTANT FIX */
.form-row{
    flex-direction:column !important;
}

/* INPUT FULL WIDTH */
.contact-form input,
.contact-form textarea{
    width:100% !important;
}

}






/* ===== CUSTOMER EXPERIENCE HERO FIX ===== */

@media (max-width:768px){

.exp-text h1{
    font-size:25px;      /* 🔥 chota kar diya */
    line-height:1.3;     /* spacing control */
    max-width:250px;     /* 🔥 line break control */
}

/* optional: center karna ho */
.exp-text{
    text-align:left;
}



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

.cloud-text{
max-width:100%;
}



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

.ai-text{
max-width:100%;
text-align:left;
}

}




/* ===== CONSUMER GOODS FIX ===== */

/* FEATURES CARDS */
.cg-feature{
    text-align:center;   /* 🔥 center content */
}

.cg-feature img{
    display:block;
    margin:0 auto 15px auto;   /* 🔥 center icon */
    width:70px;                /* 🔥 size bada */
}

/* PRODUCTS CARDS */
.cg-product{
    text-align:center;
}

.cg-product img{
    margin:auto;        /* 🔥 center image */
    height:250px;       /* 🔥 thoda bada */
    object-fit:cover;
}



