@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f4f9ff;
  color: #0b1f3a;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  background: linear-gradient(90deg, #07162d, #0b1f3a);
  color: white;
  padding: 18px 40px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
  justify-content: space-between;
.hero {
  background-image: linear-gradient(rgba(3,18,38,0.55), rgba(3,18,38,0.35)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
}
.hero .hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.hero .hero-text {
  max-width: 720px;
}
.hero h1 {
  font-size: 44px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.btn {
  display: inline-block;
  background: #2d8fd5;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.services-section {
  padding: 60px 20px;
  background: linear-gradient(#f8fcff, #ffffff);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(11,31,58,0.06);
  text-align: left;
}
.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.service-card h4 {
  margin: 8px 0;
  color: #0b1f3a;
}
.service-card p {
  color: #4a5a6a;
  font-size: 14px;
}

.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffffff, #f3fbff);
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(11,31,58,0.06);
}
.about-text h3 {
  margin-top: 0;
  color: #0b1f3a;
}
.about-text p { color: #48586b; line-height: 1.7; }

.cta {
  max-width: 1100px;
  margin: 40px auto;
  background: linear-gradient(90deg, #2d8fd5, #0b88d1);
  color: white;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero .hero-content { flex-direction: column; text-align: center; }
  .hero p { font-size: 16px; }
}

.logo-text h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo-text p {
  margin: 6px 0 0;
  color: #8fd3ff;
  font-size: 15px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu a:hover {
  background-color: rgba(143, 211, 255, 0.2);
}

.menu a.active {
  background-color: #2d8fd5;
  color: white;
}

.hero-home {
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  padding: 80px 40px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.small-tag {
  display: inline-block;
  background-color: #d9f1ff;
  color: #0b5fa5;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #0b1f3a;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5a6a;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.main-button,
.second-button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 32px;
  font-weight: 600;
  transition: 0.3s ease;
}

.main-button {
  background-color: #2d8fd5;
  color: white;
}

.main-button:hover {
  background-color: #0b1f3a;
}

.second-button {
  background-color: white;
  color: #0b1f3a;
  border: 1px solid #cfe3f5;
}

.second-button:hover {
  background-color: #eaf6ff;
}

.hero-right img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: 36px;
  color: #0b1f3a;
}

.section-title p {
  margin: 0 auto;
  max-width: 760px;
  color: #4a5a6a;
  font-size: 17px;
}

.about-section,
.services-section,
.importance-section,
.vision-mission-section,
.cta-section,
.team-section,
.projects-section,
.contact-section {
  padding: 70px 40px;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text-card,
.about-image-card,
.importance-card,
.vm-card,
.team-card,
.project-card,
.contact-info,
.contact-form-box,
.service-box,
.cta-box {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.about-text-card {
  padding: 35px;
}

.about-text-card p {
  color: #4a5a6a;
  line-height: 1.9;
  font-size: 17px;
  margin-top: 0;
}

.about-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}

.services-grid,
.importance-grid,
.team-grid,
.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-box,
.project-card,
.team-card {
  overflow: hidden;
}

.service-box img,
.project-card img,
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h3,
.project-card h3,
.team-card h3,
.importance-card h3,
.vm-card h3,
.contact-info h3,
.contact-form-box h3 {
  margin: 20px 0 10px;
  padding: 0 22px;
  color: #0b1f3a;
}

.service-box p,
.project-card p,
.team-card p,
.importance-card p,
.vm-card p,
.contact-info p {
  color: #4a5a6a;
  line-height: 1.7;
  padding: 0 22px 22px;
}

.importance-grid {
  grid-template-columns: repeat(4, 1fr);
}

.importance-card,
.vm-card {
  padding-top: 10px;
}

.vision-mission-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.cta-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 55px 30px;
  background: linear-gradient(135deg, #0b1f3a, #135b97);
  color: white;
}

.cta-box h2 {
  margin-top: 0;
  font-size: 36px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: #d7ebff;
}

.cta-box .main-button {
  background-color: #59bfff;
  color: #0b1f3a;
}

.cta-box .main-button:hover {
  background-color: white;
}

.page-banner {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(to right, #eaf6ff, #ffffff);
}

.page-banner h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0b1f3a;
}

.page-banner p {
  font-size: 18px;
  color: #4a5a6a;
}

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

.contact-info,
.contact-form-box {
  padding: 30px;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box input,
.contact-form-box textarea {
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.contact-form-box button {
  background-color: #2d8fd5;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-box button:hover {
  background-color: #0b1f3a;
}

.footer {
  background-color: #0b1f3a;
  color: white;
  text-align: center;
  padding: 22px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .importance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .team-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .about-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 18px 20px;
  }

  .hero-home,
  .about-section,
  .services-section,
  .importance-section,
  .vision-mission-section,
  .cta-section,
  .team-section,
  .projects-section,
  .contact-section {
    padding: 55px 20px;
  }

  .hero-left h2 {
    font-size: 34px;
  }

  .section-title h2,
  .cta-box h2,
  .page-banner h2 {
    font-size: 28px;
  }

  .services-grid,
  .importance-grid,
  .team-grid,
  .projects-grid,
  .contact-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .hero-right img {
    height: 300px;
  }
}