/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    justify-content: space-between;
}
.contact-info span {
    margin-right: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff9800;
}
/* hero section */

.custom-shifting-section {
  padding: 40px 20px;
  background: #f9f9ff;
  border-radius: 15px;
}
.custom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10%;
}
.custom-content {
  max-width: 600px;
}
.custom-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
.custom-description {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}
.custom-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-call-btn, .custom-explore-btn {
  background-color: #198754;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.custom-explore-btn {
  background-color: white;
  color: #000000;
  border: 2px solid #000000;
}
.custom-stats {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-stats div h2 {
  font-size: 2rem;
  margin: 0;
}
.custom-stats div p {
  margin: 5px 0;
  color: gray;
}
.custom-image img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}



/* quote */

.form-container {
  max-width: 1100px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid #ff5c00; /* Added border */
}
.form-label {
  font-weight: bold;
}
.price-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-value {
  font-weight: bold;
  color: #ff5c00;
}
.submit-btn {
  background-color: #ff5c00;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
  border-radius: 5px;
  border: none;
  width: 100%;
  transition: 0.3s ease-in-out;
}
.submit-btn:hover {
  background-color: #e04b00;
}
.image-section {
  text-align: center;
}
.image-section img {
  max-width: 100%;
  height: auto;
  border-left: 3px solid #ff5c00; /* Border added for separation */
  padding-left: 20px;
}

/* map */


body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f8f9fa;
}
h2 {
  color: #ffffff;
}
.map-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}
.india-map {
  width: 100%;
  height: auto;
}
.route {
  stroke: red;
  stroke-width: 2;
  fill: none;
}
/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: max-height 0.3s ease-in-out, visibility 0.3s;
    overflow: hidden;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
    color: #ff9800;
    border-bottom: 2px solid #ff9800;
}

.track-button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.track-button:hover {
    background-color: #e68900;
}
.mb-3 {
  text-align: left;
}
/* Hamburger Menu Styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}


/* Hero Section */
.hero {
  background: url('heroimg.webp') no-repeat center center/cover;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps the image fixed when scrolling */
}

/* Heading */
.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Span inside heading */
.hero span {
  color: #ff9800;
}

/* Paragraph */
.hero p {
  margin: 1.5rem 0;
  font-size: 1.2rem;
}

/* Button Styling */
.hero .btn {
  background: #ff9800;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero .btn:hover {
  background: #e68900;
}

/* Responsive Design */



/* working process */

.working-process {
  padding: 50px 20px;
}

.sub-heading {
  color: rgb(0, 0, 0);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 28px;
  color: #132641;
  margin-bottom: 40px;
}

/* Steps Container */
.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Step Box */
.step {
  background: #000000;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.step:hover {
  transform: translateY(-5px);
}

/* Circular Icon */
.icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Ensures a perfect circle */
  border: 3px dashed red; /* Dashed border */
  background: white;
  overflow: hidden; /* Ensures contents stay inside the circle */
}

/* Icon */
.icon {
  font-size: 40px;
  color: #1def26;
}

/* marque */

.marquee-container {
  width: 100%;
  background-color: #F44336; /* Red background */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
}
.marquee-content {
  display: flex;
  gap: 30px; /* Space between items */
  animation: marquee 10s linear infinite;
}
.marquee-content span {
  color: white;
  font-size: 18px;
  font-weight: bold;
}
@keyframes marquee {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-50%);
  }
}
/* Step Number */
.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #a1a1a1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Step Title */
.h3 {
  font-size: 18px;
  margin: 10px 0;
  color: rgb(255, 255, 255);
}

/* Step Description */
p {
  font-size: 14px;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .steps {
      justify-content: space-around;
  }
}



/* Section Container */
.choose-us-white {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

/* Section Title */
.choose-us-white .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.choose-us-white .section-title span {
  color: #00b894; /* green-blue highlight */
}

/* Flex Layout */
.features-white-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Feature Card */
.feature-white-card {
  width: 300px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
  transform: translateY(40px);
}

.feature-white-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Icon */
.feature-white-card i {
  font-size: 36px;
  color: #00b894;
  margin-bottom: 15px;
}

/* Heading */
.feature-white-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Description */
.feature-white-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .feature-white-card {
    width: 100%;
  }
}



/* Service Cards */
.services-white {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.services-white .section-tagline {
  color: #00b894;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.services-white .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.services-white .section-title span {
  color: #00b894;
}

/* Grid Layout */
.service-white-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Service Card */
.service-white-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.service-white-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

/* Icon */
.service-white-icon {
  font-size: 36px;
  color: #00b894;
  margin-bottom: 15px;
}

/* Titles & Description */
.service-white-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.service-white-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .services-white .section-title {
    font-size: 28px;
  }
}


/* .testimonials start */
.testimonials {
  background: #ffffff;
  /* padding: 80px 20px; */
  text-align: center;
}

