:root{
  --bg:#f4f6f9;
  --navy:#0d2343;
  --navy-dark:#08162b;
  --gold:#c2a45d;
  --gold-soft:#d4b979;
  --white:#ffffff;
  --text:#172b44;
  --muted:#5e6d80;
  --border:#e3e8f0;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  color:var(--text);
  line-height:1.75;
  background:linear-gradient(135deg, #f0f4f9 0%, #e8ecf1 50%, #f0f4f9 100%);
  background-attachment:fixed;
}

img{
  display:block;
  width:100%;
  height:auto;
}

.container{
  width:min(94%,1200px);
  margin:0 auto;
}

section{
  padding:90px 0;
}

h1,h2,h3{
  font-family:'Playfair Display', serif;
  color:var(--navy);
}

h1{
  font-size:clamp(3rem,4vw,5rem);
  line-height:1.05;
}

h2{
  font-size:clamp(2.2rem,3vw,3.4rem);
}

h3{
  font-size:1.3rem;
}

p,li,a{
  font-family:'Inter', sans-serif;
  color:var(--muted);
}

a{
  color:inherit;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(13,35,67,0.93);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:20px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img.brand-logo{
  display:block;
  max-height:48px;
  width:auto;
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  align-items:center;
}

nav a{
  color:var(--white);
  text-decoration:none;
  font-weight:500;
  transition:color .25s ease;
}

nav a:hover{
  color:var(--gold-soft);
}

.hero{
  min-height:calc(100vh - 96px);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(13,35,67,0.75), rgba(8,22,43,0.8)),
    url('https://images.unsplash.com/photo-1528747008803-4206130b2d89?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat,
    url('Logo.jpg.jpeg')
    center/35% no-repeat;
  background-attachment:fixed, fixed, fixed;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-top:1px solid rgba(255,255,255,0.1);
  border-bottom:1px solid rgba(255,255,255,0.05);
  backdrop-filter:blur(12px) saturate(120%);
  -webkit-backdrop-filter:blur(12px) saturate(120%);
  z-index:0;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(194,164,93,0.03), rgba(13,35,67,0.05));
  z-index:0;
  pointer-events:none;
}

.hero-content{
  color:#fff;
  max-width:660px;
  position:relative;
  z-index:1;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:32px;
  padding:56px 48px;
  box-shadow:0 30px 60px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.2);
}

.hero-brand{
  font-size:.95rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.78);
  margin-bottom:22px;
  font-weight:600;
}

.hero h1{
  font-size:clamp(2.5rem,4vw,4.2rem);
  line-height:1.05;
  margin-bottom:18px;
  max-width:100%;
}

.hero-tagline{
  font-size:1rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.84);
  margin-bottom:28px;
}

.hero p{
  margin:0 0 32px;
  font-size:1.02rem;
  max-width:680px;
  color:rgba(255,255,255,0.88);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 32px;
  border-radius:999px;
  font-weight:600;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration:none;
}

.gold-btn{
  background:var(--gold);
  color:var(--navy);
}

.gold-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(0,0,0,0.16);
}

.contact .gold-btn:hover {
  background: var(--navy);
  color: #fff;
}

.outline-btn{
  border:2px solid rgba(255,255,255,0.88);
  color:#fff;
}

.outline-btn:hover{
  background:rgba(255,255,255,0.12);
}

