/* Horizontal scroll rokne ke liye*/
html,
body {
  overflow-x: hidden;
}



body {
  background-color: rgba(10, 205, 255, 0.025);
}


.navbar-nav {
  gap: 10px;
  /* navlink distance manage */
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #4edb5a;
}

/* bottom line */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #02CBFF;
  /* brand color */
  transition: width 0.3s ease;
}

/* hover */
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar .nav-link::after {
    display: none;
  }
}





.login-btn {
  color: black;
  border: 1px solid #67E0FF;
  background: #67E0FF;
  margin-left: 10px;
  padding: 3px 9px;
}

.login-btn:hover {
  background: #52c5e1;
  color: black;
}

@media (max-width: 768px) {
  .login-btn {
    margin-left: 0px !important;
  }
}




/* ================= HERO SECTION ================= */
.hero-section {
  height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
    url("./images/hero-img.jpg") center / cover no-repeat;
  background-attachment: fixed !important;

}


/* HERO CONTENT */
.hero-content {
  max-width: 700px;
}

/* MAIN HEADING */
.herotext {
  font-size: 55px;
  /* desktop size */
  font-weight: 350;
  /* light & professional */
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* PARAGRAPH */
.hero-content p {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin-top: 15px;
  color: white;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .herotext {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero-section {
    height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)),
      url("./images/hero-img.jpg") center / cover no-repeat;
  }

  .hero-content p {
    font-size: 15px;
  }
}


.hero-left {
  margin-left: 150px;
}

@media (max-width: 768px) {
  .hero-left {
    margin-left: 0;
  }
}




.btn-no-round {
  border-radius: 8px !important;
  transition: background-color 0.3s, color 0.3s;
  color: #20d62f;
  padding: 8px;
  font-size: 16px;
}

/* Hover पर color change */
.btn-no-round:hover {
  background-color: #77cde3;
  /* blue background */
  color: white;
  /* text white */
}




/* service section */

.hover-shadow:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


/* service card */

/* section underline */
.section-line {
  width: 60px;
  height: 2px;
  background: #111;
}

.cursor-pointer {
  cursor: pointer !important;
}


/* service card */
.service-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: #d7cbcb 1px solid;
}


/* hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: #727171 1px solid;
}

/* image box */
.service-img-box {
  height: 170px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  border-radius: 14px 14px 0 0;
}

.service-img-box img {
  max-height: 120px;
  max-width: 80%;
  object-fit: contain;
}

#serviceCarousel .carousel-inner {
  overflow: visible;
}


/* card swiper botton */

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 27px;
  /* yahan se arrow ka size control hota hai */
}


@media (max-width: 576px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    color: #02CBFF;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 25px;
  }
}




/* mobile fine-tuning */
@media (max-width: 576px) {
  .service-card {
    border-radius: 10px;
  }
}









/* about section */

.custom-btn {
  background-color: #0B5ED7;
  color: #ffffff;
  border: 1px solid #0B5ED7;
  border-radius: 4px;
  /* sharp but modern */
  padding: 10px 22px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: all 0.25s ease-in-out;
}

/* Hover */
.custom-btn:hover {
  background-color: #4224d7;
  /* slightly darker blue */
  border-color: #4629d9;
  color: #ffffff;
}



@media (min-width: 768px) {
  .content-right {
    margin-top: -70px;
  }
}

@media (max-width: 767px) {
  .content-right {
    margin-top: -30px;
  }
}






/* contact with us section */

.service-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.contact-icon-box {
  width: 80px;
  height: 80px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: #8cc63f;
}


h1 {
  font-family: serif;
}

p {
  color: #666;
  font-size: 0.9rem;
}

.contact-icon-box:hover {
  background-color: #8cc63f;
  /* green background on hover */
  color: #fff;
  /* icon color white */
  transform: scale(1.2);
  /* slightly bigger */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* subtle shadow */
  cursor: pointer;
}





/* testomoniam */

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(186, 83, 83, 0.08);
  transition: all 0.3s ease;
  border: #e1d7d7 1px solid !important;
}

.testimonial-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

#testimonialCarousel .carousel-inner,
#testimonialCarousel .row {
  overflow: visible;
}













/* client logo slidder */

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  animation-play-state: paused;
  /* important */
}

.logo-track img {
  width: 130px;
  margin: 0 35px;
  filter: none;
  opacity: 0.8;
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}




/* footer */

.footer {
  color: #ffffff;
}

/* Headings */
.footer h4,
.footer h5 {
  color: #ffffff;
}

/* Paragraph text */
.footer p,
.footer small {
  color: #f1f1f1;
}

/* Links – underline hatao + color fix */
.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

/* Links hover */
.footer a:hover {
  color: #1f2933;
  /* dark shade for contrast */
}

/* Footer links list spacing */
.footer-links li {
  margin-bottom: 8px;
}

/* Social icons */
.footer-social a {
  font-size: 18px;
}

