* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:#f5f7fa;
  color:#222;
}

/* NAVBAR */
.navbar {
  background:#0b1b34;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 40px;
}

.navbar h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:0.3s;
}

.navbar h2:hover {
  transform: scale(1.05);
}

.navbar span { 
  color: orange; 
}

.navbar nav {
  display:flex;
  gap:25px;
}

.navbar a {
  position: relative;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

/* NAVBAR HOVER UNDERLINE */
.navbar a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:orange;
  transition:0.3s;
}

.navbar a:hover::after {
  width:100%;
}

.menu {
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/bgph.jfif');
  background-size: cover;
  background-position: center;
  height: 100vh;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  color:white;
  padding:20px;
}


.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffb400;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #e6a000;
}
.hero h1 {
  font-size:48px;
  margin-bottom:15px;
  transition:0.3s;
}

.hero h1:hover {
  transform: scale(1.03);
}

.hero p {
  font-size:18px;
  opacity:0.9;
}

/* SECTIONS */
section {
  padding:60px 20px;
  text-align:center;
}

h2 {
  margin-bottom:20px;
  font-size:30px;
  color:#0b1b34;
}

.about-section {
  display: flex;
  gap: 20px;
  padding: 60px 20px;
  background: #f5f7fa;
}

.about-section .box {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-section .box h2 {
  margin-bottom: 15px;
  color: #0b1b34;
}

.about-section .box p {
  line-height: 1.6;
  color: #444;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
}
.mission{
  
  background-size: cover;
  background-position: center;
  color:#0b1b34;
  padding:40px 20px;
  border-radius:10px;
  text-align:center;
}
/* SERVICES */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:30px;
}

.grid div {
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  transition:0.3s;
}

.grid div:hover {
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* CLIENTS */
.client-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:25px;
  margin-top:30px;
}

.card {
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover {
  transform:translateY(-6px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.card img {
  width:80px;
  margin-bottom:10px;
  transition:0.3s;
}

.card:hover img {
  transform:scale(1.1);
}

/* CONTACT */
.contact-form {
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:20px;
}

.contact-form input,
.contact-form textarea {
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
}

.contact-form button {
  padding:12px;
  background:#0b1b34;
  color:white;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover {
  background:orange;
  transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.whatsapp {
  display:inline-block;
  margin-top:20px;
  padding:12px 20px;
  background:#25D366;
  color:white;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.whatsapp:hover {
  background:#1ebe5d;
  transform: scale(1.08);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  background:#0b1b34;
  color:white;
  text-align:center;
  padding:25px 20px;
  margin-top:40px;
}

.footer p {
  margin:5px 0;
  font-size:14px;
  transition:0.3s;
}

.footer p:hover {
  color:orange;
}

/* MOBILE */
@media(max-width:768px){
  .navbar {
    padding:15px 20px;
  }

  .navbar nav {
    display:none;
    flex-direction:column;
    background:#0b1b34;
    position:absolute;
    top:60px;
    right:0;
    width:200px;
    padding:10px;
  }

  .navbar nav.active {
    display:flex;
  }

  .menu {
    display:block;
  }

  .hero h1 {
    font-size:30px;
  }
}
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  background: #0b1b34;
  color: white;
  text-align: center;
}

.stat-box {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.stat-box h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffb400;
}

.stat-box p {
  font-size: 16px;
  letter-spacing: 1px;
}
.logo img {
  height:50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.section .section-title {
  font-size: 32px;
  color: #0b1b34;
  margin-bottom: 25px;
  transition: 0.3s;
}
.section-title2 {
  font-size: 42px;
  color: #0b1b34;
  margin-bottom: 25px;
  transition: 0.3s;
}