/* Typography */
:root{
  --heading-font: "Orbitron", sans-serif;
  --body-font: "Inter", sans-serif;
}

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

/* Page */
body{
  background: #071B33;
  color: white;
  font-family: var(--body-font);
}

/* Heading Typography */
h1{
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h2{
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

h3{
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo img{
    height:55px;
    width:auto;
}

.logo-text h1{
    margin:0;
    font-family:'Orbitron',sans-serif;
    font-size:2rem;
    color:#59C7E8;
}


/* Body Typography */
p{
  font-size: 1rem;
  line-height: 1.8;
  color: #D7EEF5;
}

a{
  font-family: var(--body-font);
}

/* Navigation Bar */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 70px;
  background: #071B33;
}

/* Logo */
.logo{
  font-size: 30px;
  color: #59C7E8;
}

/* Navigation */
.nav-links{
  display: flex;
  gap: 35px;
}

.nav-links a{
  text-decoration: none;
  color: #A7D9E5;
  font-size: 14px;
}

.nav-links a:hover{
  color: white;
}

.hero{
  height: 650px;
  background-image:
    linear-gradient(rgba(6, 27, 51, 0.55),
    rgba(6, 27, 51, 0.55)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 70px;
}

.hero-content{
  max-width: 600px;
}

.hero h1{
  font-size: 69px;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero p{
  margin-bottom: 45px;
  line-height: 1.7;
  color: #D7EEF5;
}

.btn{
  display: inline-block;
  background: #D9854D;
  color: #071B33;
  padding: 18px 34px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover{
  background: #F2A56D;
}

.intro-section{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
  padding: 100px 70px;
  background: #08233D;
}

.intro-text h2{
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.intro-text p{
  line-height: 1.7;
  color: #D7EEF5;
}

.intro-image{
    width:100%;
    height:450px;
    background-image:
      linear-gradient(rgba(7,27,51,.45), rgba(7,27,51,.45)),
      url("images/engineering_without_compromise.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius:10px;
}

.expertise-section{
  padding: 100px 70px;
  background: #071B33;
}

.expertise-section h2{
  text-align: center;
  font-size: 52px;
  margin-bottom: 55px;
}

.expertise-grid{
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.expertise-card{
  background: #246F91;
  padding: 30px;
  min-height: 240px;
}

.expertise-card h3{
  font-size: 25px;
  margin-bottom: 22px;
}

.expertise-card p{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.expertise-card a{
  color: #D7EEF5;
  text-decoration: none;
  font-size: 14px;
}

.expertise-card a:hover{
  color: white;
}

/* Industries */
.industries-section{
  padding: 100px 70px;
  background: #08233D;
}

.industries-section h2{
  text-align: center;
  font-size: 52px;
  margin-bottom: 55px;
}

.industries-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1050px;
  margin: auto;
}

.industries-card{
  background: #246F91;
  overflow: hidden;
  transition: 0.3s;
}

.industries-card:hover{
  transform: translateY(-8px);
}

.industries-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.industries-card h3{
  text-align: center;
  padding: 20px;
  font-size: 24px;
}

/* Why */
.why-section{
  padding: 100px 70px;
  background: #071B33;
}

.why-section h2{
  text-align: center;
  font-size: 52px;
  margin-bottom: 55px;
}

.why-grid{
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card{
  background: #246F91;
  padding: 35px;
  text-align: center;
}

.why-card h3{
  font-size: 28px;
  margin-bottom: 20px;
}

.why-card p{
  font-size: 14px;
  line-height: 1.6;
}

/* CTA */
.cta-section{
  padding: 130px 70px;
  background: #08233D;
  text-align: center;
}

.cta-section h2{
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 55px;
}

/* Footer */
footer{
  background: #071B33;
  padding: 90px 70px 40px;
}

.footer-container{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-logo h2{
  font-size: 40px;
  color: #59C7E8;
}

.footer-links h3{
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-links a{
  display: block;
  text-decoration: none;
  color: #A7D9E5;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-links a:hover{
  color: #59C7E8;
  padding-left: 8px;
}

.copyright{
  text-align: center;
  color: #6E91A5;
  font-size: 14px;
}

/* About Page Hero */
.page-hero{
  min-height: 420px;
  background: #08233D;
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 70px;
}

.page-hero-content{
  max-width: 750px;
}

.page-hero h1{
  font-size: 60px;
  margin-bottom: 25px;
}

.page-hero p{
  color: #D7EEF5;
  line-height: 1.7;
  font-size: 18px;
}

/* About Page Story */
.story-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 100px 70px;
  background: #071B33;
}

.story-text h2{
  font-size: 48px;
  margin-bottom: 30px;
}

.story-text p{
  color: #D7EEF5;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-image{
  min-height: 420px;
  background: #246F91;
}

/* Mission Vision Values */
.mvv-section{
  padding: 100px 70px;
  background: #08233D;
}

.mvv-section h2{
  text-align: center;
  font-size: 52px;
  margin-bottom: 55px;
}

.statement-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 90px;
}

.statement-card{
  background: #246F91;
  padding: 40px;
}

.statement-card h3, .value-item h3{
  font-size: 26px;
  margin-bottom: 20px;
}

.statement-card p, .value-item p{
  color: #D7EEF5;
  line-height: 1.7;
  font-size: 14px;
}

.values-title{
  margin-top: 40px;
}

.values-list{
  max-width: 950px;
  margin: 0 auto;
}

.value-item{
  background: #246F91;
  padding: 35px 40px;
  margin-bottom: 18px;
}

/* ==========================
   ABOUT HERO
========================== */

.about-hero{
    height:50vh;
    background:
        linear-gradient(rgba(7,27,51,.75), rgba(7,27,51,.75)),
        url("images/hero.jpg");

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

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:0 10%;
}

.about-hero-content{
    max-width:800px;
}

.about-hero h1{
    font-family:'Orbitron',sans-serif;
    font-size:4rem;
    color:white;
    margin-bottom:25px;
}

.about-hero p{
    font-size:1.2rem;
    line-height:1.8;
    color:#d6dce5;
}

/* About Introduction */

.about-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:100px 70px;
    background:#071B33;
}

.about-intro h2{
    font-size:48px;
    margin-bottom:30px;
}

.about-intro p{
    color:#D7EEF5;
    line-height:1.7;
    margin-bottom:20px;
}

.about-intro-image{
    min-height:420px;
    background:
        linear-gradient(rgba(7,27,51,.35), rgba(7,27,51,.35)),
        url("images/engineering_without_compromise.jpg");
    background-size:cover;
    background-position:center;
}

/* Vision Section */

.vision-section{
    padding:100px 70px;
    background:#08233D;
    text-align:center;
}

.statement-content{
    max-width:900px;
    margin:0 auto;
}

.statement-content h2{
    font-size:48px;
    margin-bottom:35px;
}

.statement-content p{
    font-size:1.2rem;
    line-height:1.8;
    color:#D7EEF5;
}

/* ==========================
   Mission Section
========================== */

.mission-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:100px 70px;
    background:#071B33;
}

.mission-image{
    min-height:420px;
    background:
        linear-gradient(rgba(7,27,51,.35), rgba(7,27,51,.35)),
        url("images/industrial.jpg");
    background-size:cover;
    background-position:center;
    border-radius:10px;
}

.mission-text h2{
    margin-bottom:30px;
}

.mission-text p{
    color:#D7EEF5;
    line-height:1.8;
    margin-bottom:20px;
}

/* Core Values Section */

.values-section{
    padding:100px 70px;
    background:#08233D;
}

.values-section h2{
    text-align:center;
    font-size:48px;
    margin-bottom:55px;
}

.values-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

.value-card{
    background:#246F91;
    padding:35px;
    border-radius:10px;
}

.value-card h3{
    margin-bottom:20px;
}

.value-card p{
    color:#D7EEF5;
    line-height:1.7;
}

/* Capabilities Intro */

.capabilities-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:100px 70px;
    background:#071B33;
}

.capabilities-image{
    min-height:420px;
    background:
        linear-gradient(rgba(7,27,51,.35), rgba(7,27,51,.35)),
        url("images/aerospace.jpg");

    background-size:cover;
    background-position:center;
    border-radius:10px;
}

.capabilities-text h2{
    margin-bottom:30px;
}

.capabilities-text p{
    color:#D7EEF5;
    line-height:1.8;
    margin-bottom:20px;
}

/* Capabilities Grid */

.capabilities-section{
    padding:100px 70px;
    background:#08233D;
}

.capabilities-section h2{
    text-align:center;
    margin-bottom:55px;
}

.capabilities-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.capability-card{
    background:#246F91;
    padding:35px;
    border-radius:10px;
}

.capability-card h3{
    margin-bottom:20px;
}

.capability-card p{
    color:#D7EEF5;
    line-height:1.7;
}

/* Engineering Process */

.process-section{
    padding:100px 70px;
    background:#071B33;
}

.process-section h2{
    text-align:center;
    margin-bottom:55px;
}

.process-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.process-step{
    background:#246F91;
    padding:30px;
    border-radius:10px;
}

.process-step span{
    display:block;
    color:#D9854D;
    font-weight:bold;
    margin-bottom:20px;
}

.process-step h3{
    margin-bottom:15px;
}

.process-step p{
    color:#D7EEF5;
    line-height:1.7;
}

/* Industries Intro */

.industries-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:100px 70px;
    background:#071B33;
}

.industries-intro-image{
    min-height:420px;
    background:
        linear-gradient(rgba(7,27,51,.35), rgba(7,27,51,.35)),
        url("images/security.jpg");
    background-size:cover;
    background-position:center;
    border-radius:10px;
}

.industries-intro-text h2{
    margin-bottom:30px;
}

.industries-intro-text p{
    color:#D7EEF5;
    line-height:1.8;
    margin-bottom:20px;
}

/* Industry Cards */

.industry-section{
    padding:100px 70px;
    background:#08233D;
}

.industry-section h2{
    text-align:center;
    margin-bottom:55px;
}

.industry-grid{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.industry-card{
    background:#246F91;
    padding:35px;
    border-radius:10px;
}

.industry-card h3{
    margin-bottom:20px;
}

.industry-card p{
    color:#D7EEF5;
    line-height:1.7;
}

/* Contact Page */

.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding:100px 70px;
  background:#071B33;
}

.contact-info h2{
  margin-bottom:30px;
}

.contact-info p{
  color:#D7EEF5;
  line-height:1.8;
  margin-bottom:20px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:16px;
  background:#08233D;
  border:1px solid #246F91;
  color:white;
  font-family:var(--body-font);
  font-size:1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#A7D9E5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#59C7E8;
}

.contact-form button{
  border:none;
  cursor:pointer;
  align-self:flex-start;
}