/* Bottom bar */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
}















/* about page */

.about p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}

.carousel-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .carousel-img {
    height: 200px;
  }
}


.bussiness p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  padding: 5px;
}


.my-btn {
  background-color: #dbd4d4;
}

.my-btn:hover {
  background-color: #000;
  color: #fff;
  /* text white */
  border-color: #000;
}












/* OUR BUSSINESS PAGE*/


.hero-section-bussiness {
  background: linear-gradient(rgba(115, 112, 112, 0.6), rgba(0, 0, 0, 0.6)),
    url('./images/bussines_bg_img.jpg') center/cover no-repeat;
  min-height: 65vh !important;
  display: flex;
  align-items: center;
}

.hero-icon {
  font-size: 50px;
}

.font-welcome {
  font-size: 50px;
}

.contact-parent-box {
  width: 100%;
  min-height: 120px;
  /* height ki jagah min-height */
  gap: clamp(2rem, 40vw, 570px);
  /* responsive gap */
  background-color: rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {

  .hero-section-bussiness {
    min-height: 40vh !important;
  }

  .font-welcome {
    font-size: 30px;
  }

  .contact-parent-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px !important;
  }

  .paragrab-hero {
    font-size: 14px;
  }

}


/* about */

.our-business-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  color: #1e88e5;
  font-weight: 700;
  letter-spacing: 6px;
}

.business-text h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.business-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.business-img img {
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .our-business-section {
    padding: 10px 15px;
  }

  .business-text {
    text-align: center;
    margin-top: 20px;
  }

  .business-text p {
    font-size: 16px;
  }

  .section-title {
    letter-spacing: 3px;
    padding-top: 40px;
  }

  .business-img img {
    margin-top: 50px;
  }
}





/* affiliate marketing page*/


.campaign-title {
  font-size: 48px;
  font-weight: 700;
}

.campaign-box {
  padding: 40px 20px;
}

.campaign-icon {
  font-size: 50px;
  color: #1b1919;
  margin-bottom: 15px;
}

.campaign-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.campaign-box p {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
}

.specialties-section+.specialties-section {
  margin-top: 80px;
  /* dono section ke beech gap */
}


/* Responsive */
@media (max-width: 768px) {
  .campaign-title {
    font-size: 32px;
  }

  .campaign-icon {
    font-size: 40px;
    color: #1b1919;
  }
}





/* What are our specialties? */

.specialties-section {
  margin-top: 50px;
  padding: 40px 0;
  background: #eaf7f6;
  position: relative;
  overflow: hidden;
}

.specialties-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;

}

.specialties-box h4 {
  font-weight: 600;
  font-size: 35px;
}

.subtitle {
  color: #777;
  font-size: 20px;
}

.line {
  width: 60px;
  height: 2px;
  background: #333;
}

.specialty-card {
  padding: 10px 20px;
}

.specialty-icon {
  width: 120px;
  margin-bottom: 15px;
}

.specialty-card h5 {
  color: #2db84c;
  font-weight: 700;
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .specialties-title {
    font-size: 32px;
  }

  .specialty-icon {
    width: 60px;
  }

  .specialties-section {
    padding: 50px 15px;
  }
}





/* Location page */




.contact-icon {
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #8bc34a;
  margin-right: 20px;
  transition: .3s all;
}

.contact-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.contact-item:hover .contact-icon {
  background-color: #8bc34a;
  color: #f8f9fa;
}

.contact-label {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: #444;
}

.contact-info {
  color: #777;
  font-size: 0.95rem;
}

.form-control {
  background-color: #f8f9fa;
  border: rgb(196, 189, 189) 1px solid;
  padding: 15px;
  margin-bottom: 15px;
}


.btn-contact {
  background-color: #8bc34a;
  color: white;
  padding: 10px 30px;
  border: none;
  font-weight: bold;
}

.btn-contact:hover {
  background-color: #7cb342;
  color: white;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: none;
}






/* scroll icon */
html {
  scroll-behavior: smooth;
}

/* Back to Top Button */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 13px;
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 50%;
  font-size: 18px;
  display: none; /* initially hidden */
  z-index: 1000;
  transition: opacity 0.3s;
}
.back-to-top:hover {
  background-color: #0056b3;
  text-decoration: none;
  color: white;
}



/* Mobile optimization */
@media (max-width: 576px) {
  .back-to-top {
    bottom: 30px;
    right: 15px;
    padding: 10px 12px;
    font-size: 18px;
    padding: 9px 16px;
  }
}




/* styky botton */
.sticky-social {
  position: fixed;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* common button style */
.social-btn {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* hover effect */
.social-btn:hover {
  transform: scale(1.12);
}

.facebook {
  background: #1877F2;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn.linkedin {
  background: #0a66c2;
}

.social-btn.twitter {
  background: #000;
}

/* X ke liye */


/* mobile pe sticky social hide */
@media (max-width: 767px) {
  .sticky-social {
    display: none;
  }
}