* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f8f8;
}
h2{
  font-size: 40px;
    line-height: 52px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #050748;
  font-weight: 600;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo img {
  height: 50px; /* Adjust size as needed */
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #050748;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f4b400;
}

.icons {
  display: flex;
  align-items: center;
}

.call-icon, .whatsapp-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #e91e63, #9c27b0);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  margin-right: 10px;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  transition: 0.3s;
  padding: 20px;
  z-index: 1100;
}

.sidebar.active {
  left: 0;
}

.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin: 15px 0;
}

.sidebar-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.close-btn {
  font-size: 24px;
  color: white;
  text-align: right;
  cursor: pointer;
}

/* Background Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  .hamburger {
      display: block;
  }
}



.hero {
  background-image: linear-gradient(45deg, #4a0079 0%, #4202b2 50%, #4400b1 100%);
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
 
  padding-top: 150px;
    padding-bottom: 100px;
}

.hero-container {
  width: 80%;
  /* max-width: 1200px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  color: #fff;
  font-size: 48px;
  line-height: 67px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
}

.hero-content p {
  color: #fff;
  font-size: 18px;
  margin: 40px 0;
  text-align: justify;
}

.hero-content .btn {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  padding: 0px 32px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  background-color: #ff1f8e;
  border: none;
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0 10px 15px 0px rgba(233, 30, 99, 0.15);
  text-decoration: none;
  transition: 0.3s;
}

.hero-content .btn:hover {
  background-color: #e60073;
}

.hero-image {
  width: 50%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-container {
      flex-direction: column;
      text-align: center;
  }

  .hero-content, .hero-image {
      width: 100%;
  }
  .hero-content h1 {
  
    font-size: 52px;
  }

  .hero-image {
      margin-top: 20px;
  }
}
/* Section Styling */
.second-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  padding: 50px 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Left Side Styling */
.left-content {
  width: 50%;
  text-align: justify;
}

/* Animated Heading */
.animated-heading {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Waving Hand Animation */
.wave {
  display: inline-block;
  animation: waveAnimation 1.5s infinite;
}

@keyframes waveAnimation {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(20deg); }
  100% { transform: rotate(0deg); }
}

/* Subheading */
.subheading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Paragraph Styling */
p {
  font-size: 17px;
  line-height: 28px;
}

/* Button Styling */
.cta-button {
  margin-top: 40px;
  border: 2px solid #000248;
  color: #050748;
  display: inline-block;
  padding: 0px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: #fff;
  box-shadow: 0 10px 15px 0px rgba(3, 35, 68, 0.1);
  line-height: 52px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
 
}

.cta-button:hover {
  background: #000248;
  color: #fff;
}