.testimonials .section-tagline {
  color: #00b894;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonials .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.testimonials .section-title span {
  color: #00b894;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Testimonial Card */
.testimonial-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 16px;
  color: #222;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

/* Responsive Title Size */
@media (max-width: 768px) {
  .testimonials .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-content p {
    font-size: 15px;
  }
}

/* blog section */

.blog {
  background: #ffffff;
  /* padding: 80px 20px; */
  text-align: center;
}

.blog .section-tagline {
  color: #00b894;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog .section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
}

.blog .section-title span {
  color: #00b894;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.blog-summary {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.blog-link {
  text-decoration: none;
  color: #00b894;
  font-weight: 500;
  transition: color 0.3s;
}

.blog-link:hover {
  color: #007965;
}

@media (max-width: 768px) {
  .blog .section-title {
    font-size: 28px;
  }
}

/* award section */
.awards {
  background: #ffffff;
  /* padding: 80px 20px; */
  text-align: center;
}

.awards .section-tagline {
  color: #00b894;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.awards .section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
}

.awards .section-title span {
  color: #00b894;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.award-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-icon {
  font-size: 40px;
  color: #00b894;
  margin-bottom: 20px;
}

.award-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.award-description {
  font-size: 15px;
  color: #555;
}

@media (max-width: 768px) {
  .awards .section-title {
    font-size: 28px;
  }
}
/* team section  */
.team {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.team .section-tagline {
  color: #00b894;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.team .section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
}

.team .section-title span {
  color: #00b894;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-name {
  font-size: 20px;
  color: #222;
  font-weight: 600;
}

.team-role {
  color: #00b894;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 14px;
  color: #555;
}
/* image section */

.service-images {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.service-images .section-tagline {
  color: #00b894;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-images .section-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 40px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background-color: #fefefe;
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-caption {
  padding: 20px;
  background: #fff;
  text-align: left;
}

.image-caption h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}

.image-caption p {
  font-size: 14px;
  color: #555;
}

/* pet lover */

.pets-lover-modern {
  background: linear-gradient(to right, #fff, #fdf8f5);
  padding: 100px 20px;
}

.pets-modern-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.pets-modern-image {
  flex: 1 1 500px;
  text-align: center;
}

.pets-modern-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.pets-modern-text {
  flex: 1 1 500px;
  color: #333;
}

.badge {
  display: inline-block;
  background: #ffebe3;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.modern-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
}

.modern-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.modern-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.modern-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.modern-list li::before {
  content: "✔";
  color: #27ae60;
  position: absolute;
  left: 0;
  top: 0;
}

.modern-btn {
  display: inline-block;
  background-color: #ff6f61;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.modern-btn:hover {
  background-color: #e65c4f;
}

/* Responsive */
@media (max-width: 768px) {
  .pets-modern-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .pets-modern-text {
    text-align: center;
  }

  .modern-title {
    font-size: 28px;
  }
}



/* Hero Section */
.hero {
    background: url('heroimg.webp') no-repeat center center/cover;
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero span {
    color: #ff9800;
}

.hero p {
    margin: 1.5rem 0;
    font-size: 1.2rem;
}

.hero .btn {
    background: #ff9800;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background: #e68900;
}

/* Service Cards */
.service-cards {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */

/* General Styling */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.business-mission {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.mission-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mission-header h2 span {
    color: #ff9800;
}

.mission-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.ceo-message {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #333;
}

.ceo-message strong {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.stats {
    text-align: center;
    margin: 5px 10px;
}

.stats h3 {
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 5px;
}

.stats p {
    font-size: 1rem;
    color: #333;
}

.image-container {
    flex-basis: 100%;
    margin: 20px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Video Section */
.video-section {
    margin-top: 30px;
}

.play-button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover {
    background-color: #e68900;
}

  .features-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    flex-wrap: wrap;
  }
  .features-content {
    flex: 1;
    padding: 20px;
  }
  .features-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
  }
  .features-content p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
  }
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .features-list li img {
    width: 50px;
    margin-right: 15px;
  }
  .features-list li .text {
    flex: 1;
  }
  .features-list li .text h4 {
    margin: 0;
    font-size: 16px;
  }
  .features-list li .text p {
    margin: 5px 0 0;
    color: #777;
  }
  .features-image {
    flex: 1;
    text-align: center;
    margin-top: 20px;
  }
  .features-image img {
    max-width: 100%;
    height: auto;
  }

  /* Responsive Design */
  
  @media (max-width: 480px) {
    .features-content h2 {
      font-size: 22px;
    }
    .features-list li .text h4 {
      font-size: 14px;
    }
    .features-list li img {
      width: 40px;
    }
    .main-heading {
        font-size: 22px;
    }
    
    .step {
       max-width: 50%;
       padding: 10px;
    }
  
    .icon-container {
        width: 80px;
        height: 80px;
    }
  
    .icon {
        font-size: 30px;
    }
  
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    .hero h1 {
        font-size: 2rem;
    }
  
    .hero p {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
  
    .hero .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
  
    .hero {
        padding: 0 0.5rem;
        background-size: cover; /* Ensure the image adjusts well for very small screens */
        width: 100%;
    }
  }

  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  
  .section-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
  }
  
  .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* flex-direction: column; */
  }
  
  .step {
    flex: 1;
    max-width: 49%;
    padding: 10px;
    text-align: center;
    position: relative;
  }
  
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10%;
    width: 40px;
    height: 2px;
    background-color: #ccc;
    z-index: -1;
  }
  
  .step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff0000;
  }
  
  .step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: #a1a1a1;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50%;
  }
  
  .step-title {
    font-size: 18px;
    font-weight: bold;
    color: #0d0d0d;
    margin-bottom: 10px;
  }
  
  .step-description {
    font-size: 14px;
    color: #777;
  }
  
  
  /* video section */

  .shifting-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: #fff;
}
.shifting-text {
    max-width: 40%;
}
.shifting-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}
.shifting-text p {
    font-size: 18px;
    color: #555;
}
.shifting-video-container {
    width: 55%;
    position: relative;
}
.shifting-video-container video {
    width: 100%;
    border-radius: 10px;
}
.shifting-pause-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
/* testimonial */


