/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
  line-height: 1.7;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #2d3349;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 68px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}

nav ul li a:hover {
  color: #5f8aff;
}

/* MOBILE MENU ICON */
.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */
.about-hero {
  height: 45vh;
  background: url("Capture.PNG") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.about-hero h1 {
  font-size: 42px;
  z-index: 2;
  animation: fadeIn 1s ease;
}

.about-hero p {
  font-size: 18px;
  margin-top: 10px;
  z-index: 2;
  animation: fadeIn 1.2s ease;
}

/* COMPANY SECTION */
.company-section {
  padding: 80px 50px;
  text-align: center;
}

.company-section h2 {
  font-size: 34px;
  color: #1b4bc4;
  margin-bottom: 15px;
}

.company-section .intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.company-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: .3s;
}

.company-card:hover {
  transform: translateY(-5px);
}

/* WHAT WE DO */
.what-we-do {
  background: #eaf0ff;
  padding: 80px 40px;
  text-align: center;
}

.what-we-do h2 {
  font-size: 34px;
  color: #1b4bc4;
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1b4bc4;
}

/* WHY CHOOSE US */
.why-us {
  padding: 80px 20px;
  text-align: center;
  background: #f7f9fc;
}

.why-us h2 {
  font-size: 38px;
  color: #1b4bc4;
  margin-bottom: 40px;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

.why-item {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transition: .3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

.why-item i {
  font-size: 42px;
  color: #1b4bc4;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #1b1b1b;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  nav {
    padding: 15px 25px;
  }

  .menu-icon {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #2d3349;
    padding: 20px 0;
    text-align: center;
  }

  nav ul.open {
    display: block;
  }
}
