:root {
  --navy: #071b33;
  --navy-light: #0e2d4f;
  --blue: #155b8f;
  --orange: #f26a1b;
  --gold: #c9983d;
  --charcoal: #2c333a;
  --light: #f5f7fa;
  --white: #ffffff;
  --muted: #6b7280;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ==================================================
   HEADER SECTION START
================================================== */

.site-header {
  height: 82px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shaddow:0 2px 10px rgba(0,0,0,.15);
  border-bottom:2px solid #c9983d;
  
}

.logo img {
  display: block;
  height: 54px;
  width: auto;
}

nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

nav a{
  Transition:.25s;
}

Nav a:hover{
color:#f26a1b;
}

.contact-btn {
  background: var(--orange);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    margin-left: 0;
  }
}

/* ==================================================
   HEADER SECTION END
================================================== */



.hero{

background:linear-gradient(rgba(13,35,64,.92),rgba(13,35,64,.92)),
url(images/start-here-hero.png);

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

padding:130px 0;
text-align:center;
color:white;


}

.hero-content{

max-width:900px;
margin:auto;

}

.hero h5{

color:#d4af37;
letter-spacing:3px;
margin-bottom:25px;

}

.hero h1{

font-size:58px;
margin-bottom:30px;
font-weight:800;

}

.hero p{

font-size:22px;
max-width:820px;
margin:auto auto 45px;

}

.button{

display:inline-block;

background:#d4af37;

padding:16px 36px;

border-radius:8px;

color:#0b2341;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.button:hover{

background:white;

}

.section{

padding:90px 0;

}

.section.white{

background:white;

}

.section.gray{

background:#f4f7fb;

}

.section h2{

text-align:center;

font-size:42px;

margin-bottom:30px;

color:#0b2341;

}

.section p{

max-width:900px;

margin:auto;

font-size:20px;

text-align:center;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:35px;

margin-top:60px;

}

.card{

background:white;

padding:40px;

border-radius:14px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.number{

font-size:42px;

font-weight:800;

color:#d4af37;

margin-bottom:20px;

}

.card h3{

margin-bottom:20px;

color:#0b2341;

}

.card a{

display:inline-block;

margin-top:25px;

font-weight:700;

text-decoration:none;

color:#0b2341;

}

.quote{

background:#0b2341;

color:white;

padding:110px 20px;

text-align:center;

}

.quote h2{

font-size:38px;

max-width:900px;

margin:auto auto 30px;

font-weight:700;

}

.quote p{

color:#d4af37;

font-size:22px;

}

.cta{

background:#f4f7fb;

text-align:center;

}

footer{

background:#07172d;

color:white;

padding:35px;

text-align:center;

}

/*
@media (max-width: 700px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    margin-left: 0;
  }
}
  
*/
@media (max-width: 1000px) {


.contact-btn,
.primary-btn {
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

}



.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.section h2{

font-size:34px;

}

.quote h2{

font-size:30px;

}

