/* =========================
   ROOT COLORS
========================= */

:root{
  --primary:#0A2C6B;
  --secondary:#E6391A;

  --light:#F4F7FC;
  --white:#ffffff;

  --text:#1F2937;
  --text-light:#6B7280;

  --border:#E5E7EB;
}

/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  width:100%;
  display:block;
}

section{
  padding:100px 0;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:var(--secondary);
  font-weight:600;
  letter-spacing:0.5px;
}

.section-title h2{
  font-size:42px;
  margin-top:10px;
  color:var(--primary);
}

/* =========================
   HEADER
========================= */

header{
  background:var(--white);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  width:75px;
  object-fit:contain;
}

.logo h2{
  font-size:22px;
  color:var(--primary);
  line-height:1.3;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-links a{
  font-weight:600;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--secondary);
}

.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
  color:var(--primary);
}

/* HERO */

.hero{

  position: relative;

  width: 100%;

  min-height: 100vh;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      rgba(7, 25, 66, 0.75),
      rgba(7, 25, 66, 0.75)
    ),
    url("images/hero-section-image.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
}

.hero-content{

  position: relative;

  z-index: 2;

  max-width: 900px;

  color: #fff;

  padding: 120px 0;
}

.hero-tag{

  display:inline-block;

  background:rgba(255,255,255,0.15);

  padding:12px 24px;

  border-radius:40px;

  font-size:15px;

  font-weight:600;

  margin-bottom:28px;

  backdrop-filter: blur(8px);
}

.hero h1{

  font-size:72px;

  line-height:1.1;

  margin-bottom:28px;

  font-weight:800;

  max-width:800px;
}

.hero p{

  font-size:20px;

  line-height:1.9;

  color:#E5E7EB;

  margin-bottom:40px;

  max-width:850px;
}

.hero-buttons{

  display:flex;

  gap:20px;

  flex-wrap:wrap;
}

.btn{

  padding:16px 34px;

  border-radius:12px;

  font-weight:700;

  transition:0.3s;
}

.primary-btn{

  background:#FF4B1F;

  color:#fff;
}

.secondary-btn{

  background:#fff;

  color:#0B2C74;
}

.btn:hover{

  transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:992px){

  .hero{

    text-align:center;
  }

  .hero-content{

    margin:auto;
  }

  .hero h1{

    font-size:54px;
  }

  .hero-buttons{

    justify-content:center;
  }
}

@media(max-width:576px){

  .hero{

    min-height:90vh;
  }

  .hero h1{

    font-size:38px;
  }

  .hero p{

    font-size:16px;
  }

  .hero-buttons{

    flex-direction:column;
  }

  .btn{

    width:100%;
    text-align:center;
  }
}

/* =========================
   ABOUT
========================= */

.about-section{
  background:var(--white);
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image img{
  height:520px;
  object-fit:cover;
  border-radius:30px;
}

.about-content h3{
  font-size:40px;
  color:var(--primary);
  margin-bottom:20px;
  line-height:1.3;
}

.about-content p{
  color:var(--text-light);
  margin-bottom:18px;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  margin-top:40px;
}

.stat-box{
  background:#f5f7fb;
  padding:35px 25px;
  border-radius:24px;
  text-align:center;
  transition:0.3s;
}

.stat-box:hover{
  transform:translateY(-6px);
}

.stat-box h3{
  font-size:48px;
  color:#ef3b2d;
  margin-bottom:10px;
}

.stat-box p{
  color:#4b5563;
  font-size:18px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  background:var(--white);
  padding:40px 30px;
  border-radius:28px;
  border:1px solid var(--border);
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  background:var(--primary);
}

.service-card:hover h3,
.service-card:hover p{
  color:var(--white);
}

.service-icon{
  width:75px;
  height:75px;
  background:rgba(230,57,26,0.1);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.service-icon i{
  font-size:32px;
  color:var(--secondary);
}

.service-card h3{
  font-size:25px;
  color:var(--primary);
  margin-bottom:15px;
}

.service-card p{
  color:var(--text-light);
}

/* =========================
   WHY US
========================= */

.why-section{
  background:var(--white);
}

.why-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.why-content span{
  color:var(--secondary);
  font-weight:600;
}

.why-content h2{
  font-size:42px;
  color:var(--primary);
  margin:15px 0 20px;
}

.why-content p{
  color:var(--text-light);
  margin-bottom:25px;
}

.why-content ul{
  list-style:none;
}

.why-content li{
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:500;
}

.why-content i{
  color:var(--secondary);
}

.why-image img{
  border-radius:30px;
  height:500px;
  object-fit:cover;
}

/* =========================
   CONTACT
========================= */

.contact-section{
  background:#EEF3FA;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-form{
  background:var(--white);
  padding:40px;
  border-radius:30px;
}

.input-group{
  margin-bottom:20px;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:16px;
  border:1px solid var(--border);
  border-radius:14px;
  outline:none;
  font-family:'Poppins',sans-serif;
}

textarea{
  height:140px;
  resize:none;
}

.submit-btn{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:var(--secondary);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.info-box{
  background:#fff;
  padding:28px;
  border-radius:24px;
  display:flex;
  gap:18px;
}

.info-box i{
  font-size:24px;
  color:var(--secondary);
}

.map-box iframe{
  width:100%;
  min-height:300px;
  border:none;
  border-radius:24px;
}

/* =========================
   FOOTER
========================= */

footer{
  background:var(--primary);
  color:#fff;
  padding-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.footer-logo img{
  width:70px;
}

.footer-links ul{
  list-style:none;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a:hover{
  color:var(--secondary);
}

.footer-contact p{
  margin-bottom:18px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:60px;
  padding:22px;
  text-align:center;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .hero-wrapper,
  .about-wrapper,
  .why-wrapper,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .hero-content{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero h1{
    font-size:52px;
  }

  .hero-image img{
    height:420px;
  }
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:25px 0;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    display:flex;
  }

  .hero h1{
    font-size:42px;
  }

  .section-title h2,
  .why-content h2,
  .about-content h3{
    font-size:32px;
  }

  .logo h2{
    font-size:18px;
  }

  .logo img{
    width:60px;
  }
}

@media(max-width:576px){

  section{
    padding:70px 0;
  }

  .hero{
    padding:70px 0;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-image img{
    height:300px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .stat-box h3{
    font-size:40px;
  }
}