.section-title{
  text-align:center;
  margin-bottom:48px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:28px;
  padding:48px 32px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.section-title h2{
  margin-bottom:18px;
  color:var(--navy);
}

.section-title p{
  max-width:720px;
  margin:0 auto;
  color:var(--text);
  line-height:1.9;
  font-weight:500;
}

.about-grid,
.contact-grid,
.service-grid,
.team-grid,
.highlight-grid{
  display:grid;
  gap:30px;
  align-items:center;
}

.about-grid{
  grid-template-columns:1.1fr .9fr;
}

.about-grid img{
  border-radius:22px;
  box-shadow:0 28px 80px rgba(15,23,42,0.08);
}

.about-card{
  background:var(--white);
  border-radius:22px;
  padding:42px;
  box-shadow:0 24px 70px rgba(15,23,42,0.07);
}

.about-card p{
  margin-top:20px;
  color:var(--muted);
}

.about-list{
  margin-top:28px;
  padding-left:1.2rem;
  color:var(--muted);
}

.about-list li{
  margin-bottom:16px;
  line-height:1.9;
}

.services{
  background:linear-gradient(135deg, rgba(244,246,249,0.7), rgba(244,246,249,0.5)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.highlights{
  background:linear-gradient(135deg, rgba(13,35,67,0.1), rgba(13,35,67,0.15)),
    url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  position:relative;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.highlights::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-top:1px solid rgba(255,255,255,0.08);
  z-index:0;
  pointer-events:none;
}

.highlights .container{
  position:relative;
  z-index:1;
}

.service-detail{
  background:var(--white);
  padding:100px 0;
}

.service-detail .eyebrow{
  display:inline-block;
  margin-bottom:18px;
  color:var(--gold);
  font-size:.95rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.service-detail-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:32px;
  align-items:start;
}

.service-detail-copy p{
  margin-top:24px;
  color:var(--muted);
  max-width:760px;
}

.service-detail-aside{
  display:flex;
  justify-content:flex-end;
}

.service-detail-box{
  background:var(--navy);
  color:#f4f6f9;
  padding:36px;
  border-radius:24px;
  box-shadow:0 28px 90px rgba(15,23,42,0.12);
}

.service-detail-box h3{
  margin-bottom:22px;
  color:#fff;
  font-size:1.35rem;
}

.service-detail-box ul{
  padding-left:1.2rem;
  color:rgba(255,255,255,0.92);
}

.service-detail-box li{
  margin-bottom:16px;
  line-height:1.9;
}

.service-detail .btn{
  margin-top:42px;
}

.service-grid{
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}

.card{
  background:var(--white);
  padding:34px;
  border-radius:24px;
  text-align:center;
  box-shadow:0 24px 70px rgba(15,23,42,0.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(15,23,42,0.12);
}

.card i{
  font-size:2rem;
  color:var(--gold);
  margin-bottom:22px;
}

.card h3{
  margin-bottom:14px;
}

.card p{
  color:var(--muted);
  line-height:1.85;
}

.highlight-grid{
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card{
  background:rgba(255,255,255,0.1);
  border:1.5px solid rgba(255,255,255,0.25);
  border-radius:22px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15), inset 0 1px 1px rgba(255,255,255,0.2);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:all .35s ease;
}

.highlight-card:hover{
  background:rgba(255,255,255,0.15);
  border-color:rgba(255,255,255,0.35);
  box-shadow:0 25px 60px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.25);
  transform:translateY(-4px);
}

.highlight-card h3{
  margin-bottom:14px;
  color:var(--navy);
}

.highlight-card p{
  color:var(--text);
  line-height:1.85;
  font-weight:500;
}

.team-grid{
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  align-items:stretch;
}

.team-card{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(15,23,42,0.07);
}

.team-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  object-position:center 20%;
}

.team-card-content{
  padding:30px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.team-card h3{
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

.team-role{
  margin-bottom:18px;
  color:var(--navy);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.12em;
}

.team-card p{
  color:var(--muted);
  margin-bottom:16px;
}

.team-details{
  margin-top:20px;
  display:grid;
  gap:20px;
}

.team-details strong{
  display:block;
  margin-bottom:10px;
  color:var(--navy);
  font-size:1rem;
}

.team-details ul{
  padding-left:1.2rem;
  color:var(--muted);
  line-height:1.8;
  list-style:disc;
}

.team-details p{
  margin:0;
  color:var(--muted);
}

.contact-grid{
  grid-template-columns:1.1fr .9fr;
}

.contact-info{
  background:var(--navy);
  color:#fff;
  padding:42px;
  border-radius:24px;
  box-shadow:0 28px 90px rgba(0,0,0,0.12);
}

.contact-info h3,
.contact-info p{
  color:#f0f5ff;
}

.contact-info p{
  margin-top:18px;
  line-height:1.9;
}

form{
  background:var(--white);
  padding:42px;
  border-radius:24px;
  box-shadow:0 24px 80px rgba(15,23,42,0.08);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-card h3{
  margin-bottom:8px;
  color:var(--navy);
}

.contact-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

input,textarea,select{
  width:100%;
  border-radius:16px;
  border:1px solid #d9dfea;
  background:#fbfdff;
  padding:18px 20px;
  color:var(--text);
}

input:focus,textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(194,164,93,0.16);
}

textarea{
  min-height:180px;
}

footer{
  background:var(--navy-dark);
  color:rgba(255,255,255,0.8);
  text-align:center;
  padding:28px 0;
}

footer p{
  margin:0;
  font-size:.95rem;
}

@media(max-width:980px){
  section{
    padding:70px 0;
  }
  .hero{
    min-height:85vh;
  }
  .hero h1{
    font-size:clamp(2.5rem,6vw,3.6rem);
  }
  .about-grid,
  .contact-grid,
  .service-grid,
  .team-grid,
  .highlight-grid{
    grid-template-columns:1fr;
  }
  .nav-container{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }
  nav{
    width:100%;
    justify-content:flex-start;
  }
}

@media(max-width:640px){
  .nav-container{
    padding:16px 0;
  }
  .hero p{
    font-size:1rem;
  }
  .btn{
    width:100%;
  }
  .contact-grid{
    gap:24px;
  }
}
