* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}


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

.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;
}


.hero {
  position: relative;
  overflow: visible;
  text-align: center;
}

.hero-slider .slide {
  display: none;
}

.hero-slider .slide.active {
  display: block;
}

.hero-slider img {
  width: 100%;
  height: auto;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 1px 1px 5px black;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0a8d48;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }


/* ===== HOME ABOUT SECTION ===== */
.home-about {
  padding: 50px 0;
  background: #f8f9fb;
}

.home-about-wrapper {
  width: 60%;
  max-width: 700px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.home-about-text {
  flex: 1;
}

.home-about-text h2 {
  font-size: 32px;
  color: #2d2a7e;
  margin-bottom: 20px;
}

.home-about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.home-about-text h4 {
  margin-top: 20px;
  font-size: 18px;
}

.home-about-video {
  flex: 1;
  position: relative;
}

.home-about-video img {
  width: 100%;
  border-radius: 10px;
}

/* PLAY BUTTON */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ff7a00;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


  .hero-overlay h1 {
    font-size: 28px;
  }

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 90px 0;
  background: #ffffff;
}

.why-title {
  text-align: center;
  font-size: 42px;
  color: #d32f2f;
  margin-bottom: 60px;
  font-weight: 700;
}

.why-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 45px 30px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-bottom: 6px solid #5a63e6;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(90,99,230,0.35);
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.icon-circle.blue {
  background: #0d2c82;
  color: #ffffff;
}

.why-card h3 {
  font-size: 20px;
  color: #0d2c82;
  margin-bottom: 12px;
}

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

.footer {
  background: #001a70;
  color: white;
  padding: 40px 20px;
}

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

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

.footer-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 15px;
}

.icons a {
  display: inline-block;
  background: #1a3fbf;
  color: white;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  margin: 0 5px;
  text-decoration: none;
}

.icons a:hover {
  background: #ff0000;
}

copyright {
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* ================= CAREER PAGE ================= */

.career-section {
  background: #ffffff;
  padding: 60px 0;
}

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

.career-left {
  flex: 1;
}

.career-small-title {
  display: inline-block;
  font-size: 14px;
  color: #ff6600;
  margin-bottom: 10px;
  font-weight: 600;
}

.career-title {
  font-size: 28px;
  color: #2c2c8c;
  margin-bottom: 30px;
}

.career-image img {
  width: 100%;
  max-width: 420px;
}

.career-right {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.career-right p {
  margin-bottom: 18px;
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

/* ---------- HEADING ---------- */
.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: orange;
  margin-bottom: 10px;
}

.contact-heading h2 {
  color: #2a2a8f;
  margin-bottom: 10px;
}

.contact-heading p {
  color: #333;
  margin-bottom: 15px;
}

.contact-heading h3 {
  color: #2a2a8f;
}

.quote-link {
  color: green;
  font-weight: bold;
  text-decoration: underline;
}

/* ================= FIRST CONTACT + MAP ================= */

.branches-section {
  display: flex;
  flex-direction: column;
  gap: 50px;   /* 🔥 YAHI SPACE HAI TINO KE BEECH */
}

/* COMMON LAYOUT (LEFT CONTACT | RIGHT MAP) */
.contact-details,
.branch-details {
  background: #3aa0b6;
  color: white;
  padding: 30px;
  width: 40%;
}

.contact-details h3,
.branch-details h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-details p,
.branch-details p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* MAP COMMON */
.contact-map,
.branch-map {
  width: 60%;
}

.contact-map iframe,
.branch-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- FIRST BLOCK WRAPPER FIX ---------- */
.branches-section > .contact-details,
.branches-section > .contact-map {
  display: inline-block;
}

.branches-section > .contact-details,
.branches-section > .contact-map {
  vertical-align: top;
}

/* Wrap first contact + map */
.branches-section > .contact-details,
.branches-section > .contact-map {
  float: left;
}

.branches-section::after {
  content: "";
  display: block;
  clear: both;
}

/* ================= OTHER BRANCH CARDS ================= */

.branch-card {
  display: flex;
  gap: 20px;
}

.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: 1.7;
  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: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.history-section {
  background: #fff;
  padding: 70px 0;
}

.history-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  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;
  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;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: #fff;
}

.stat-box .icon {
  width: 80px;
  height: 80px;
  margin: auto;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-box h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  opacity: 0.9;
}
.testimonials {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sub-text {
  color: #555;
  margin-bottom: 40px;
}

.testimonial-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 50%;
  background: #fff;
  padding: 40px 30px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
}

.quote {
  position: absolute;
  top: 0;
  right: 0;
  background: #2f6df6;
  color: #fff;
  font-size: 40px;
  width: 60px;
  height: 60px;
  border-radius: 0 12px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card h3 {
  margin-top: 20px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

.stars {
  color: #f7b500;
  margin: 15px 0;
}

.testimonial-dots {
  margin-top: 30px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.testimonial-dots span.active {
  background: orange;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  background: #fff;
  padding: 50px 20px;
}

.clients-title {
  background: #001a78;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 40px;
}

.clients-title h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

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

.clients-grid img {
  display: grid;
  max-width: 160px;
  width: 100%;
  margin: auto;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.clients-grid img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .about-title {
    font-size: 28px;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 40px;
}

.service-card {
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: #000;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
  padding: 15px;
  font-size: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.services-grid {
  display: grid;
  gap: 25px;
}

.paper-section {
  background: #fff;
  padding: 60px 0;
}

.paper-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.paper-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #000;
}

.paper-grid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.paper-card {
  background: #fff;
  text-align: center;
  transition: 0.3s ease;
}

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

.paper-card h4 {
  margin-top: 12px;
  color: red;
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

/* 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: #001a78;
  padding: 30px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}
.site-footer {
  background: #0b0b2d;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

.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 a img {
  width: 24px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsive */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

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


