
    /* New Styles for Testimonials slider */
    .testimonial {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin: 10px;
    
    }
    .testimonial p {
      font-style: italic;
      color: #555;
    }
    .testimonial .author {
      margin-top: 10px;
      font-weight: bold;
      color: #333;
    }

    /* Quick links section */
    .quick-links {
      margin-top: 20px;
    margin-bottom: 30px;
    }
    .quick-links a {
      display: inline-block;
      margin: 10px 15px;
      padding: 15px 25px;
      background: #2575fc;
      color: #fff;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .quick-links a:hover {
      background: #6a11cb;
    }

    /* Newsletter Form */
    .newsletter {
      background: #2575fc;
      color: white;
      padding: 40px 20px;
      border-radius: 15px;
      margin-top: 60px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(37, 117, 252, 0.3);
    }
    .newsletter input[type="email"] {
      padding: 10px 15px;
      border-radius: 30px;
      border: none;
      width: 280px;
      max-width: 100%;
      margin-right: 10px;
      font-size: 1rem;
    }
    .newsletter button {
      padding: 10px 25px;
      border-radius: 30px;
      border: none;
      background-color: #6a11cb;
      color: white;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .newsletter button:hover {
      background-color: #2575fc;
    }
  .main-content {
      padding: 80px 20px 20px 20px;
    }

  /* Styling for the Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient background */
  color: #ffffff; /* White text color */
  border-radius: 15px; /* More rounded corners */
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Hero Heading */
.hero h1 {
  font-size: 3rem; /* Larger font size */
  font-weight: bold;
  line-height: 1.3; /* Improved line height for readability */
  letter-spacing: 1px; /* Slight letter spacing for a clean look */
  margin-bottom: 20px;
}

/* Hero Paragraph */
.hero p {
  font-size: 1.2rem; /* Slightly larger font size for readability */
  font-weight: 300; /* Lighter font weight for contrast */
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 700px; /* Limit width to avoid text stretching across the screen */
  margin-left: auto;
  margin-right: auto;
}

/* Button Styling (Optional: if you have a call-to-action button) */
.hero .cta-btn {
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #ffffff;
  color: #2575fc;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .cta-btn:hover {
  background-color: #2575fc;
  color: #ffffff;
}

/* Media Query for smaller screens (responsive) */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  .hero p {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .hero .cta-btn {
    padding: 12px 25px;
  }
}


    .visitor-counter {
      font-weight: 500;
      color: white; /* Bootstrap primary */
      white-space: nowrap;
    }

    /* Made in India Logo Styling */
/* Container for both logos */
.logo-container {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  gap: 10px; /* Space between the logos */
  z-index: 999;
}

/* Styling for Made in India logo */
.made-in-india,
.digital-india,
.secure-india {
  height: 70px;  /* Default height for larger screens */
  width: auto;   /* Maintain aspect ratio */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .made-in-india,
  .digital-india,
  .secure-india {
    height: 40px;  /* Reduced height for smaller screens */
  }

  .logo-container {
    top: 5px;
    right: 10px;
    gap: 5px; /* Reduce space between the logos */
  }
}
 .carousel-inner {
  position: relative;
  height: 200px; /* or adjust as needed */
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
}