body{
 overflow-x: hidden;
}
.containair{
  max-width: 1200px;
  margin: auto;
  width: 90%;
}
.header {
  background: #060b2b;
  padding: 12px 16px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

/* desktop nav */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn {
  display: none;
}

.about-section {
  background: #fff;
  padding: 70px 0;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-left {
  flex: 1;
}

.about-tag {
  display: inline-block;
  font-size: 14px;
  color: #000;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.about-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: orange;
}

.about-left h2 {
  font-size: 32px;
  color: #3b2e7e;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 15px;
  line-height: 2.5;
  color: #333;
  margin-bottom: 15px;
}

.about-left blockquote {
  margin-top: 25px;
  padding-left: 20px;
  border-left: 3px solid #ddd;
  color: #555;
  font-style: italic;
}

.about-right {
  flex: 1;
}

.about-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.history-section {
  background: #fff;
  padding: 70px 0;
}

.history-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  align-items: flex-start;
}

.history-left {
  flex: 1;
}

.history-left h3 {
  font-size: 26px;
  color: #3b2e7e;
  margin-bottom: 20px;
}

.history-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
}

.history-right {
  flex: 1;
}

.history-right img {
  width: 100%;
  height: auto;
  display: block;
}
.vm-section {
  background: #dff2fb;
  padding: 20px 0;
}

.vm-container {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
  text-align: center;
}

.vm-card {
  flex: 1;
  padding: 20px;
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
}

.vm-icon {
  width: 90px;
  height: 90px;
  border: 3px solid red;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon img {
  width: 40px;
  height: 40px;
}

.vm-card h3 {
  font-size: 26px;
  color: #3b2e7e;
  margin-bottom: 15px;
}

.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.director-section {
  padding: 70px 20px;
  background: #ffffff;
}

.director-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: right;
  gap: 250px;
}

/* Image */
.director-image img {
  width: 500px;
  height: 300px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.director-image img {
    width: 250px;
    border: 5px solid #ddd;
  }

  .director-content h2 {
    font-size: 26px;
  }
/* Content */
.director-content h2 {
  font-size: 32px;
  color: #4b2e83;
  margin-bottom: 20px;
}

.director-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}
.team-section {
  padding: 70px 20px;
  background: #fff;
}

.team-title {
  text-align: center;
  font-size: 40px;
  color: #4b2e83;
  margin-bottom: 50px;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
}

/* Card */
.team-card {
  flex: 1;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-card h3 {
  margin-top: 15px;
  font-size: 22px;
  color: #1e3a8a;
}
.stats-section {
  background: #3f4696;
  padding: 70px 20px;
}
/* Floating Contact Widget */
.contact-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.contact-main {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #7b61ff;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-options {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.contact-options.active {
  display: flex;
}

.contact-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}

.contact-btn.call {
  background: #00c853;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.close {
  background: #9c27b0;
}
.site-footer {
  background: linear-gradient(180deg, #05051e, #0b0b2d);
  color: #fff;
  padding: 50px 20px 20px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-col h4 {
  color: #ff3c3c;
  margin-bottom: 15px;
}

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

.footer-menu li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
}

.footer-menu li a:hover {
  color: #ff3c3c;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 26px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {

  /* hide desktop nav */
  .nav {
    position: fixed;
    top: 0;
    right: -150px;          /* screen ke bahar */
    width: 120px;
    height: 80vh;
    background: #fff;
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
    transition: right 0.3s ease;
    z-index: 9999;
  }

  .nav a {
    color: #000;
    font-size: 18px;
  }

  /* show when active */
  .nav.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }
}
