/* GLOBAL RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
font-family:'Inter',sans-serif;
background:#ffffff;
color:#1a1a1a;
line-height:1.6;
}


/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
background:#000;
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
}

.logo img{
height:60px;
width:auto;
}


/* NAV MENU */

.nav-menu{
display:flex;
align-items:center;
gap:30px;
}

.nav-menu a{
color:white;
text-decoration:none;
font-size:15px;
position:relative;
transition:0.3s;
}

.nav-menu a:hover{
color:#C58B2A;
}

.nav-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#C58B2A;
transition:0.3s;
}

.nav-menu a:hover::after{
width:100%;
}


/* CONTACT BUTTON */

.nav-cta{
background:#C58B2A;
padding:10px 20px;
border-radius:3px;
}

.nav-cta:hover{
background:#a87320;
color:white;
}


/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:35px;
left:0;
background:white;
display:none;
flex-direction:column;
min-width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.dropdown-menu a{
color:#222;
padding:12px 20px;
}

.dropdown:hover .dropdown-menu{
display:flex;
}


/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:white;
margin:4px 0;
}


/* HERO */

.hero{
margin-top:75px;
height:85vh;
background:url("../images/hero2.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero-overlay{
background:rgba(0,0,0,0.55);
padding:60px;
border-radius:8px;
color:white;
max-width:700px;
}

.hero-overlay h1{
font-size:48px;
margin-bottom:20px;
}

.hero-overlay p{
font-size:18px;
margin-bottom:30px;
}


/* BUTTON */

.btn-primary{
background:#C58B2A;
color:white;
padding:14px 28px;
text-decoration:none;
border-radius:5px;
font-weight:600;
display:inline-block;
transition:0.3s;
}

.btn-primary:hover{
background:#a8741f;
}


/* SECTION */

.section{
padding:90px 20px;
text-align:center;
}

.section-title{
font-size:34px;
margin-bottom:40px;
font-weight:600;
}

.section-intro{
max-width:750px;
margin:0 auto 50px auto;
font-size:18px;
color:#555;
}


/* SERVICES */

.home-services{
padding:100px 20px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.service-card{
background:#f5f5f5;
padding:35px;
border-radius:8px;
transition:0.3s;
text-align:center;
}

.service-card h3{
color:#C58B2A;
margin-bottom:10px;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


/* INDUSTRIES */

.industries-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:80px auto;
padding:0 20px;
}

.industry-card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
text-align:left;
transition:0.3s;
}

.industry-card h3{
color:#C58B2A;
margin-bottom:10px;
}

.industry-card:hover{
transform:translateY(-5px);
}


/* LEADERSHIP */

.leadership{
max-width:900px;
margin:auto;
text-align:center;
}

.leader-text{
text-align:center;
margin:auto;
max-width:700px;
}

.leader-role{
font-weight:600;
color:#C58B2A;
margin-bottom:20px;
}


/* CTA */

.cta{
background:#000;
color:white;
text-align:center;
padding:100px 20px;
}

.cta h2{
font-size:40px;
margin-bottom:20px;
}

.cta p{
max-width:650px;
margin:0 auto 30px auto;
font-size:18px;
}


/* INSIGHTS */

.insights-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1100px;
margin:80px auto;
padding:0 20px;
}

.insight-card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
transition:0.3s;
}

.insight-card h3{
color:#C58B2A;
margin-bottom:10px;
}

.insight-card a{
display:inline-block;
margin-top:15px;
color:black;
font-weight:600;
text-decoration:none;
}

.insight-card:hover{
transform:translateY(-5px);
}


/* CONTACT */

.contact-section{
padding:80px 20px;
}

.contact-container{
max-width:1100px;
margin:auto;
display:flex;
gap:50px;
flex-wrap:wrap;
}

.contact-info{
flex:1;
}

.contact-form{
flex:1;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ccc;
border-radius:5px;
font-family:inherit;
}

.contact-form button{
background:#C58B2A;
color:white;
border:none;
padding:12px;
cursor:pointer;
border-radius:5px;
font-weight:600;
}


/* MAP */

.map-container{
max-width:1100px;
margin:auto;
}


/* CAREERS */

.careers-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:80px auto;
padding:0 20px;
}

.career-card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
transition:0.3s;
}

.career-card h3{
color:#C58B2A;
margin-bottom:10px;
}

.career-card:hover{
transform:translateY(-5px);
}


/* FOOTER */

