

/* css for about page */
/* Reset */

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Arial,sans-serif;color:#0a2540;line-height:1.6;}


.logo{
  background-color: white;
  border-radius: 22px;
  width: max-content;
}

/* Navbar */
/* Navbar Base */
.navbar {
  background: #002a4a;
  padding: 12px 30px;
  border-radius: 40px;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar .logo img {
  height: 30px;
  display: block;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links li a.active {
  background: #ff9800;
  color: #000;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.nav-links li a:hover {
  background: #ff9800;
  color: #000;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto; /* force right side */
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 27px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;   /* right-end se hi khulega */
    background: #002a4a;
    border-radius: 15px;
    padding: 15px 20px;
    width: auto;   /* sirf content jitna width */
    min-width: 180px; /* thoda readable banane ke liye */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: right; /* text bhi right align */
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Cross effect */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
/* About Section */
.about-section {
  display: flex;
  gap: 2rem;
  padding: 6rem 7rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.6;
  color: #333;
}

/* Image and Badges */
.about-image {
  flex: 1 1 400px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
}

/* Badges */
.badge {
  position: absolute;
  background-color: #fff;
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Positioning badges */
.badge-top-left {
  top: -10px;
  left: -10px;
}

.badge-center {
  top: 30%;
  left: -30%;
  transform: translateY(-50%);
}

.badge-middle-right {
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: -20px;
  left: 10%;
}

/* Vision Section */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.vision-text {
  flex: 1 1 300px;
  max-width: 500px;
}

.vision-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.vision-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.vision-image {
  flex: 1 1 400px;
  max-width: 600px;
}

.vision-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}



section.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.left-section {
  flex: 1;
  min-width: 280px;
}

.left-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.left-section ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.right-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #6955ff;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  height: 140px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.graph {
  height: 40px;
  background: url('https://dummyimage.com/100x40/ffffff/ffffff.png&text=+1024') no-repeat center;
  background-size: contain;
  margin-top: 8px;
}

.image-box {
  width: 120px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* page */

/* body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #1a1a1a;
} */

.core-values {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.core-values h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.core-values .description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.value-card {
  width: 180px;
  text-align: center;
}

.icon-circle {
  background-color: #e8e8ff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 14px;
  color: #333;
}
/* our team */
/* body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
} */

.team-section {
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-section .subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

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

.team-card {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}


/* footer */
/* body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
} */

footer {
  background-color: #032b4d;
  color: white;
  padding: 50px 80px 20px;
  font-family: Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-left img {
  max-width: 110px;
}

.footer-left h4 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
  max-width: 350px;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.subscribe-box button {
  background: #f7a600;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #e69500;
}

.footer-left small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}

/* Right Section */
.footer-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

/* Bottom Section */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #123a5a;
  padding: 15px 0;
  margin-top: 20px;
  color: #ccc;
  font-size: 13px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f7a600;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .subscribe-box {
    margin: 0 auto 15px;
  }

  .footer-right {
    justify-items: center;
  }
}