.review-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}
.review-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.review-subtitle {
    color: rgb(0, 0, 0);
    font-size: 16px;
    margin-bottom: 40px;
}
.swiper-container {
    width: 100%;
    padding-bottom: 50px;
}
.swiper-slide {
    background: #000000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.review-card {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.review-text {
    font-size: 16px;
    margin-bottom: 10px;
}
.review-name {
    font-weight: bold;
    font-size: 18px;
}
.review-company {
    color: gray;
    font-size: 14px;
}
.swiper-button-next,
.swiper-button-prev {
    color: black;
}
/* General Styles */

  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  .section-tagline {
    font-size: 70px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .service-card {
    background-color: #000000;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: left;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .service-card.active {
    background-color: #000000;
    color: #fff;
  }
  
  .service-card.active .service-icon {
    color: #fff;
  }
  
  .service-icon {
    font-size: 36px;
    color: #13f112;
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }
  
  .service-description {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .custom-container {
      display: block;
    }
    .shifting-container {
      display: block;
      width: 100%;
    }
    .shifting-pause-button {
      position: absolute;
      bottom: 5%;
      right: 70%;
      cursor: pointer;
      background: white;
      border-radius: 50%;
      padding: 2px;
    }
    #shiftingVideo {
      width: 200%;
    }
    .shifting-video-container {
      max-width: 100%;
    }
    .shifting-text {
        max-width: 100%;
    }
    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .step-title {
      font-size: 16px;
    }
    .steps {
      /* flex-direction: column; */
      /* align-items: center; */
      /* flex-direction: column; */
      gap: 5px;
    }
    .choose-us {
        padding: 10px 4px;
    }
    .working-process {
      padding: 10px 5px;
    }
    .feature-box {
      background: rgba(255, 255, 255, 0.05);
      padding: 10px;
    }
    .step-icon {
      position: relative;
      width: 80px;
      height: 80px;
    }    

    .step {
      max-width: 48%;
      padding: 5px;
    }
  
    .step:not(:last-child)::after {
      display: none;
    }
    .features-section {
      flex-direction: column;
      padding: 20px;
    }
    .features-content {
      text-align: center;
    }
    .features-list li {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .features-list li img {
      margin-bottom: 10px;
    }
    .nav-links {
      display: none; /* Hide by default */
      flex-direction: column;
      position: absolute;
      top: 78px;
      right: 0;     
      gap: 20px; 
      background-color: #ffffffba;
      width: 100%;
      /* border: 1px solid #ddd; */
      text-align: right;
    }

    .nav-links li {
      text-align: center; /* Show the nav when active */
    }
    .nav-links.active {
      display: flex; /* Show the nav when active */
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background-color: #333;
      margin: 4px 0;
    }   

    /* .hamburger .bar {
        height: 3px;
        width: 25px;
        background-color: #333;
        margin: 4px 0;
    } */

    .track-button {
        display: none;
    }

    .service-cards {
      flex-direction: column;
      align-items: center;
    }
    .image-section {
        margin-top: 20px;
        border-left: none;
        padding-left: 0;
    }
    .custom-container {
        flex-direction: row;
        text-align: left;
    }
    .custom-content {
        flex: 1;
        margin-right: 20px;
    }
    .custom-buttons {
        flex-direction: row;
        gap: 15px;
    }
    .custom-stats {
        flex-direction: row;
        gap: 40px;
    }
  }
  
  @media (max-width: 350px) {
    .hero {
      width: 100%;
    }
    .working-process {
      padding: 10px 5px;
    }
    .choose-us {
        padding: 10px 4px;
    }
    .feature-box {
      background: rgba(255, 255, 255, 0.05);
      padding: 2px;
      max-width: 90%;
    }
    .service-grid {
      grid-template-columns: 1fr;
    }
    .step-icon {
      width: 60px;
      height: 60px;
    }
    .step-title {
      font-size: 14px;
    }
    .step {
      max-width: 49%;
    }
    .service-card {
      padding: 10px;
      width: 90%;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-icon {
      font-size: 24px;
    }
    .service-title {
      font-size: 14px;     
    }

  }
    