/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Top Banner */
.top-banner {
  background: #0b3d91;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
.top-banner span {
  font-weight: bold;
}
.top-banner a {
  color: #fff;
  margin-left: 10px;
  text-decoration: underline;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #0b3d91;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #0b3d91;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("images/hero-bg.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  animation: bounce 1.5s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .menu-icon {
    display: block;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
}


/* next section */

/* Solutions Section */
.solutions {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  color: #222;
}

.solutions h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.solutions .subtitle {
  font-size: 16px;
  line-height: 1.6;
  max-width: 950px;
  margin: 0 auto 50px auto;
  color: #555;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
  color: #111;
}

.card .btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: #0b3d91;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  transition: background 0.3s ease;
}

.card .btn:hover {
  background: #062a63;
}

/* Responsive */
@media (max-width: 992px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}



/* 
next section */



/* Vernacular Section */
.vernacular {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #222;
}

.vernacular h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vernacular .subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  max-width: 950px;
  margin: 0 auto 60px auto;
  color: #555;
}

.vernacular-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.vernacular-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.vernacular-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

.vernacular-text {
  flex: 1;
  min-width: 280px;
}

.vernacular-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vernacular-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .vernacular-content {
    flex-direction: column;
    text-align: center;
  }
  .vernacular-text {
    margin-top: 20px;
  }
}
 


























/* Reset and base styles */




/* Section styling */
.impact-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #001633 0%, #00264d 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #cfd8e1;
}

/* Stats boxes */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-box {
  background-color: #0a2540;
  padding: 30px 20px;
  border-radius: 16px;
  flex: 1 1 250px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.stat-box p {
  font-size: 1.1rem;
  color: #a6c5f7;
  margin-bottom: 8px;
}

.subtext {
  font-size: 0.85rem;
  color: #9db2c3;
}





.platforms-section {
  background-color: #f3f5f7;
  padding: 60px 20px;
}

.platforms-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 40px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.platform-logo {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 180px;
}

.platform-logo:hover {
  transform: scale(1.05);
}

.platform-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}
 











/* Footer Styling */
.footer {
  background: #fff;
  color: #333;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Company Info */
.footer-about {
  flex: 1 1 300px;
  max-width: 400px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.certifications img {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Footer Links */
.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #007bff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #777;
}

.social-icons a {
  color: #555;
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}







