: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/frameworks-hero.png);

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

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

}

.hero h1{

font-size:54px;
margin-bottom:20px;

}

.hero p{

max-width:750px;
margin:auto;
font-size:22px;

}

.intro,
.journey{

padding:90px 0;
text-align:center;

}

.intro h2,
.journey h2{

color:var(--navy);
margin-bottom:25px;
font-size:38px;

}

.intro p,
.journey p{

max-width:850px;
margin:auto;
font-size:18px;

}

.featured{

background:var(--light);
padding:90px 0;

}

.featured-box{

background:white;
padding:60px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.1);
text-align:center;

}

.featured-box h2{

color:var(--navy);
margin-bottom:20px;

}

.frameworks{

padding:90px 0;

}

.frameworks h2{

text-align:center;
color:var(--navy);
margin-bottom:50px;
font-size:42px;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.card{

background:white;
padding:35px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

color:var(--navy);
margin-bottom:15px;

}

.card p{

margin-bottom:25px;

}

.card a{

color:var(--gold);
font-weight:bold;
text-decoration:none;

}

.button{

display:inline-block;
background:var(--gold);
color:white;
padding:15px 35px;
margin-top:30px;
text-decoration:none;
border-radius:40px;
font-weight:bold;

}

.button:hover{

background:#b9953d;

}

.cta{

background:var(--navy);
color:white;
padding:100px 0;
text-align:center;

}

.cta h2{

font-size:42px;
margin-bottom:20px;

}

.cta p{

max-width:750px;
margin:auto;

}

footer{

background:#06152a;
color:white;
text-align:center;
padding:30px;

}

@media(max-width:768px){

.nav{

flex-direction:column;
gap:20px;

}

nav{

text-align:center;

}

nav a{

display:inline-block;
margin:10px;

}

.hero h1{

font-size:40px;

}

.frameworks h2{

font-size:34px;

}

}