/* Right Side Styling */
.right-content {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cards Grid */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* Single Card */
.card {
  width: 30%;
  background: #fff;
  border-radius: 8px 8px 8px 40px;
  border-bottom: 4px solid #ff5733; /* Change color as needed */
  text-align: center;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Counter */
.counter {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
      width: 90%;
  }

  .card {
      width: 46%; /* Adjust to fit two per row on tablets */
  }
}

@media (max-width: 768px) {
  .container {
      width: 95%;
  }

  .content-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .left-content, .right-content {
      width: 100%;
  }

  .cards-grid {
    justify-content: center; /* Center align cards */
}

.card {
  width: 48%; /* 2 cards per row */
}
}
@media (max-width: 420px) {
  .card {
      width: 45%; /* Still 2 cards per row */
  }
}

@media (max-width: 360px) {
  .card {
      width: 100%; /* 1 card per row only on very small screens */
  }
}
.srcl1 {
  background: #f3f5ff;
  border-bottom: 4px solid #b0bdff;
}
.srcl2 {
  background: #fff3e6;
  border-bottom: 4px solid #ffc093;
}
.srcl3 {
  background: #fbeefd;
  border-bottom: 4px solid #f6bcff;
}
.srcl4 {
  background: #effdff;
  border-bottom: 4px solid #9ff3ff;
}
.srcl5 {
  background: #fbfff1;
  border-bottom: 4px solid #ffdaa2;
}
/* Scrolling Ticker */
.scrolling-ticker {
  background: linear-gradient(to right, #673ab7 0%, #2196f3 100%);
  padding: 20px;
  overflow: hidden;
  transform-origin: center;
  position: relative;
}

/* Marquee Text */
.scrolling-ticker marquee span {
  color: white;
  text-transform: uppercase;
  margin-right: 55px;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 768px) {
  .scrolling-ticker {
      padding: 15px;
  }
  .scrolling-ticker marquee span {
      font-size: 16px;  /* Slightly smaller for mobile */
      margin-right: 40px;
  }
  .services-heading {
    font-size: 60px; /* Reduce heading size */
}
}

@media (max-width: 480px) {
  .scrolling-ticker {
      padding: 10px;
  }
  .scrolling-ticker marquee span {
      font-size: 14px;  /* Even smaller for compact screens */
      margin-right: 30px;
  }
  .services-heading {
    font-size: 60px; /* Further reduce heading */
}

.ptag {
    font-size: 14px;
    line-height: 24px;
}
}


.service-subheading {
  color: #e60072;
  letter-spacing: 0.5px;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.services-heading {
  font-size: 90px;
  text-align: center;
  -webkit-text-stroke: 1px #e8e8e8;
  -webkit-text-fill-color: white;
}

.services-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}



.service-subheading {
  color: #e60072;
  letter-spacing: 0.5px;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.services-heading {
  font-size: 90px;
  text-align: center;
  -webkit-text-stroke: 1px #e8e8e8;
  -webkit-text-fill-color: white;
}

.ptag {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}
.common-heading, .ptag h2 {
  margin-bottom: 15px;
}
.services-wrapper {
  width:80%;
  margin: 0 auto;
  padding-bottom: 45px;
}
.container_head{
  width: 50%;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  /* display: flex; */
  /* justify-content: center; */
}
.services-section {
  background: #fff url('images/wave-bg.png') ;
  background-size: contain;
  position: relative;
  padding: 50px 0;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.service-card {
  background: #fff;
  box-shadow: 0 11px 20px rgb(123 149 162 / 15%);
  font-weight: 400;
  font-size: 14px;
  padding: 30px;
  border-radius: 40px 8px 40px 8px;
  text-align: center;
  width: calc(25% - 20px);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card img {
  max-width: 100%;
  border-radius: 8px;
}

.service-card h3 {
  margin-top: 15px;
}

@media (max-width: 992px) {
  .service-card {
      width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .container_head {
      width: 90%;
  }
  .services-heading{
    font-size: 30px;
  }

  
}
.why-choose-us {
  width: 100%;
  background: #fff url('wave-bg.png') repeat-x center bottom;
  background-size: contain;
  position: relative;
  padding: 60px 0;
}
.why-choose-us:before {
  content: "";
  background: url('images/dot_bg.png');
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.container_choose {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.left-content {
  width: 50%;
  text-align: left;
}
.left-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #e60072;
  text-transform: uppercase;
}
.left-content h2 {
  font-size: 32px;
  font-weight: bold;
  /* color: #222; */
  /* text-align: justify; */
}
.left-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-box {
  display: flex;
  align-items: flex-start;
  /* width: 50%; */
  margin-bottom: 15px;
}
.icon-box {
  width: 80px;
  height: 50px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 15px;
}
.icon-box i {
  font-size: 24px;
  color: #333;
}
.feature-text h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #222;
}
.feature-text p {
  font-size: 16px;
  color: #555;
}
@media (max-width: 768px) {
  .container_choose {
      flex-direction: column;
      text-align: center;
  }
  .left-content {
      width: 100%;
  }
  .left-content h2 , h3{
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    /* margin-bottom: 20px; */
  }
 
  .left-content p {
    text-align: justify;
  }
  .feature-box {
      width: 100%;
      justify-content: center;
  }
  
}
/* Right Side Styling */
.choose-right {
  width: 50%;
  text-align: center;
}
.text-bold {
  font-weight: 800;
}
.text-second {
  color: #e91e63;
}

.choose-right img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.choose-right p {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}

.choose-right h3 {
  font-size: 34px;
  /* color: #222; */
  margin-top: 15px;
}

.choose-right .extra-text {
  /* font-size: 14px;
  color: #777; */
  margin-bottom: 15px;
}

.choose-right .quote-btn {
  display: inline-block;
  background: #d63384;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 768px){
  .choose-right{
    width: 100%;
  }
  .icon-box {
    width: 100px;
    height: 40px;
  }
}


.testimonial-section {
  width: 100%;
  padding: 60px 10%;
  background: #f9f9f9;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-left {
  width: 45%;
}

.subheading {
  color: #e91e63;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.google-rating {
  display: flex;
  align-items: center;
  
  gap: 10px;
  margin-top: 20px;
}

.google-rating img {
  width: 60px;
  
}

.google-rating p {
  font-size: 14px;
  color: #666;
}

.stars i {
  color: #ffbb00;
}

.testimonial-section {
  width: 100%;
  padding: 60px 10%;
  background: #f9f9f9;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-left {
  width: 45%;
}


.subheading {
  color: #e91e63;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.google-rating img {
  width: 40px;
}

.google-rating p {
  font-size: 14px;
  color: #666;
}

.stars i {
  color: #ffbb00;
}


.testimonial-right {
  position: relative;
  width: 50%;
  overflow: hidden; /* Prevents content from shifting out */
  text-align: center;
}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* max-width: 600px; */
  flex: 0 0 100%; /* Makes each testimonial take full width */
}

.testimonial-box.active {
  opacity: 1;
  position: relative;
}

.testimonial-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-info h4 {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.author-info p {
  font-size: 14px;
  color: #666;
}

.testimonial-box i {
  font-size: 28px;
  color: #00e676;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Slider Controls */
.prev {
  
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button:hover {
  background: black;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
      flex-direction: column;
      text-align: center;
  }

  .testimonial-left, .testimonial-right {
      width: 100%;
  }
  .testimonial-box{
    padding: 10px;
  }

  .google-rating {
      justify-content: center;
      flex-direction: column;
  }
  .google-rating img{
    width: 60px;
    margin-bottom: -20px;
  }

  .testimonial-box {
      margin-top: 20px;
  }
  .service-card {
      width: 100%;
  }
  
}

.clients-section {
  text-align: center;
  background: linear-gradient(to bottom, #fff7e6, #ffebf2);
  padding: 50px 20px;
}

.small-heading {
  color: #ff0055;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.main-heading {
  font-size: 40px;
  color: #10172a;
  max-width: 700px;
  margin: 10px auto 30px;
  font-weight: 600;
}

.logos-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  animation: marquee 15s linear infinite;
}

.logos-track img {
  height: 80px;
  margin: 0 20px;
}

@keyframes marquee {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

.promise-text {
  font-size: 18px;
  color: #10172a;
  margin-top: 20px;
}


.footer {
  background: #f9f9f9;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-logo img {
  max-width: 180px;
}

.footer-logo p {
  font-size: 16px;
  color: #6a6a8e;
  max-width: 300px;
  margin-top: 10px;
  text-align: justify;
}

.footer-contact, .footer-services {
  max-width: 335px;
}

.footer-contact h3, .footer-services h3 {
  font-size: 18px;
  color: #6a6a8e;
  margin-bottom: 15px;
}

.footer-contact p, .footer-services ul {
  font-size: 16px;
  color: #6a6a8e;
  list-style: none;
  padding: 0;
  text-decoration: none;
}
.footer-contact p, .footer-services ul, a{
  text-decoration: none;
  color: #6a6a8e;
}
.footer-contact p{
  margin: 10px 0;
}

.footer-services ul li {
  margin: 10px 0;
}

.footer-services ul li a {
  text-decoration: none;
  color: #6a6a8e;
  transition: color 0.3s;
  margin-bottom: 10px; 
}

.footer-services ul li a:hover {
  color: #ff0055;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  font-size: 14px;
  color: #555;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  color: #555;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff0055;
}

/* Scroll to Top Button */
#scrollTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #80d4ff;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  /* top:0%; */
}
@media (max-width:768px) {

     .footer-logo p {
       max-width: 341px;
       text-align: center;
    }
     .footer-container{
        text-align: center;
     }
}