.footer{
background:#000;
color:white;
padding:60px 20px;
width:100%;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.footer h4{
margin-bottom:15px;
color:#C58B2A;
}

.footer a{
color:#ccc;
text-decoration:none;
display:block;
margin-bottom:8px;
}

.footer a:hover{
color:white;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #333;
padding-top:20px;
}


/* ANIMATIONS */

.fade-in{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}


/* MOBILE */

@media(max-width:900px){

.nav-menu{
position:absolute;
top:75px;
left:0;
width:100%;
background:black;
flex-direction:column;
align-items:flex-start;
padding:30px;
display:none;
}

.nav-menu.active{
display:flex;
}

.hamburger{
display:flex;
}

.dropdown-menu{
position:static;
background:#111;
box-shadow:none;
}

.dropdown-menu a{
color:white;
}

.section{
padding:70px 20px;
}

.hero{
height:auto;
padding:40px 20px;
}

.hero-overlay{
padding:40px 25px;
}

.hero-overlay h1{
font-size:34px;
}

.hero-overlay p{
font-size:16px;
}

.footer-grid{
grid-template-columns:1fr;
}

}

/* -------------------------------- */
/* PAGE HERO (About, Services etc.) */
/* -------------------------------- */

.page-hero{
background:#111;
color:white;
text-align:center;
padding:120px 20px;
margin-top:75px;
}

.page-hero h1{
font-size:46px;
margin-bottom:20px;
}

.page-hero p{
max-width:650px;
margin:auto;
font-size:18px;
}


/* -------------------------------- */
/* SERVICE DETAIL PAGES */
/* -------------------------------- */

.service-detail{
max-width:900px;
margin:80px auto;
text-align:left;
padding:0 20px;
}

.service-detail h2{
color:#C58B2A;
margin-bottom:10px;
}

.service-detail h4{
margin-top:20px;
}

.service-detail ul{
margin-top:10px;
margin-left:20px;
}


/* -------------------------------- */
/* LEADERSHIP PAGE */
/* -------------------------------- */

.leadership-section{
padding:80px 20px;
}

.leader-container{
max-width:1100px;
margin:auto;
display:flex;
gap:50px;
align-items:center;
flex-wrap:wrap;
justify-content:center;
text-align:center;
}

.leader-image img{
width:300px;
border-radius:10px;
display:block;
margin:auto;
}

.leader-info{
flex:1;
max-width:600px;
margin:auto;
text-align:center;
}


/* -------------------------------- */
/* EXPERIENCE GRID */
/* -------------------------------- */

.experience-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:60px auto;
padding:0 20px;
}

.experience-card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
}


/* -------------------------------- */
/* SOLUTIONS PAGE */
/* -------------------------------- */

.solutions-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:80px auto;
padding:0 20px;
}

.solution-card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
transition:0.3s;
}

.solution-card h3{
color:#C58B2A;
margin-bottom:10px;
}

.solution-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* -------------------------------- */
/* MOBILE RESPONSIVE FIX */
/* -------------------------------- */

@media (max-width: 900px){

/* PAGE HERO */

.page-hero{
padding:90px 20px;
}

.page-hero h1{
font-size:32px;
}

.page-hero p{
font-size:16px;
}


/* SERVICE DETAILS */

.service-detail{
margin:50px auto;
text-align:center;
}

.service-detail ul{
text-align:left;
display:inline-block;
}


/* LEADERSHIP */

.leader-container{
flex-direction:column;
text-align:center;
gap:30px;
}

.leader-image img{
width:220px;
}

.leader-info{
max-width:100%;
}


/* CONTACT */

.contact-container{
flex-direction:column;
}


/* EXPERIENCE GRID */

.experience-grid{
grid-template-columns:1fr;
}


/* INDUSTRIES GRID */

.industries-grid{
grid-template-columns:1fr;
}


/* SOLUTIONS GRID */

.solutions-grid{
grid-template-columns:1fr;
}


/* INSIGHTS GRID */

.insights-grid{
grid-template-columns:1fr;
}


/* CAREERS GRID */

.careers-grid{
grid-template-columns:1fr;
}

}

/* SERVICE CARD STRUCTURE */

.service-card{
background:white;
padding:35px;
border-radius:8px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
margin-bottom:40px;
text-align:left;
}

/* SERVICE TITLE */

.service-card h3{
font-size:22px;
margin-bottom:15px;
}

/* DESCRIPTION */

