* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f7f9fc;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: #0d2c6c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #ff8c00;
}

.hero {
  height: 100vh;
  background: url('images/policy-terms-and-conditions.png') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero {
    background-image: url('images/phone.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: -80px;
    min-height: 100vh;
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 30px;
  color: #ffd700;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ff7a00;
  padding: 14px 30px;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
}

.about,
.services,
.benefits,
.gallery,
.contact {
  padding: 80px 10%;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  color: #0d2c6c;
}

.stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service,
.benefit-card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service i {
  font-size: 40px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 15px;
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.04);
}

#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;
}

#modalImage {
  max-width: 95%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;

  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

#imageModal span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  z-index: 100000;
}

.contact-box {
  text-align: center;
  font-size: 22px;
  line-height: 2;
}

footer {
  background: #0d2c6c;
  color: white;
  text-align: center;
  padding: 20px;
}

.certificates {
  padding: 80px 20px;
  background: #f8f9fa;
}

.certificates h2 {
  text-align: center;
  margin-bottom: 15px;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.certificate-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.certificate-card:hover {
  transform: translateY(-5px);
}

.certificate-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  cursor: pointer;
}

.certificate-card h3 {
  padding: 15px 15px 5px;
  color: #0b3d91;
}

.certificate-card p {
  padding: 0 15px 20px;
  color: #555;
}
.leadership {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0b3d91;
}

.section-title p {
  color: #666;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.leader-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 20px;
}

.leader-card img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 10px;
}

.leader-card h3 {
  margin-top: 20px;
  color: #0b3d91;
}

.leader-card span {
  color: #f57c00;
  font-weight: 600;
  display: block;
  margin: 10px 0;
}

.leader-card p {
  padding: 0 20px;
  color: #666;
}

.company-overview {
  background: #f8f9fa;
  padding: 80px 20px;
}

.overview-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-box h3 {
  color: #0b3d91;
  font-size: 30px;
}

.office-section {
  padding: 80px 20px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.office-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.office-card i {
  font-size: 40px;
  color: #0b3d91;
  margin-bottom: 20px;
}

.office-card h3 {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    height: 300px;
  }
}
.gallery {
  padding: 80px 20px;
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
  width: 100%;
  height: 280px; /* Same height for all images */
  object-fit: cover; /* Keeps all images same size */
  cursor: pointer;
  display: block;
}

.gallery-card h3 {
  padding: 18px;
  text-align: center;
  font-size: 18px;
  color: #0b3d91;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gallery-card img {
    height: 220px;
  }
}

.company-overview {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: stretch;
}

.overview-text {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #0b3d91;
}

.overview-text h3 {
  font-size: 34px;
  color: #0b3d91;
  margin-bottom: 20px;
}

.overview-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 20px;
  align-content: center;
}

.stat-box {
  background: #fff;
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(11, 61, 145, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #ff8c00;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box h3 {
  font-size: 38px;
  color: #0b3d91;
  margin-bottom: 10px;
}

.stat-box p {
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
  }

  .overview-text {
    padding: 25px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  /* Navbar */
  .navbar {
    padding: 12px 15px;
  }

  .navbar ul {
    display: none;
  }

  .logo img {
    height: 45px;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Section Headings */
  h2,
  .section-title h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* About Section */
  .company-overview {
    padding: 60px 15px;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .overview-text {
    padding: 25px;
  }

  .overview-text h3 {
    font-size: 26px;
    line-height: 1.4;
  }

  .overview-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .overview-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-box {
    padding: 25px 15px;
  }

  .stat-box h3 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 14px;
  }

  /* Leadership */
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    height: 260px;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  /* Certificates */
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-card img {
    height: auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: auto;
  }

  /* Trust Section */
  .stats {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  /* Contact */
  .contact-box {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  footer p {
    font-size: 14px;
  }
}

/* ======================
   PROMOTIONAL VIDEOS
====================== */

.promo-videos {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d2c6c 0%, #16408f 100%);
}

.promo-videos .section-title h2 {
  color: #fff;
}

.promo-videos .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.video-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

.video-card h3 {
  padding: 20px;
  text-align: center;
  color: #0d2c6c;
  font-size: 20px;
  font-weight: 600;
}

/* Mobile */

@media (max-width: 768px) {
  .promo-videos {
    padding: 70px 15px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .video-card h3 {
    font-size: 17px;
    padding: 15px;
  }
}
