
body {
    background-color: white;
}
.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.service-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    text-align: center;
}
.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.info-bar {
    font-size: 0.9rem;
    color: #6c757d;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.info-bar div {
    padding: 5px 0;
}
/* Styling for Our Services Section */
.our-services {
margin: 30px auto;
}

.our-services h2 {
font-size: 2.5rem;
color: #333;
}

.our-services p {
font-size: 1.2rem;
color: #666;
margin-bottom: 30px;
}

.service-circle {
width: 150px;
height: 150px;
border-radius: 50%;
background-color:rgb(255, 255, 255);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 15px;
padding: 100px;
box-shadow: 0px 4px 6px rgba(36, 32, 32, 0.1);
transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
cursor: pointer;
text-align: center;
position: relative;
}

.service-circle .icon {
font-size: 3rem;
color: #007bff; /* Default color for icons */
}

.service-circle p {
margin: 8px 0 0;
font-size: 0.9rem;
color: #333;
}

.service-circle:hover {
transform: scale(1.2);
background-color:rgb(168, 197, 206);
box-shadow: 0px 8px 12px rgba(0, 123, 255, 0.6);
}

.service-circle:hover .icon {
color:#4a90e2; /* Darker blue on hover */
}

.service-circle:hover::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
box-shadow: 0 0 30px rgba(0, 123, 255, 0.7);
top: 0;
left: 0;
z-index: -1;
}

/* About Dhan Axis Section */
.about-dhan-axis {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.about-dhan-axis h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-dhan-axis p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.about-dhan-axis .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-dhan-axis .about-image img, 
.about-dhan-axis .technology-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-dhan-axis .about-text,
.about-dhan-axis .technology-text {
  max-width: 600px;
  margin: 30px 0;
}

/* Text alignment for large screens */
@media (min-width: 768px) {
  .about-dhan-axis .container {
      flex-direction: row;
  }
  
  .about-dhan-axis .about-text,
  .about-dhan-axis .technology-text {
      margin-left: 30px;
  }
}

/* Technology and Process Section */
.technology-image {
  order: 2;
  text-align: center;
}

.technology-text {
  order: 1;
}

.technology-text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  font-size: 1rem;
}

.technology-text ul li {
  margin-bottom: 10px;
}
/* Core Features Section */
.core-features {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.core-features h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

/* Feature Box Style */
.feature-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box h4 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 15px;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Feature Icon Style */
.feature-icon {
  font-size: 40px;
  background-color: #e0f7fa;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Hover Effect for Feature Box */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background-color: #e0f7fa;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
  .feature-box {
      margin-bottom: 20px;
  }
}
/* Scrolling Logos Section */
.scrolling-logos {
  background-color: #f9f9f9;
  padding: 30px 0;
  overflow: hidden;
}

.logo-container {
  display: flex;
  flex-wrap: nowrap;
  animation: scrollLogos 20s linear infinite;
}

.logo {
  margin-right: 30px;
  width: 100px;
  height: 50px;
}

/* Animation for Scrolling Effect */
@keyframes scrollLogos {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
  .logo-container {
      animation: scrollLogos 15s linear infinite;
  }

  .logo {
      width: 80px;
      height: 40px;
  }
}

/* Get Started Button */
.get-started-btn-container {
  text-align: center;
  margin-top: 30px;
}

.get-started-btn {
  background-color: red;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.get-started-btn:hover {
  background-color: darkred;
}
/* Testimonial Section */
.testimonial-section {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

/* Green Heading */
.testimonial-heading {
  color: green; /* Set the color to green */
  font-size: 30px; /* Adjusted font size for heading */
  font-weight: bold;
  margin-bottom: 20px; /* Reduced space between heading and content */
}

/* Testimonial Block */
.testimonial-block {
  background-color: #ffffff;
  padding: 20px; /* Reduced padding for smaller size */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 80%; /* Adjust width to make the box smaller */
  max-width: 600px; /* Ensure max-width is reasonable for different screen sizes */
  margin: 0 auto; /* Center the block */
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px; /* Reduced font size */
  font-style: italic;
  color: #555;
  margin-bottom: 15px; /* Reduced space between text and client info */
}

/* Client Info */
.client-info {
  font-size: 14px; /* Reduced font size for client info */
}

.client-name {
  font-weight: bold;
  color: #333;
}

.client-location {
  color: #777;
}
/* GST Services Section */
.gst-services-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

/* Heading Style */
.gst-heading {
  font-size: 30px; /* Normal size for heading */
  font-weight: normal;
  color: #333; /* Dark color for text */
  margin-bottom: 20px; /* Space below the heading */
}

/* Join Us Button Style */
.join-us-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: green; /* Green background */
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.join-us-btn:hover {
  background-color: darkgreen; /* Darker green on hover */
}


/* footer */

/* Footer Styles */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #2c3e50;
  color: white;
  flex-wrap: wrap;
}

.footer-section {
  width: 22%;  /* Adjust width for each section */
  margin: 10px;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #34495e;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-align: center;
}

.service-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.features ul, .support ul {
  list-style-type: none;
  padding: 0;
}

.features li, .support li {
  margin-bottom: 10px;
  text-align: center;
}

.features li a, .support li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.features li a:hover, .support li a:hover {
  color: #3498db;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.contact-us p {
  font-size: 14px;
  text-align: center;
  color: #bdc3c7;
}

/* For Responsiveness */
@media (max-width: 768px) {
  .footer-section {
      width: 48%;
  }
}

@media (max-width: 480px) {
  .footer-section {
      width: 100%;  /* Stack sections for mobile */
  }
}





