* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .nav-links li .get-touch-btn {
    display: block;
    margin: 10px auto;
    width: 80%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f7fa;
  color: #222222;
}

/* ===== Modern Navbar Styles ===== */
.navbar {
  position: fixed;
  top: 0;
  height: 14%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 5%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.logoImage {
  height: 70px;
}
.logo img {
  transition: all 0.3s ease;
  width: 95%;
}

.navbar.scrolled .logo img {
  height: 35px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a:not(.get-touch-btn):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: width 0.3s ease;
}

.nav-links a:hover:not(.get-touch-btn) {
  color: #4f46e5;
}

.nav-links a:hover:not(.get-touch-btn):after {
  width: 100%;
}

/* Modern Dropdown */
.dropdown-content {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 230px !important;
  padding: 15px !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
  transition: all 0.3s ease !important;
  z-index: 100 !important;
}

.dropdown:hover .dropdown-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  color: #555;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.05);
  padding-left: 25px;
}

/* Modern Button */
.get-touch-btn {
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    background-position 0.4s ease;
  background-size: 120% 120%;
  background-position: left;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3), 0 0 0 rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  transform: rotate(25deg);
  transition: all 0.7s ease-in-out;
  pointer-events: none;
}

.get-touch-btn:hover {
  transform: scale(1.05) rotate(-1deg);
  background-position: right;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.45),
    0 4px 15px rgba(0, 0, 0, 0.1);
}

.get-touch-btn:hover::before {
  top: 0;
  left: 0;
}

/* Modern Hamburger Menu */

