/* ===== GLOBAL ===== */
body{
  margin:0;
  font-family:'Open Sans', sans-serif;
  background:#ffffff;
  color:#1f2933;
}

/* ===== HEADER ===== */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}

/* Navigation container */
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LOGO */
header .nav img {
  height: 200px;      /* 🔥 increase logo size */
  width: auto;
  max-width: none;    /* VERY IMPORTANT */
}
.nav{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.nav img{
  height:80px;
}

nav a{
  text-decoration:none;
  margin-left:18px;
  font-weight:600;
  color:#1e3a8a;
}

nav a:hover{
  color:#f97316;
}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(to right,#1e3a8a,#0f172a);
  color:#ffffff;
  text-align:center;
  padding:90px 20px;
}

.hero h1{
  font-family:'Poppins', sans-serif;
  font-size:42px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
  max-width:700px;
  margin:10px auto 30px;
}

.btn{
  background:#f97316;
  color:#ffffff;
  padding:14px 30px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
}

/* ===== STATS ===== */
.stats{
  max-width:1000px;
  margin:70px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
}

.stat{
  background:#f9fafb;
  padding:30px;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

.stat h2{
  color:#1e3a8a;
  font-size:40px;
  margin:0;
}

.stat p{
  font-weight:600;
  margin-top:10px;
}

/* ===== FOOTER ===== */
footer{
  background:#0f172a;
  color:#ffffff;
  text-align:center;
  padding:30px 20px;
  font-size:14px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .nav{
    flex-direction:column;
    gap:10px;
  }

  nav a{
    margin:0 10px;
  }

  .hero h1{
    font-size:32px;
  }
}
/* ===== PAGE HERO ===== */
.page-hero{
  background:linear-gradient(to right,#1e3a8a,#0f172a);
  color:#ffffff;
  text-align:center;
  padding:70px 20px;
}

.page-hero h1{
  font-family:'Poppins', sans-serif;
  font-size:38px;
}

.page-hero p{
  margin-top:10px;
  font-size:17px;
}

/* ===== CONTENT ===== */
.content{
  max-width:900px;
  margin:70px auto;
  padding:0 20px;
}

.content h2{
  text-align:center;
  color:#1e3a8a;
  margin-bottom:30px;
}

.content p{
  line-height:1.8;
  margin-bottom:15px;
}

/* ===== GRID SECTIONS ===== */
.grid-section{
  max-width:1100px;
  margin:70px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  padding:0 20px;
}

.grid-box{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:30px;
}

.grid-box h3{
  color:#1e3a8a;
  margin-bottom:10px;
}

/* ===== VALUES ===== */
.light-bg{
  background:#f9fafb;
  padding:70px 20px;
}

.values-list{
  list-style:none;
  max-width:500px;
  margin:auto;
  padding:0;
}

.values-list li{
  padding:10px 0;
  font-weight:600;
}
.grid-box ul{
  margin-top:10px;
  padding-left:18px;
}

.grid-box ul li{
  padding:4px 0;
  font-size:14px;
}
.stats{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:50px 10%;
  background:#0b3c91;
  color:white;
  text-align:center;
}

.stat-box h3{
  font-size:36px;
  color:#f5a623;
}

.stat-box p{
  font-size:15px;
  margin-top:5px;
}

.project-location{
  display:block;
  margin-top:10px;
  font-size:13px;
  color:#777;
}
.profile-row{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.profile-card{
  width:320px;
  background:#fff;
  padding:30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


.profile-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}

.profile-card h3{
  color:#0b3c91;
}

.profile-card .role{
  font-weight:600;
  color:#555;
  margin-bottom:12px;
}
/* ===== PAGE HERO ===== */
.page-hero{
  background:linear-gradient(to right,#1e3a8a,#0f172a);
  color:#fff;
  text-align:center;
  padding:90px 20px;
}

.page-hero h1{
  font-size:48px;
  margin-bottom:10px;
}

.page-hero p{
  font-size:18px;
  opacity:0.9;
}

/* ===== CONTACT GRID ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:1100px;
  margin:auto;
}

.contact-info{
  background:#f9fafb;
  padding:40px;
  border-radius:16px;
}

.contact-info h2{
  color:#1e3a8a;
  margin-bottom:20px;
}

.contact-info p{
  margin-bottom:15px;
  font-size:15px;
}

.contact-info a{
  color:#1e3a8a;
  text-decoration:none;
  font-weight:600;
}

/* ===== FORM ===== */
.contact-form-box{
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-box h2{
  margin-bottom:20px;
  color:#1e3a8a;
}

.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border-radius:6px;
  border:1px solid #cbd5e1;
  font-family:'Open Sans',sans-serif;
}

.contact-form-box textarea{
  height:120px;
  resize:none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:800px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* ===== NAV ACTIVE LINK ===== */
nav a {
  position: relative;
  padding-bottom: 6px;
}

nav a.active {
  color: #f97316;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f97316;
  border-radius: 3px;
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #f97316;
  width: 0%;
  z-index: 2000;
}
/* ===== PROJECT PORTFOLIO ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Project Card */
.project-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Project Images */
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Project Info */
.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.project-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}