.service-card p{
margin-bottom:25px;
line-height:1.7;
color:#444;
}

/* EACH SECTION (BENEFITS / OUTCOMES / APPROACH) */

.service-block{
margin-top:25px;
}

/* SECTION TITLES */

.service-block h4{
font-size:15px;
margin-bottom:12px;
color:#111;
}

/* ITEMS CONTAINER */

.service-items{
display:flex;
flex-direction:column;
gap:10px;
}

/* INDIVIDUAL ITEM BLOCKS */

.service-items span{
background:#f5f5f5;
padding:12px 16px;
border-radius:6px;
font-size:14px;
line-height:1.5;
}

/* BETTER MOBILE SPACING */

@media(max-width:768px){

.service-card{
padding:25px;
}

.service-card h3{
font-size:20px;
}

}

.service-card h3::after{
content:"";
display:block;
width:40px;
height:3px;
background:#0a2540;
margin-top:10px;
}

/* GLOBAL CONTENT ALIGNMENT */

.section,
.page-hero,
.contact-section,
.map-section,
.cta{
text-align:center;
}

/* LIMIT TEXT WIDTH FOR BETTER READING */

.section-intro,
.page-hero p,
.contact-info p{
max-width:800px;
margin-left:auto;
margin-right:auto;
}

/* CENTER CONTACT PAGE CONTENT */

.contact-container{
justify-content:center;
text-align:center;
}

/* CENTER MAP SECTION */

.map-section{
text-align:center;
}

.map-container{
max-width:1000px;
margin:auto;
}

/* SERVICES GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
margin-top:40px;
}

/* SERVICE CARD */

.service-card{
background:white;
padding:35px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.3s;
text-align:left;
}

/* HOVER EFFECT */

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* SERVICE TITLE */

.service-card h3{
font-size:22px;
margin-bottom:12px;
position:relative;
}

/* CONSULTING STYLE ACCENT */

.service-card h3::after{
content:"";
display:block;
width:40px;
height:3px;
background:#0a2540;
margin-top:10px;
}

/* SERVICE DESCRIPTION */

.service-card p{
margin-bottom:20px;
line-height:1.7;
color:#444;
}

/* SERVICE BLOCK SECTIONS */

.service-block{
margin-top:22px;
}

/* BLOCK HEADINGS */

.service-block h4{
font-size:15px;
margin-bottom:10px;
color:#111;
}

/* ITEMS */

.service-items{
display:flex;
flex-direction:column;
gap:10px;
}

/* ITEM BLOCKS */

.service-items span{
background:#f5f5f5;
padding:12px 16px;
border-radius:6px;
font-size:14px;
line-height:1.5;
}

/* SOLUTIONS SECTION */

.solutions-section{
margin-top:50px;
}

.solutions-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

/* SOLUTION CARD */

.solution-card{
background:#f7f9fc;
padding:35px;
border-radius:8px;
border:1px solid #e3e8ef;
transition:0.3s;
text-align:left;
}

.solution-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */

.solution-icon{
font-size:32px;
margin-bottom:15px;
}

/* TITLE */

.solution-card h3{
font-size:20px;
margin-bottom:12px;
}

/* DESCRIPTION */

.solution-card p{
font-size:15px;
color:#444;
line-height:1.6;
margin-bottom:18px;
}

/* ITEMS */

.solution-items{
display:flex;
flex-direction:column;
gap:8px;
}

.solution-items span{
background:white;
padding:10px 14px;
border-radius:6px;
font-size:14px;
border-left:3px solid #0a2540;
}

.solution-icon{
margin-bottom:18px;
}

.solution-icon svg{
width:36px;
height:36px;
}

.solution-icon{
margin-bottom:18px;
}

.solution-icon svg{
width:36px;
height:36px;
transition:0.3s;
}

.solution-card:hover svg{
stroke:#d37a07;
transform:scale(1.05);
}

.solution-icon{
  color: #000;
}

/* INDUSTRIES STRIP */

.industries-strip{
background:#f7f9fc;
padding:35px 20px;
margin-top:40px;
}

.industries-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:40px;
max-width:1100px;
margin:auto;
font-weight:500;
color:#333;
}

.industries-container span{
font-size:15px;
letter-spacing:0.5px;
}

/* ================= BUILT BY CREDIT ================= */
.built-by {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

.credit-logo {
  margin-left: 5px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.credit-logo:hover {
  filter: brightness(1.3);
}