 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Header */
    .top-header {
      background-color: #7393cf; /* Updated background for powerful logo appearance */
      color: white;
      text-align: center;
      padding: 30px 20px;
    }

    .top-header .logo {
      max-width: 250px;
      margin: 0 auto 15px;
    }

    .top-header img {
      width: 100%;
      height: auto;
    }

    .top-header .subtext {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .top-header h1 {
      font-size: 30px;
      font-weight: bold;
      line-height: 1.5;
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10%;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .nav-links {
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      text-decoration: none;
      color: #993366;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #660033;
    }

    .language-select select {
      padding: 6px 12px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #993366;
      border-radius: 3px;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
      }

      .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 50px;
        gap: 15px;
      }

      .nav-links.show {
        display: flex;
      }

      .nav-links a {
        padding: 8px 0;
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .top-header .logo {
        max-width: 180px;
      }

      .top-header h1 {
        font-size: 22px;
      }

      .top-header .subtext {
        font-size: 16px;
      }
    }


   
    
   .main-img{
    height: 60px !important;
    width: 170px !important;
   }


   /* counter */

   .stats-section {
  background: #ebebeb; /* Light pink */
  padding: 40px 15px;
  display: flex;
  justify-content: center;
}

.stats-box {
  background: rgb(255, 255, 255);
  width: 100%;
  border-radius: 5px;
  padding: 30px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  gap: 30px;
}

.stat {
  text-align: center;
  font-family: Arial, sans-serif;
  flex: 1 1 150px;
}

.counter {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  color: #6e67ca;
}

.unit {
  font-size: 20px;
  color: #3a6f6b;
  margin-left: 3px;
}

.stat p {
  font-size: 17px;
  color: #000000;
  margin-top: 5px;
  font-weight: bold;
}

.divider {
  width: 1px;
  background: #a83264;
  opacity: 0.3;
  height: 50px;
}

@media(max-width: 768px) {
  .divider {
    display: none;
  }
  .stats-box {
    padding: 20px;
    gap: 20px;
  }
}


/* about us */

.custom-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.text-section h2 {
  font-weight: bold;
  color: #2c4b60;
  margin-bottom: 15px;
}

.text-section .highlight {
  color: #7ebf3d;
}

.text-section p {
  color: #346381;
  font-size: 16px;
  line-height: 1.6;
}

.btn-custom {
  display: inline-block;
  padding: 10px 25px;
  background-color: #059b49;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: bold;
}

.btn-custom:hover {
  background-color: #7ebf3d;
}

@media (max-width: 991px) {
  .text-section {
    text-align: center;
  }
}

/* gallery section */

   /* Section Wrapper */
.navhind-gallery-wrapper {
  padding: 50px 0;
  background-color: #f8f9fa;
}

/* Heading */
.navhind-gallery-heading {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c4b60;
}

.navhind-gallery-heading span {
  color: #7ebf3d;
}

/* Slider Container */
.navhind-gallery-slider {
  overflow: hidden;
  position: relative;
}

/* Slide Track */
.navhind-slide-track {
  display: flex;
  width: calc(250px * 12); /* total slides * width */
  animation: navhind-scroll 30s linear infinite;
}

/* Individual Slide */
.navhind-slide {
  width: 450px;
  height: 280px;
  flex-shrink: 0;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 3px solid #346381;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.navhind-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.navhind-slide:hover {
  transform: scale(1.05);
  border-color: #059b49;
}

/* Animation Keyframes */
@keyframes navhind-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 6)); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navhind-slide {
    width: 180px;
    height: 130px;
  }
  .navhind-slide-track {
    width: calc(180px * 12);
    animation: navhind-scroll 25s linear infinite;
  }
}



/* Section Styling */
.navhind-services-wrapper {
  position: relative;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  color: white;
}

.navhind-services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/images/Socity/money-2696219_1280.jpg);
}

.navhind-services-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* Heading */
.navhind-services-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}

.navhind-services-heading span {
  color: #7ebf3d;
}

