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

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

body{
font-family:Arial, sans-serif;
line-height:1.7;
color:#222;
background:#f6f6f6;
}

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

.section{
padding:80px 0;
}

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

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

header{
background:#fff;
padding:20px 5%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 8px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:100;
}

.logo{
font-weight:700;
font-size:18px;
color:#111;
}

.nav-links{
display:flex;
gap:20px;
align-items:center;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#111;
}

.btn{
background:#0b2341;
color:#ffffff !important;
padding:14px 28px;
text-decoration:none;
border-radius:4px;
font-weight:700;
display:inline-block;
}

.btn:hover{
opacity:.9;
}

/* =========================
   HOME PAGE
========================= */

.hero{
min-height:80vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:60px 20px;

background:
linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.45)
),
url("images/hero.png");

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

color:white;
}

.hero h1{
font-size:56px;
margin-bottom:25px;
line-height:1.2;
}

.hero p{
font-size:22px;
max-width:1000px;
margin:auto auto 30px;
}

.intro{
background:#fff;
padding:80px 10%;
}

.intro h2{
font-size:40px;
margin-bottom:20px;
}

.cta{
padding:100px 10%;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

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

.page-hero{
padding:40px 0;
background:#ececec;
}

.two-col{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.two-col img{
width:100%;
border-radius:6px;
}

.page-hero h2{
font-size:48px;
margin-bottom:25px;
line-height:1.2;
}

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

.blue-band{
background:#0b2341;
color:#fff;
padding:80px 0;
}

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

.band-grid h2{
font-size:42px;
}

/* =========================
   TEAM PAGE
========================= */

.team-section{
padding:100px 0;
background:#fff;
}

.team-title{
text-align:center;
margin-bottom:80px;
}

.team-title h1{
font-size:48px;
margin-bottom:15px;
}

.team-title p{
max-width:700px;
margin:auto;
}

.team-member{
display:grid;
grid-template-columns:300px 1fr;
gap:60px;
align-items:center;
margin-bottom:100px;
}

.team-member img{
width:300px;
height:360px;
object-fit:cover;
border-radius:6px;
}

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

.team-member h4{
color:#0b2341;
margin-bottom:20px;
}

.team-member p{
line-height:1.8;
}

.reverse{
direction:rtl;
}

.reverse > *{
direction:ltr;
}

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

footer{
background:#0b2341;
color:#fff;
text-align:center;
padding:25px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

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

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

.intro h2{
font-size:30px;
}

.page-hero h2{
font-size:34px;
}

.two-col{
grid-template-columns:1fr;
}

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

.team-member{
grid-template-columns:1fr;
gap:25px;
}

.team-member img{
width:100%;
height:auto;
}

.reverse{
direction:ltr;
}

.team-title h1{
font-size:34px;
}

.logo{
text-align:center;
}

}
/* HEADER NAVIGATION */

header nav{
display:flex;
align-items:center;
gap:25px;
}

.nav-link{
text-decoration:none;
color:#111;
font-weight:600;
}

.nav-link:hover{
color:#0b2341;
}

header .btn{
padding:12px 28px;
}


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

.services-hero{
background:
linear-gradient(
rgba(11,35,65,0.65),
rgba(11,35,65,0.65)
),
url("images/imagesservices-banner.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:550px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.services-overlay{
padding:80px;
text-align:center;
max-width:1000px;
margin:40px;
}

.services-overlay h1{
color:white;
font-size:52px;
line-height:1.1;
margin-bottom:25px;
}

.services-overlay p{
color:white;
font-size:20px;
line-height:1.8;
max-width:800px;
margin:auto;
}

.services-section{
padding:90px 10%;
background:#f8f9fb;
}

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

.service-card{
background:white;
padding:35px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.service-card h2{
font-size:26px;
margin-bottom:15px;
color:#0b2341;
}

.service-card p{
font-size:16px;
line-height:1.8;
color:#444;
}

.services-cta{
background:#0b2341;
color:white;
text-align:center;
padding:120px 10%;
}

.services-cta h2{
font-size:42px;
margin-bottom:20px;
}

.services-cta p{
font-size:18px;
max-width:800px;
margin:auto;
margin-bottom:40px;
line-height:1.8;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.services-cta .btn{
background:white;
color:#0b2341;
font-weight:bold;
}

.services-cta .btn:hover{
opacity:0.9;
}

@media(max-width:768px){

.services-overlay{
padding:40px 25px;
}

.services-overlay h1{
font-size:34px;
}

.services-overlay p{
font-size:16px;
}

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

.services-cta h2{
font-size:30px;
}

}
.services-cta .btn{
display:inline-block;
padding:16px 34px;
font-size:16px;
font-weight:700;
text-transform:uppercase;
}
.services-cta .btn{
color:#002b4f;
background:white;
font-weight:700;
}
header nav a,
header nav a:visited{
    color:#0b2341 !important;
    text-decoration:none;
}

header nav a:hover{
    color:#35506f !important;
}

.services-cta .btn{
    background:#ffffff !important;
    color:#0b2341 !important;
    padding:16px 34px;
    border-radius:4px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
}

.services-cta .btn:hover{
    background:#e8edf2 !important;
}
/* BOOK NOW button text fix */

header .btn,
header .btn:visited{
    color:#ffffff !important;
}

header .btn:hover{
    color:#ffffff !important;
}

/* ABOUT PAGE CTA BUTTON FIX */

.cta .btn{
    background:#ffffff !important;
    color:#0b2341 !important;
    padding:16px 34px !important;
    border-radius:6px !important;
    text-decoration:none !important;
    font-weight:700 !important;
    display:inline-block !important;
    margin:10px !important;
}

.cta .btn:hover{
    background:#e8edf2 !important;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.footer-buttons{
display:flex;
justify-content:center;
gap:15px;
margin-top:20px;
flex-wrap:wrap;
}

.footer-btn{
background:#ffffff;
color:#0b2341 !important;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:700;
display:inline-block;
}

.footer-btn:hover{
background:#e8edf2;
}


/* HEADER LOGO */

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

.header-logo{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

@media(max-width:768px){

.logo{
flex-direction:column;
text-align:center;
}

.header-logo{
width:65px;
height:65px;
}

}

/* =====================================
   PREMIUM WEBSITE ENHANCEMENTS
   Add at END of CSS
===================================== */

/* Smooth scrolling */

html{
scroll-behavior:smooth;
}

/* Page fade-in */

body{
animation:pageFade 0.8s ease;
}

@keyframes pageFade{
from{
opacity:0;
}
to{
opacity:1;
}
}

/* Premium service cards */

.service-card{
transition:
transform 0.35s ease,
box-shadow 0.35s ease,
background 0.35s ease;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

/* Footer buttons */

.footer-btn{
transition:
transform 0.3s ease,
background 0.3s ease,
box-shadow 0.3s ease;
}

.footer-btn:hover{
transform:translateY(-4px);
box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

/* Main buttons */

.btn{
transition:
transform 0.3s ease,
box-shadow 0.3s ease,
opacity 0.3s ease;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* Team images */

.team-member img{
transition:
transform 0.4s ease,
box-shadow 0.4s ease;
}

.team-member img:hover{
transform:scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* About page images */

.two-col img{
transition:
transform 0.4s ease,
box-shadow 0.4s ease;
}

.two-col img:hover{
transform:scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Navigation */

.nav-links a,
nav a{
transition:color 0.3s ease;
}

.nav-links a:hover,
nav a:hover{
color:#35506f;
}

/* Header */

header{
transition:all 0.3s ease;
}

/* Section headings */

.section h2,
.page-hero h2,
.team-title h1{
transition:all 0.3s ease;
}

/* Premium footer */

footer{
padding:40px 20px;
}

/* Better spacing on mobile */

@media(max-width:768px){

.service-card{
padding:25px;
}

footer{
padding:30px 15px;
}

}


/* ========================================
   ABOUT PAGE PREMIUM ENHANCEMENTS
======================================== */

/* Better Section Spacing */

.page-hero,
.section{
padding-top:90px;
padding-bottom:90px;
}

/* Headings */

.page-hero h2,
.section h2{
color:#0b2341;
font-size:42px;
margin-bottom:25px;
line-height:1.2;
}

.section p{
font-size:17px;
}

/* Image Effects */

.page-hero img,
.two-col img{
border-radius:10px;
transition:all .5s ease;
box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.page-hero img:hover,
.two-col img:hover{
transform:scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Mission Section */

.section h2{
margin-bottom:20px;
}

/* Values Cards */

.services-grid{
margin-top:40px;
}

.service-card{
transition:all .35s ease;
cursor:pointer;
}

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

/* Expertise List */

.section p{
transition:.3s;
}

.section p:hover{
transform:translateX(6px);
}

/* CTA */

.cta{
overflow:hidden;
position:relative;
}

.cta .btn{
transition:all .3s ease !important;
}

.cta .btn:hover{
transform:translateY(-3px);
}

/* Footer */

footer{
padding:35px;
}

/* Mobile Improvements */

@media(max-width:768px){

.page-hero h2,
.section h2{
font-size:30px;
text-align:center;
}

.page-hero p,
.section p{
text-align:center;
}

.page-hero,
.section{
padding-top:60px;
padding-bottom:60px;
}

}