.hamburger {
  display: none; /* Hidden by default on desktop */
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Mobile view styles */

/* Hero Section */

.hero {
  position: relative;
  background: linear-gradient(to bottom right, #0100ec, #00c0ff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 2%;
  height: 91%;
}

/* Hero Text Block */
.hero-text-block .tagline {
  font-size: 0.95rem;
  color: #00bfff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-text-block h1 {
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-text-block p {
  font-size: 1.2rem;
  color: #dddddd;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Animated Button */
.btn.cta {
  background-color: #00bfff;
  color: white;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.cta:hover {
  background-color: #009acd;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

/* Hero Image Animation */
.hero-image-block img {
  animation: floatUpDown 6s ease-in-out infinite;
}

.hero-image-block img.paused {
  animation-play-state: paused;
}

.hero-image-block {
  min-height: 400px; /* Adjust based on your tallest SVG */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text-block {
  min-height: 300px; /* Estimate from your tallest block of text */
}

/* Floating Animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Fade-in Animation */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text-block h1 {
    font-size: 2.5rem;
  }

  .hero-text-block p {
    font-size: 1rem;
  }

  .btn.cta {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero-image-block object {
    max-width: 300px;
  }
}

.get-touch-btn {
  margin-right: 10px;
}

/* Responsive - Tablet + Mobile */
@media (max-width: 1024px) {
  .navbar {
    padding: 5px 15px;
    height: 9%;
  }

  .logo img {
    height: 50px;
  }

  /* .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-right: 15px;
  } */

  .get-touch-btn {
    margin-left: 12px;
    font-size: 12px;
    padding: 6px 14px;
    margin-right: 10px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    width: 100%;
    padding: 30px 0;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: left 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-links a {
    /* padding: 5px 24px; */
    font-size: 15px;
    /* border-radius: 30px; */
    /* border: 1px solid #007bff; */
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
    /* background-color: white; */
    color: whitesmoke;
  }

  .nav-links a:hover {
    background-color: #007bff;
    color: white;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-block .tagline {
    margin-bottom: 30px;
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #00bfff;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 30px;
  }

  .hero-text-block {
    padding: 0 10px;
    margin-top: 10px;
  }

  .hero-text-block h1 {
    font-size: 2.2rem;
    .hero-text-block h1 {
      font-size: 1.8rem;
      margin-bottom: 15px; /* ✅ spacing below heading */
    }
  }

  .hero-text-block p {
    font-size: 1.1rem;
  }

  .hero-image-block object {
    max-width: 90%;
  }
}

/* Extra Mobile Only */
@media (max-width: 600px) {
  .hero-text-block h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero-text-block p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn.cta {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .client-logos {
    gap: 20px;
  }

  .client-logos img {
    height: 40px;
  }
}

/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-text {
  font-size: 2.5rem;
}

/* Client Section */
/* Client Section Styling */
.animated-text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  margin-top: 3%;
  background-color: #f0f4f8;
  color: #007bff;
}

/* mobie responsive for client section styling */
.client-section {
  position: relative;
  top: 30px;
  padding: 60px 0;
  background-image: linear-gradient(145deg, #f4f6f9, #ffffff);
  text-align: center;
}

.client-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.client-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.client-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin-top: -4vh;
  padding: 0 20px;

  position: relative;
  height: 18vh;
}

.scroller {
  display: flex;
  width: fit-content;
  height: 15vh;
  margin-top: 4px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.client-logos img {
  width: 95px;
  height: 75px;
  margin: 0 10px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  padding: 12px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.client-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .client-title {
    font-size: 1.6rem;
  }

  .client-subtitle {
    font-size: 1rem;
  }

  .client-logos {
    gap: 20px;
  }

  .client-logos img {
    height: 50px;
    padding: 8px;
  }
}

/* Mobile styles----hamburger */

@media (max-width: 480px) {
  .client-logos {
    gap: 15px;
    /* margin-top: 12px; */
  }

  .client-logos img {
    height: 60px;
  }

  .animated-text {
    font-size: 1.45rem;
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    /* margin-left: 20px; */
    font-weight: bold;
    color: #007bff;
    opacity: 1; /* Change to 1 for testing */
    transform: translateY(0); /* Change to 0 for testing */
  }
}

/* Service container */
/* Updated Services Box Section */
.services-box-section {
  background: linear-gradient(145deg, #e0f7fa, #f5f8ff);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.service-box-container {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.service-card-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.05);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card img,
.service-card object {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: #007bff;
}

.service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-box-section {
    padding: 50px 10px;
  }

  .service-box-container {
    padding: 40px 20px;
    height: 270vh;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-card {
    width: 100%;
    margin: 10px 0;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* blog section */

.blog-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin-top: -40px;
}

.section-subtitle {
  font-size: 15px;
  color: #888;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

.blog-layout {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  text-align: left;
  height: 92vh;
}

.featured-blog {
  position: relative;
  height: 360px; /* Fixed height */
  width: 660px; /* ✅ Fixed width */
  flex: 0 0 660px; /* ✅ Prevent flex grow/shrink */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-bottom: 4px solid #c4f2e2;
}

.featured-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
}

.featured-blog .blog-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  width: 100%;
  color: #fff;
}

.featured-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.featured-desc,
.featured-meta {
  font-size: 14px;
  color: #ddd;
}

.side-blogs {
  height: 41vh;
  gap: 20px;
}

.blog-card.small {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  align-items: flex-start;
  border-left: 4px solid #c4f2e2;
}

.blog-card.small img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 4px;
  /* filter: grayscale(100%); */
}

.blog-card.small .blog-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.blog-card.small .blog-info .author {
  font-size: 13px;
  color: #666;
}

.blog-navigation {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.prev-btn,
.next-btn {
  background-color: #7f56d9;
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #5b35a7;
}

@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
  }
  .blog-navigation {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .featured-blog {
    width: 100%;
    flex: 1 1 100%;
    height: 300px; /* Reduce height for mobile */
  }
}

/* css for get it touch  */
.get-in-touch-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-subtitle {
  margin-top: -28px;
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
  width: 72%;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.contact-map,
.contact-button {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-get-in-touch {
  padding: 16px 36px;
  background-color: #005eff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-get-in-touch:hover {
  background-color: #003db3;
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
    position: relative;
    top: -8vh;
  }

  .contact-map,
  .contact-button {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 250px;
  }

  .btn-get-in-touch {
    width: 48%;
    font-size: 0.7rem;
  }
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff; /* Background pure white */
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 70s linear infinite;
  gap: 40px; /* Thoda gap maintain classy dikhane ke liye */
}

.stars {
  font-size: 20px;
  margin-bottom: 10px;
  color: gold;
}

.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.customer-photo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #005eff;
}

.customer-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Smooth Left Scroll */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -33.33%
    ); /* 👈 Triple duplication hai to -33.33% kar do */
  }
}

/*  css for faq */
.faq-section {
  padding: 10px 20px;
  margin-top: -62px;
  margin-bottom: 7vh;
  background-color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 40px;
}

.faq-item {
  /* background: #f1f5f9; Light bluish background */
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.faq-question {
  padding: 18px 20px;
  color: #222;
  font-size: 17px; /* ✅ Thoda chhota kar diya */
  font-weight: 500; /* ✅ Medium rakha bold nahi */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4; /* ✅ Readable spacing */
}

.faq-question span {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  color: #555;
  font-size: 16px;
  padding: 0 20px;
  text-align: left;
  transition: all 0.4s ease;
}

.faq-item.active {
  background: #e6f0ff; /* Light blue shade when open */
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px; /* enough to show full answer */
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* css for footer */
.footer {
  background-color: #0c0f20;
  color: #ffffff;
  padding: 60px 20px 20px 20px;
  font-family: "Poppins", sans-serif;
  /* height: 90vh; */
  /* margin-top: 3%; */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  height: 50vh;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px 0;
  margin-left: 35px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.footer-column p,
.footer-column ul li {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 15px;
}
.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-column ul li.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-column ul li.footer-contact-row i {
  font-size: 16px;
  color: #f84;
  margin-top: 4px;
}

.footer-column ul li.footer-contact-row span,
.footer-column ul li.footer-contact-row a {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li.footer-contact-row a:hover {
  color: #fff;
}

.footer-icon {
  font-size: 16px;
  line-height: 1.6;
  display: inline-block;
  min-width: 20px;
}

.footer-bottom p {
  margin-top: 26px;
}
.testimonial-section {
  padding: 80px 20px;
  height: 109vh;
  background: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  position: relative;
  margin-top: -66vh;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #007bff;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #ffffff; /* Background pure white */
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 70s linear infinite;
  gap: 40px; /* Thoda gap maintain classy dikhane ke liye */
}

.testimonial-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Softer shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stars {
  font-size: 20px;
  margin-bottom: 10px;
  color: gold;
}

.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}
.container {
  top: 6vh;

  width: 90%;
  height: 94vh;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.horizontal {
  border: none;
  height: 2px;
  /* width: 190%; */
  max-width: 300px;
  margin: -6px auto;
  background: linear-gradient(to right, #005eff, #00d4ff);
  border-radius: 6px;
  opacity: 0.9;
  position: relative;
}
.get-in-touch-section {
  /* height: 30vh; */
  position: relative;
  top: -230px;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 8vh;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #005eff, #003bb3);
    padding: 4px 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    text-align: center;
  }
  .nav-links a {
    color: whitesmoke;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .nav-links a:hover {
    color: #ffea00;
  }

  .dropdown-content {
    display: none; /* hide dropdown on mobile, or handle with JS */
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
  }

  .get-touch-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    /* Take 90% width of the screen */
    margin: 0 auto; /* Center align on mobile */
    padding: 20px 12px;
  }

  .testimonial-section {
    margin-top: -18vh;
    height: 50vh;
  }

  .testimonial-track {
    display: flex;
    margin-top: -3vh;
    flex-wrap: nowrap; /* Ensure no wrapping of cards */
  }
}

/* Desktop styles */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 6px;
    z-index: 999;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
  }

  .dropdown-content a:hover {
    background-color: #f0f0f0;
  }
}

@media (max-width: 768px) {
  .faq-section {
    margin-top: 12px;
    height: 80vh;
  }

  .container {
    margin-top: -30px;
  }
  .faq-title {
    font-size: 1.5rem;
    margin-top: 65px;
  }
  .get-in-touch-section {
    margin-top: 5vh;

    height: 67vh;
  }
  .footer-bottom p {
    margin-top: 7vh;
    font-size: 9px;
  }
  .consultation-button {
    top: -15vh;
    position: relative;
  }
  .blog-layout {
    position: relative;
    flex-direction: column;
    height: 35%;
    top: -16vh;
  }
  @media (max-width: 768px) {
    .section-title {
      height: 4vh;
      letter-spacing: 1px;
      font-size: 1.5rem;
      margin-bottom: 18vh;
      position: relative;
      top: -2vh;
      text-align: center;
      font-weight: bold;
    }
    .testimonial-slider {
      position: relative;
      height: 31vh;
      margin-top: -13vh;
    }
    .service-card-wrapper {
      position: relative;
      top: -15vh;
    }
    .intro-text-block h2 {
      font-size: 1.5rem;
      color: #007bff;
    }
    .about-text-p1 {
      font-style: italic;
      text-align: center;
      margin-top: -3vh;
    }
    .about-text-p2 {
      font-style: italic;
      text-align: center;
      margin-top: 3vh;
    }

    .section-subtitle {
      position: relative;
      top: -12vh;
      font-size: 11px;
    }

    .blog-tagline {
      position: relative;
      top: -16vh;
    }
    .contact-map {
      position: relative;
      width: 20vh;
      height: 20vh;
    }
    .footer {
      margin-top: 185px;
      height: 115vh;
    }
    .hero-image-block {
      /* position: relative; */
      margin-bottom: 30vh;
    }
    .hero-text-block {
      margin-top: -12vh;
      height: 53vh;
    }
    .hero {
      position: relative;
      height: 128vh;
    }
    .animated-text-section {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 12vh;
      margin-top: 15%;
      margin-bottom: 3vh;

      background-color: #f0f4f8;
    }
    .section-subtitle-s1 {
      position: relative;
      top: -10vh;
      font-size: 11px;
    }
    .client-wrapper {
      margin-top: 1vh;

      height: 10vh;
      margin-bottom: 15%;
    }
    .animated-text {
      font-size: 1.4rem;
    }
    .horizontal {
      width: 60%;
      height: 3px;
      margin-top: 13vh;
    }

    .scroller {
      height: 9vh;
    }
    .service-box-container {
      height: 140vh;
    }
    .service-box-container-s {
      background: #ffffff;
      padding: 60px 40px;
      border-radius: 20px;
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }
    .service-box-container-i {
      background: #ffffff;
      padding: 60px 40px;
      border-radius: 20px;
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }
    .service-box-container-b {
      background: #ffffff;
      padding: 60px 40px;
      border-radius: 20px;
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }
    .service-box-container-t {
      background: #ffffff;
      padding: 60px 40px;
      border-radius: 20px;
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }
    .section-title-i {
      height: 4vh;
      font-size: 1.5rem;
      margin-bottom: 20vh;
      letter-spacing: 1.5px;
      position: relative;
      top: -2vh;
      color: #007bff;
      text-align: center;
      font-weight: bold;
    }
    .blog-section {
      margin-top: 120vh;
    }
    .service-box-container-service {
      background: #ffffff;
      padding: 60px 40px;
      border-radius: 20px;
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }
    .section-title-index {
      height: 4vh;
      font-size: 1.5rem;
      margin-bottom: 14vh;
      position: relative;
      top: -3vh;
      text-align: center;
      color: #007bff;
      font-weight: bold;
    }
    .section-title-blog {
      height: 4vh;
      font-size: 1.5rem;
      margin-bottom: 14vh;
      position: relative;
      top: -3vh;
      text-align: center;
      color: #007bff;
      font-weight: bold;
    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.15); /* transparent background */
  color: #1f1f1f; /* dark arrow color */
  padding: 5px 5px;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px); /* frosted glass effect */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3); /* slightly brighter */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