/* Services Grid */
.navhind-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Service Card */
.navhind-service-card {
  background: rgba(44, 75, 96, 0.9);
  border: 2px solid #346381;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.navhind-service-card:hover {
  transform: translateY(-8px);
  border-color: #059b49;
}

.navhind-service-icon {
  font-size: 40px;
  color: #7ebf3d;
  margin-bottom: 15px;
}

.navhind-service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.navhind-service-card p {
  font-size: 14px;
  color: #e0e0e0;
}



.why-sanskruti-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Sanskruti', sans-serif;
}

.why-sanskruti-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-sanskruti-title {
  font-size: 2.2rem;
  color: #2c4b60;
  font-weight: bold;
}

.why-sanskruti-divider {
  display: block;
  width: 80px;
  height: 4px;
  background: #7ebf3d;
  margin: 10px auto 40px;
}

.why-sanskruti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-sanskruti-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.why-sanskruti-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.why-sanskruti-icon {
  font-size: 2rem;
  color: #059b49;
  margin-bottom: 15px;
}

.why-sanskruti-card h3 {
  color: #346381;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-sanskruti-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-sanskruti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-sanskruti-grid {
    grid-template-columns: 1fr;
  }
}




.sanskruti-cta {
  background: url('your-background.jpg') center/cover no-repeat;
  position: relative;
  padding: 80px 20px;
  color: #fff;
}

.sanskruti-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 75, 96, 0.8); /* dark overlay using main color */
}

.sanskruti-cta-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sanskruti-cta h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  flex: 1;
  color: #fff;
}

.sanskruti-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #7ebf3d;
  background: transparent;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sanskruti-cta-btn:hover {
  background: #7ebf3d;
  color: #2c4b60;
}

/* Responsive */
@media (max-width: 768px) {
  .sanskruti-cta-content {
    flex-direction: column;
    text-align: center;
  }
  .sanskruti-cta h2 {
    font-size: 1.6rem;
  }
}




.sanskruti-footer {
  background-color: #2c2954; /* Your color code */
  color: white;
  font-family: 'Sanskruti', sans-serif;
}

.sanskruti-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.sanskruti-footer-about {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.sanskruti-footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.sanskruti-footer-text {
  font-size: 14px;
  margin-bottom: 15px;
}

.sanskruti-footer-social a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.sanskruti-footer-social a:hover {
  color: #ffcc00;
}

.sanskruti-footer-links,
.sanskruti-footer-contact {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.sanskruti-footer-links h4,
.sanskruti-footer-contact h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.sanskruti-footer-links ul {
  list-style: none;
  padding: 0;
}

.sanskruti-footer-links li {
  margin-bottom: 6px;
}

.sanskruti-footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.sanskruti-footer-links a:hover {
  color: #ffcc00;
}

.sanskruti-footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
}

.sanskruti-footer-contact i {
  margin-right: 6px;
}

.sanskruti-footer-bottom {
  background-color: #371856;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .sanskruti-footer-container {
    flex-direction: column;
    text-align: center;
  }

  .sanskruti-footer-social {
    justify-content: center;
  }
}




/* Hero Banner Styles */
.sanskruti-hero-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('/images/Socity/online-e-stamp-payment-system.webp'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sanskruti-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sanskruti-hero-content {
    color: #fff;
    text-align: left;
    max-width: 1200px;
    padding: 0 20px;
}

.sanskruti-hero-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sanskruti-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sanskruti-hero-banner {
        height: 220px;
    }
    .sanskruti-hero-title {
        font-size: 2rem;
    }
    .sanskruti-hero-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sanskruti-hero-title {
        font-size: 1.6rem;
    }
}



/* table */


.custom-table-section {
  padding: 40px;
  background: #f9f9f9;
}

.custom-table-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.custom-table-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.custom-table-card {
  flex: 1 1 calc(50% - 20px);
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th, .custom-table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
}

.custom-table th {
  background: #b50000;
  color: white;
  font-weight: bold;
}

.custom-table tr:hover {
  background: #f7f7f7;
}

@media (max-width: 768px) {
  .custom-table-card {
    flex: 1 1 100%;
  }
}
