   
        /* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   HEADER
================================ */
.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ===============================
   NAVBAR LAYOUT
================================ */
/* .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
} */

/* ===============================
   LOGO
================================ */
/* Header & Navbar */
.site-header {
  width: 100%;
  background: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
           /* navbar height increase */
}

/* Logo Wrapper */
.navbar-logo {
  display: flex;
  align-items: center;
}

/* Logo Image */
/* .navbar-logo img {
  height: 70px;               
  width: auto;
  max-width: 100%;
  object-fit: contain;
} */



/* ===============================
   MENU
================================ */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-menu > li {
  position: relative;
}

.navbar-menu > li > a {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.navbar-menu > li > a:hover {
  color: #0d83fd;
}



/* ===============================
   ACTIONS
================================ */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}



.login-btn:hover {
  background: #0b6bd3;
}

/* ===============================
   MOBILE MENU
================================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {

  .menu-toggle {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu > li {
    width: 100%;
  }

  .navbar-menu > li > a {
    width: 100%;
    display: block;
  }

  .has-dropdown > .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .has-dropdown.active > .dropdown {
    display: block;
  }

  .social-icons {
    display: none;
  }
}



.ekit_social_media {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ekit_social_media li {
  display: inline-flex;
}

.ekit_social_media a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  color: #333;               /* 🔥 IMPORTANT */
  transition: all 0.3s ease;
}

/* SVG size */
.ekit_social_media svg {
  width: 18px;
  height: 18px;
}

/* Hover colors */
.ekit_social_media a.facebook:hover {
  background: #1877f2;
  color: #fff;
}
.ekit_social_media a.instagram:hover {
  background: #e4405f;
  color: #fff;
}
.ekit_social_media a.twitter:hover {
  background: #000;
  color: #fff;
}
.ekit_social_media a.in:hover {
  background: #0a66c2;
  color: #fff;
}
.ekit_social_media a.youtube:hover {
  background: #ff0000;
  color: #fff;
}
.ekit_social_media a.whatsapp:hover {
  background: #25d366;
  color: #fff;
}


.hero-img{
  width: 100%;
  height: auto;
}

  /* .swiper {
    width: 100%;
    /* padding: 10px 0; */
  

  /* .swiper-slide {
    background: #eee;
    text-align: center;
    padding: 40px 0;
    font-size: 20px;
    border-radius: 10px;
  }

    .swiper {
      width: 100%;
      height: 300px;
    } */

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      background: #ddd;
    }

  .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Hero content----- */
.hero-content {
  /* max-width: 800px; */
  padding: 40px 20px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 35px;
  margin-top: 20px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #0a4fd8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #083fae;
  transform: translateX(4px);
}

.hero-button .arrow {
  font-size: 18px;
}

/* ---jahsvg--- */
.benefits-section {
  padding: 80px 20px;
  text-align: center;
}

.benefits-container {
  max-width: 900px;
  margin: 0 auto;
}

.benefits-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.benefits-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ---building-future--- */
.building-future{
  padding: 20px 20px;
}

/* -----hgjk--- */
.features-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  color: #fff;
  /* background-color:#f8b919; */
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Wider cards for long content */
.feature-card.wide {
  grid-column: span 3;
}
/* ----jhdvh---- */
.leadership-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.leader-image img {
  width: 70%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-title span {
  color: #0a4fd8;
}

.leader-info {
  margin-bottom: 20px;
}

.leader-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.leader-role {
  font-size: 15px;
  color: #777;
}

.leader-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Button */
.leader-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #0a4fd8;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.leader-btn:hover {
  background-color: #083fae;
  transform: translateX(4px);
}
/* ---faq--- */
.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1a1a1a;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
/* ===funfact section---- */


body {
  font-family: Arial, Helvetica, sans-serif;
}

.funfact-section {
  background: #f5f7fa;
  padding: 60px 20px;
}

.funfact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.funfact-item {
  background: #ffffff;
  padding: 30px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.funfact-item:hover {
  transform: translateY(-8px);
}

.funfact-number {
  font-size: 36px;
  font-weight: 700;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.funfact-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
}

/* ---footer---- */
.site-footer {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
}

.containers {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* CTA */
.footer-cta {
  background: #f8b919;
  color: #000;
}

.cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 12px 18px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* FORM */
.callback-form input,
.callback-form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

.callback-form button {
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* FOOTER LINKS */
.footer-main {
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #f8b919;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  background: #111;
  border-top: 1px solid #222;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #ccc;
}
/* ---layout---- */
.layout-footer {
  width: 100%;
  background-color: #f5f5f5;
  padding: 50px;
  margin: 0;
}

.footer-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: auto;              /* image ratio safe */
            /* remove bottom gap */
  object-fit: cover;         /* no distortion */
}
.footer-heading h1{
  margin: 10px 0;
}

/* --balaji add--- */
.footer-simple {
 
  padding: 60px 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-simple h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.footer-simple p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
}

.footer-simple .mobile {
  font-size: 16px;
  font-weight: 500;
}
