body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden; */
}

/* Base styles */
* {
  box-sizing: border-box;
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* Centers the content */
  padding: 0 20px; /* Adds space on the left and right */
  box-sizing: border-box;
}

.full-width {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  background: transparent;
  /* display: flex; */
  /* justify-content: space-between;
  align-items: center;
  overflow: hidden; */
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box; /* Ensures that padding doesn't cause overflow */
  overflow-x: hidden;
}

body.services .navbar{
  background: linear-gradient(90deg, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);

}

.navbar,
.nav-container,
.nav-links,
.navbar ul {
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  padding-left: 20px;
}

.logo img {
  height: 60px;
  transition: height 0.3s ease-in-out;
  max-width: 100%;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.2em;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap; /* Prevent wrapping of navbar items */
  justify-content: center; /* Center the items if they wrap */
  flex-shrink: 0; /* Prevent shrinking of the nav links */
  box-sizing: border-box;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 14px; /* Adjust font size */
  line-height: 150%; /* Set line height */
  transition: opacity 0.3s ease-in-out;
  white-space: nowrap;
}

.navbar a:hover {
  opacity: 0.8;
}

/* Scrolled state */
.navbar.scrolled {
  background: linear-gradient(90deg, rgba(28, 11, 223, 0.7) 0%, rgba(78, 0, 166, 0.7) 50%, rgba(172, 41, 201, 0.7) 100%);
  padding: 0px 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

  top: 10px;
  left: 0px;
  right: 0px;
  width: calc(100% - 60px);
  margin: 0 auto;
  position: fixed;
  z-index: 1000;
}

.navbar.scrolled .logo img {
  height: 60px;
}

/* Adjust navbar for smaller screens */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }

  .navbar ul {
    gap: 1em; 
    flex-wrap: wrap; 
    justify-content: center; 
    overflow-x: hidden;
  }

  .navbar a {
    font-size: 1em; 
    padding: 0.5em 0;
    white-space: nowrap; /* Prevent text from overflowing */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
  }
  
  .hamburger span {
    height: 2px;
    width: 20px;
    background: white;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }
  
  /* Mobile navbar hidden by default */
  .nav-links {
    width: 100%;
    background: linear-gradient(90deg, rgba(28, 11, 223, 0.9) 0%, rgba(78, 0, 166, 0.9) 50%, rgba(172, 41, 201, 0.9) 100%);
    overflow: hidden;
    max-height: 0;
    display: none;
    transition: max-height 0.4s ease-in-out;
  }
  
  .nav-links.active {
    max-height: 500px;
    display: block;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 0;
    gap: 1em
  }

  .navbar ul {
    flex-direction: column;
    gap: 1em;
  }

  .navbar a {
    font-size: 1em;
    padding: 0.5em 0;
  }

  .logo img {
    height: 40px;
  }

  .navbar.scrolled {
    padding: 0.4em 1em;
    width: calc(100% - 30px);
    border-radius: 12px;
    top: 5px;
  }

  .navbar.scrolled .nav-links {
    background: linear-gradient(90deg, rgba(28, 11, 223, 0.7) 0%, rgba(78, 0, 166, 0.7) 50%, rgba(172, 41, 201, 0.7) 100%);
  }

  .navbar.scrolled .logo img {
    height: 40px;
  }

  .no-scroll {
    overflow: hidden;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1em;
  }

  .logo img {
    height: 35px;
  }

  .navbar a {
    font-size: 0.8em;
  }

  .navbar ul {
    gap: 0.5em;
  }

  .navbar.scrolled {
    padding: 0.5em 1.5em;
    border-radius: 20px;
    width: calc(100% - 60px);
  }
}

.section {
  padding: 4em 2em;
  align-items: flex-start;
  display: flex;
  justify-content: center;
}

/* Home Page Hero Section */
#welcome .container {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}

#welcome, #about, #stats{
  background: linear-gradient(90deg, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5em 2em; /* Adjust padding as needed */
  color: white;
  max-width: 100%;
}

#welcome .text {
  flex: 1;
  animation: fadeIn 1s ease forwards;
  max-width: 50%;
}

#welcome .text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* Extra Bold */
  font-size: 48px;
  margin-bottom: 1em; /* Added margin-bottom for spacing */
  margin-top: 2em;
}

#welcome .text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; 
  font-size: 64px;
  margin-bottom: 1.5em; 
}

#welcome .text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 24px;
  margin-top: .01em;
  margin-bottom: 15%;
}

/* Ensure "Get Started" is not underlined */
#welcome .btn {
  padding: 1em 2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; 
  font-size: 24px;
  background: linear-gradient(90deg, #1400FFB3, #6D00EBB3, #CB00F7B3);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none; /* Ensure no underline */
  transition: background 0.3s ease;
}

/* Button hover effect with linear gradient */
#welcome .btn:hover {
  background: linear-gradient(180deg, #80CEFF 0%, #3346F1 100%); /* Top to bottom gradient */
}

/* Welcome Section Image Styling */
#welcome .images {
  flex: 1;
  display: flex;
  justify-content: center;
}

#welcome .images img {
  max-width: 100%;
  height: auto;
  margin-left: 50%;
  margin-top: 2em;
  animation: fadeIn 1s ease;
}

/* Fade-in Animation for the Text */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.btn {
  padding: 0.75em 1.5em;
  background: linear-gradient(90deg, #1400FFB3, #6D00EBB3, #CB00F7B3);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {

  #welcome .container {
    flex-direction: column; /* Stack elements vertically for mobile */
    align-items: center;
    justify-content: center;
  }

  #welcome {
    padding: 3em 1.5em; /* Adjust padding for mobile */
  }

  #welcome .text {
    max-width: 90%; /* Adjust text block width on mobile */
    text-align: center; /* Center-align text on smaller screens */
    margin-bottom: 2em;
  }

  #welcome .text h1 {
    font-size: 36px; /* Reduce font size for mobile */
    margin-bottom: 0.5em;
  }

  #welcome .text h2 {
    font-size: 48px; /* Reduce font size for mobile */
    margin-bottom: 1em;
  }

  #welcome .text p {
    font-size: 18px; /* Smaller text for mobile */
    margin-bottom: 1.5em;
  }

  #welcome .btn {
    padding: 1em 2em;
    font-size: 20px; /* Slightly smaller button text */
    background: linear-gradient(90deg, #1400FFB3, #6D00EBB3, #CB00F7B3);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
  }

  #welcome .images {
    margin-top: 2em;
    width: 100%; /* Ensure image fits in mobile screen */
    display: flex;
    justify-content: center;
  }

  #welcome .images img {
    max-width: 80%; /* Adjust image size to fit mobile */
    height: auto;
    margin: 0;
    animation: fadeIn 1s ease;
  }
}

/* About Us Section Styles */
#about {
  width: 100%;
  padding: 5em 2em; 
  display: flex;
  justify-content: center; 
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; 
}

.about-text {
  flex: 1;
  max-width: 600px; /* Ensure the text does not stretch too wide */
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  animation: fadeIn 1s ease; /* Add fadeIn animation to text */
}

.about-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center; /* Center the image */
}

.about-image img {
  max-width: 100%;
  height: auto;
  margin-left: 30%
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 50px;
}

.about-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px; /* Added bottom margin for spacing */
}

.rolling-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 38px;
  line-height: 50px;
  margin-top: 120px;
  color: #ffffff; /* Optional: Ensure the text is white */
}  

/* Fade-in Animation for the Text */
/* CSS for Fade-In and Fade-Out */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile Version Styles using media query */
@media (max-width: 768px) {

  #about {
    padding: 3em 1.5em; /* Adjust padding for mobile */
  }

  .about-container {
    flex-direction: column; /* Stack text and image vertically on mobile */
    gap: 20px; /* Reduce gap between elements on mobile */
  }

  .about-text {
    max-width: 100%; /* Allow the text to take up full width */
    text-align: center; /* Center the text on smaller screens */
  }

  .about-image {
    max-width: 100%; /* Ensure the image fits in mobile screen */
    height: auto;
    margin-left: 0;
    margin-top: 2em;
    display: flex;
    justify-content: center; /* Center the image */
  }

  .about-title {
    font-size: 28px; /* Reduce font size for mobile */
    text-align: center; /* Center the title on mobile */
  }

  .about-description {
    font-size: 14px; /* Smaller text for mobile */
    line-height: 1.6; /* Adjust line height for better readability */
    text-align: center; /* Center align the description */
  }

  .rolling-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 24px; /* Smaller font size for mobile */
    line-height: 40px;
    margin-top: 20px;
    text-align: center; /* Center align the rolling text */
  }
}


/* Stats Section Styles */
#stats {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center; 

}

.stats-section {
  padding: 40px 20px;
  width: 100%;
}

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  /* max-width: 200px; */
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: #ffffff;
  transition: transform 0.5s ease-in-out;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 16px;
    margin-bottom: 20px;
  }
}


/* What We Do Section Styles */
#what-we-do {
  background-color: #EFECFA;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: black;
}

.heading-container {
  text-align: left;
  margin-bottom: 10px;
}

.heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
}

.subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  padding-bottom: 20px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2em;
}

.card {
  background-color: white; /* Initial white background */
  /* width: 50%; */
  padding: 2em 1em;
  border-radius: 8px;
  box-shadow: -5px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  color: black; /* Initial text color is black */
  min-height: 360px;
}

.card:hover {
  transform: translateY(-10px);
  background: linear-gradient(90deg, #1400FFB3 0%, #6D00EB 50%, #CB00F7 100%); /* Gradient on hover */
  color: white; /* Text turns white on hover */
}

.card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 1em;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.2;
}

.card-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1em;
  padding: 0 10px;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.card:hover .card-description {
  color: white; /* Change the description text to white on hover */
}

/* Button Styles */
.button-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.discover-more-btn {
  padding: .6em 1.5em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(90deg, #1400FFB3, #6D00EBB3, #CB00F7B3);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.discover-more-btn:hover {
  background: linear-gradient(180deg, #80CEFF 0%, #3346F1 100%);
}

.discover-more-btn .arrow {
  margin-left: 10px;
  font-size: 20px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  width: calc(33.333% - 20px);
  display: block; /* Ensures it acts like a container */
  height: 100%;
}

.card-link:hover {
  color: inherit;
}

@media (max-width: 768px) {
  .heading {
    font-size: 28px;
    text-align: center;
  }

  .subheading {
    font-size: 13px;
    text-align: center;
  }

  .cards-container {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 100%;
    padding: 1.5em;
  }

  .card-title {
    font-size: 18px;
  }

  .card-link {
    width: 100%;
  }

  .card-description {
    font-size: 13px;
    margin-bottom: 1.5em;
  }

  .button-container {
    justify-content: center;
    margin-top: 1em;
  }

  .discover-more-btn {
    font-size: 18px;
    padding: 0.5em 1.2em;
  }

  .discover-more-btn .arrow {
    font-size: 18px;
  }
}


/* Why Choose Us Section Styling */
.why-choose-us-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5em 2em;
  background-color: #EFECFA;
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Left Column (Text) */
.text-column {
  flex: 1;
  padding-right: 2em;
}

.heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: #3428BA;
  margin: 0 0 1em 0;
}

.paragraph {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: black;
  line-height: 40px;
  margin: 0;
}

/* Right Column (Card Carousel) */
.wcu-cards-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  height: 100%;
}

.wcu-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Style for all the cards in the carousel */
.wcu-card {
  display: none;
  background: linear-gradient(to bottom, #1400FF 0%, #6D00EB 50%, #CB00F7 90%);
  padding: 2em;
  border-radius: 10px;
  color: white;
  width: 80%;
  max-width: 500px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 100%;
}

.wcu-card:first-child {
  display: flex;
}

.wcu-card-content {
  text-align: center;
  flex-grow: 1;
  margin: 0 2em; /* Adds spacing between content and arrows */
  overflow: hidden;
  text-overflow: ellipsis;
}

.wcu-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

.wcu-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.wcu-card-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: white;
}

/* Arrows */
.wcu-arrow {
  font-size: 30px;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
}

.wcu-arrow-left {
  margin-right: 1em;
}

.wcu-arrow-right {
  margin-left: 1em;
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 3em 1em;
  }

  .content-container {
    flex-direction: column;
    gap: 2em;
    align-items: center;
  }

  .text-column {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .heading {
    font-size: 28px;
    text-align: center;
  }

  .paragraph {
    font-size: 14px;
    line-height: 28px;
    text-align: center;
  }

  /* .wcu-cards-column {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    -webkit-overflow-scrolling: touch;
  } */

  .wcu-cards-column {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }

  .wcu-cards-column::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }

  .wcu-card-container {
    display: flex;
    flex-direction: row;
    gap: 1em;
  }

  .wcu-card-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .wcu-card {
    flex: 0; /* Ensures cards don't stretch */
    width: 80%;
    min-width: 300px; /* Ensures a fixed width for each card */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
  }

  .wcu-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 1em;
  }

  .wcu-card-title {
    font-size: 16px;
  }

  .wcu-card-content{
    margin: 0;
  }
  
  .wcu-card-description {
    font-size: 13px;
    line-height: 20px;
  }

  .wcu-arrow {
    display: none; /* Hide arrows in mobile */
  }
}


/*Our Work and Testimony section*/
.full-width-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0;
}

.our-work-testimony-section .testimonial-container {
  padding: 0; /* or padding: 0 !important; if needed */
}

.our-work-testimony-section {
  background: linear-gradient(to bottom, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  padding: 2em 0;
  color: white;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.testimonial-container .scroll-container {
  width: 100%;
  /* overflow: hidden; */
  /* margin: 0;
  padding: 0; */
  position: relative;
}

.testimonial-container .scroll-row {
  display: flex;
  gap: 1em;
  animation: scroll-left 10s linear infinite;
  /* position: relative; */
  width: max-content;
  /* flex-wrap: nowrap; */
}

.testimonial-container .scroll-row img {
  width: 370px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.testimonial-container .scroll-right {
  animation: scroll-right 20s linear infinite;
}

.testimonial-container .scroll-left {
  animation: scroll-left 20s linear infinite;
}

.our-work-heading{
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  padding: 1.5em 0;
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.testimonial-container{
			position: relative;
			width: 100%;
			min-height: 450px;
}

.testimonial-container .testimonial-contents-wraper{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-contents-wraper .testimonial-header h2{
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  padding: 1.5em 0;
}
.testimonial-contents-wraper .testimonial-header h2::before{
  content: '';
  width: 200px;
  height: 2px;
  background-color: #006994;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.testimonial-contents-wraper .testimonial-testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
  background-color: white;
}
.testimonial-testRow .testItem{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  left: 0;
  padding: 3em 2em 2em 2em;
  background: white;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  color: black;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-testRow .testItem:not(.active){
  top: 0;
  left: -100%;
}
.testimonial-testRow .testItem img{
  width: 80px;
  height: 80px;
  background-color: #650AAF;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: contain;
  margin-bottom: 5px;
  outline: 2px solid #006994;
  outline-offset: 2px;
}
.testimonial-testRow .testItem h3{
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 7px;
}
.testimonial-testRow .testItem h4{
  font-size: 15px;
  font-weight: 600;
  opacity: 0.8;
}
.testimonial-testRow .testItem p{
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 0 20px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
}
.testimonial-contents-wraper .testimonial-indicators{
  position: relative;
  margin-top: 1.5em;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  cursor: pointer;
  
}
.testimonial-contents-wraper .testimonial-indicators .dot{
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.testimonial-contents-wraper .testimonial-indicators .active{
  background-color: #006994;
}

@keyframes next1{
  from{
    left: 0%;
  }
  to{
    left: -100%;
  }
}
@keyframes next2{
  from{
    left: 100%;
  }
  to{
    left: 0%;
  }
}

@keyframes prev1{
  from{
    left: 0%;
  }
  to{
    left: 100%;
  }
}
@keyframes prev2{
  from{
    left: -100%;
  }
  to{
    left: 0%;
  }
}

@media(max-width: 768px){

  .testimonial-container{
    overflow-x: hidden;
  }

  .testimonial-contents-wraper{
    padding: 0 1em;
    width: 100%;
  }

  .testimonial-contents-wraper .testimonial-testRow{
    display: flex;
    gap: 1em;
    padding: 0 1em;
  }

  .testimonial-contents-wraper .testimonial-header h2{
    font-size: 18px;
    margin: 1.5em;
    text-align: center;
  }

  .testimonial-container .testimonial-contents-wraper{
    width: 90%;
    padding-bottom: 1em;
    gap: 1em;
    padding: 0 1em;
    scroll-padding: 0 1em;
  }

  .testimonial-testRow .testItem{
    min-width: 100%;
    padding: 1.2em 1em;
    /* flex: 0 0 calc(100% - 2em); */
    scroll-snap-align: center;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal; */
    flex-shrink: 0;  
  }

  .testimonial-testRow .testItem h3{
    font-size: 16px;
  }

  .testimonial-testRow .testItem h3{
    font-size: 13px;
  }

  .testimonial-testRow .testItem p{
    font-size: 12px;
    padding: 0 10px;
    font-weight: 300;
    letter-spacing: initial;
    line-height: initial;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }
}
/* Contact Us Section */
.contact-us-section {
  background-color: #EFECFA;
  padding: 50px 0;
}

/* Heading and Subheading */
.contact-us-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-us-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 36px;
  color: #333;
}

.contact-us-subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Regular */
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 100px;
}

/* Container for both columns */
.contact-us-container {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column */
.contact-us-left {
  width: 48%;
}

.address p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

/* Google Map */
.google-map iframe{
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #c2c2c2; /* Light gray background */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px; /* Optional: Adds rounded corners */
  margin-top: 50px;
}

.map-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Right Column */
.contact-us-right {
  width: 48%;
}

/* Form */
.contact-form .form-group {
  margin-bottom: 40px;
}

.form-input::placeholder {
  font-size: 14px;
  font-weight: 100;
  color: #999; /* optional: soft grey for placeholder */
  font-family: inherit; /* optional: use same font as textarea */
}

.form-label {
  font-weight: 500;
  font-size: 20px;
  color: #333;
  display: block;
  padding-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  background-color: #8C52FF;
  color: white;
  padding: 15px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-style: italic;
}

.submit-btn:hover {
  background: #3346F1;
}

/* WhatsApp Section */
.whatsapp-section {
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: left;
}

.whatsapp-text {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  text-align: left;
  padding-top: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* adds spacing between icon and text */
  text-decoration: none;
  color: #000000; /* or your desired text color */
  background-color: transparent; 
  border-radius: 8px;
  font-weight: 600;
}

.whatsapp-caption {
  text-align: left;
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.whatsapp-icon {
  width: 55px;
  /* height: 40px; */
  margin-right: 5px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {

  /* Contact Us Section */
  .contact-us-section {
    padding: 30px 10px; /* Reduce padding on smaller screens */
  }

  /* Heading and Subheading */
  .contact-us-header {
    margin-bottom: 30px;
  }

  .contact-us-heading {
    font-size: 28px;
  }

  .contact-us-subheading {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 50px;
  }

  /* Container for both columns */
  .contact-us-container {
    display: block;
    gap: 0;
    justify-content: center;
  }

  /* Left Column */
  .contact-us-left {
    width: 100%;
    margin-bottom: 30px;
  }

  .google-map iframe{
    height: 200px;
    margin-top: 30px;
  }

  .map-placeholder {
    font-size: 18px;
  }

  /* Right Column */
  .contact-us-right {
    width: 100%;
  }

  /* Form */
  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 18px;
  }

  .form-input {
    padding: 10px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* WhatsApp Section */
  .whatsapp-section {
    text-align: center;
    margin-top: 30px;
  }

  .whatsapp-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
  }

  .whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .whatsapp-caption {
    font-size: 16px;
  }

  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }
}

/* Extra Small Screens (Mobile Portrait) */
@media (max-width: 480px) {

  .contact-us-heading {
    font-size: 24px;
  }

  .contact-us-subheading {
    font-size: 12px;
  }

  .contact-us-container {
    padding: 0 10px;
  }

  .contact-us-left,
  .contact-us-right {
    width: 100%;
  }

  .google-map iframe{
    height: 180px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-input {
    padding: 8px;
    font-size: 12px;
  }

  .submit-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .whatsapp-section {
    margin-top: 20px;
  }

  .whatsapp-text {
    font-size: 16px;
  }

  .whatsapp-caption {
    font-size: 14px;
  }
}


/* Footer Background Gradient */
footer {
  background: linear-gradient(to right, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  padding: 50px 20px;
  color: white;
  opacity: 1;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  margin: 10px;
  min-width: 220px; /* Ensure columns are responsive */
}

.footer-logo {
  width: 150px; /* Adjust based on your logo size */
  margin-bottom: 15px;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 15px;
  text-align: center;
}

/* Footer Title */
.footer-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; /* Black */
  font-size: 20px;
  margin-bottom: 15px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* Contact Info */
.contact-info {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 15px;
  margin-bottom: 10px;
}

/* Mobile-specific styles for Footer */
@media (max-width: 768px) {

  footer {
    padding: 30px 15px; /* Reduce padding on mobile for a compact layout */
  }

  /* Footer Content Layout */
  .footer-content {
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center the content */
  }

  .footer-col {
    width: 100%;
    margin: 10px 0;
    min-width: auto; /* Remove min-width to adjust to mobile screen */
  }

  /* Footer Logo */
  .footer-logo {
    width: 120px; /* Adjust logo size for mobile */
    margin-bottom: 15px;
  }

  /* Footer Title */
  .footer-title {
    font-size: 18px; /* Reduce font size for mobile */
    margin-bottom: 10px;
  }

  /* Footer Links */
  .footer-links a {
    font-size: 14px; /* Smaller font size for links */
  }

  .footer-links li {
    margin-bottom: 8px; /* Reduced margin between items */
  }

  /* Copyright */
  .copyright {
    font-size: 14px; /* Smaller font size for mobile */
    text-align: center;
  }

  .contact-info {
    font-size: 14px; /* Adjust font size for mobile */
    margin-bottom: 8px; /* Reduced margin for compact layout */
  }
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {

  .footer-logo {
    width: 100px; /* Adjust logo size for very small screens */
  }

  .footer-title {
    font-size: 16px; /* Further reduce title size */
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 12px; /* Smaller font size for links on very small screens */
  }

  .footer-links li {
    margin-bottom: 6px; /* Reduced margin on very small screens */
  }

  .copyright {
    font-size: 12px; /* Smaller font size for copyright */
  }
  
  .contact-info {
    font-size: 12px; /* Further reduce font size on very small screens */
    margin-bottom: 6px; /* Adjust margin for small screens */
  }
}

/*Our services*/

/* Our Services Hero Section */
#services-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5em 2em;
  background: #EFECFA;
  max-width: 100%;
}

#services-intro .container{
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  /* padding: 5em 2em */
}

.services .services-text {
  flex: 1;
  animation: fadeIn 1s ease forwards;
  max-width: 50%;
}

.services .services-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; 
  font-size: 48px;
  margin-bottom: 1em;
  margin-top: 2em;
  
  background: linear-gradient(to right, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.services-intro .services-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; 
  font-size: 16px;
  line-height: 2;
  margin: 20px 0px;
  text-align: justify;
}

.services-img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.services-img img{
  max-width: 100%;
  height: auto;
  margin-left: 50%;
  margin-top: 2em;
  animation: fadeIn 1s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
} 

/* General mobile adjustments for services-intro */
@media (max-width: 768px) {
  #services-intro {
    flex-direction: column;
    padding: 3em 1.5em;
  }

  .services-intro .container {
    flex-direction: column; /* Stack content vertically on smaller screens */
    align-items: center; /* Center align items */
  }

  /* Adjusting the text section */
  .services .services-text {
    max-width: 90%; /* Allow more space for text */
    text-align: center; /* Center text on smaller screens */
  }

  .services .services-text h1 {
    font-size: 36px; /* Adjust font size for mobile */
    margin-top: 1em;
    padding-top: 2em;
    background: none; /* Remove background gradient for better readability */
    text-align: center; /* Center-align text on mobile */
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
  }

  .services-intro .services-text p {
    font-size: 14px; /* Smaller font size for mobile */
    line-height: 1.6; /* Adjust line-height for readability */
    text-align: center; /* Center text on smaller screens */
    margin-top: 1em;
  }

  /* Adjust image section */
  .services .image {
    /* width: 100%;
    margin-top: 1em;
    text-align: center;  */
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
    padding: 2em;
  }

  .services .services-img img {
    max-width: 80%; /* Adjust image size for mobile */
    height: auto;
    margin: 0 auto;
    animation: none; /* Remove animation for mobile for performance */
  }

  .services .service-title {
    font-size: 20px;
    padding: 0 10px;
  }

  .services .services-details p{
    font-size: 14px;
    padding: 0 10px;
  }

  #why-fb h3{
    font-size: 18px;
  }

  #why-fb p{
    font-size: 12px;
  }

  #why-fb h2{
    font-size: 24px;
  }
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
  .services .services-text h1 {
    font-size: 28px; /* Further reduce the size for very small screens */
    color: #333;
  }

  .services-intro .services-text p {
    font-size: 12px; /* Further reduce font size */
    margin-top: 1em;
  }

  .services .image img {
    max-width: 90%; /* Make image even smaller on very small screens */
  }
}

.services-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.services-section .container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.services-menu {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.services-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0;
  margin-bottom: 10px;
  background-color: #f3f3f3;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
  line-height: 1.4;
  word-break: break-word;
  flex-wrap: wrap;
  padding: 10px 0px;
}

.services-menu li:hover,
.services-menu li.active {
  background-color: #d6d6ff; 
}

.services-menu li span {
  float: right;
}

.services-details {
  flex: 2;
  min-width: 300px;
}

.service-item {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.service-item.active {
  display: block;
}

.service-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.service-item p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #7103ED;
  position: relative;
  margin-bottom: 10px;
}

.services-head {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 36px;
  color: #7103ED;
  margin-bottom: 20px; /* optional spacing */
}

.services-underline {
  width: 275px;
  height: 5px;
  background: linear-gradient(to right, #0033FF 0%, #D420A7 100%);
  margin-left: 0.1em; /* start slightly under the “S” in SERVICES */
  margin-bottom: 30px; /* space before the list */
}

.services-separator {
  width: 1px;
  background-color: #BABABA;
  align-self: stretch;
}

.services-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.service-text{
  padding: 0px 10px;
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 40px 20px;
  }

  .services-section .container,
  .services-container {
    flex-direction: column;
    gap: 20px;
  }

  .services-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .services-menu {
    max-width: 100%;
    width: 100%;
  }

  .services-menu li {
    font-size: 16px;
    padding: 12px 16px;
  }

  .services-details {
    width: 100%;
    min-width: unset;
  }

  .service-title,
  .services-head {
    font-size: 28px;
    text-align: center;
  }

  .services-underline {
    width: 180px;
    margin: 0 auto 20px auto;
  }

  .service-item img {
    margin-bottom: 15px;
  }

  .service-item p {
    font-size: 1em;
    text-align: left;
  }

  .services-separator {
    display: none;
  }

  .service-text {
    padding: 0 5px;
    font-size: 15px;
  }
}


.work-process {
  padding: 60px 20px;
  background: #EFECFA; /* optional dark background to contrast the gradient */
}

.work-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 20px;
  background: linear-gradient(to right, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  text-align: center;
  color: white;
  position: relative;
}

/* .top-right-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px; 
  height: auto;
  z-index: 1;
} */

.full-width-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}


.work-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  color: white;
  margin-bottom: 10px;
  margin-top: 0;
}

.work-header p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: white;
  margin-bottom: 40px;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0px;
  flex-wrap: wrap;
}

.process-step {
  width: 190px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  color: white;
}

.step-number {
  font-family: 'Cambria Math', serif;
  font-size: 64px;
  letter-spacing: 2%;
  align-self: flex-end;
  color: transparent;
  -webkit-text-stroke: 2px white; 
  margin-bottom: 100%; 
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-content img {
  width: 50px;
  height: 50px;
  margin-bottom: 0px;
  display: block;
}

.step-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-align: left;
}


.why-choose-fb {
  padding: 60px 20px;
  padding-top: 1px;
  padding-bottom: 60px;
  text-align: center;
  background-color: #f8f8f8; /* optional section background */
  display: none;
}

.why-choose-fb.active {
  display: block;
}

.why-choose-fb h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(to right, #4400FF 0%, #7500A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  line-height: 1.4;
}

.why-fb-header{
  margin-bottom: 40px;
}


.why-choose-fb h2 span {
  display: block;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: linear-gradient(to bottom, #4D3EFF 0%, #8828F4 50%, #CA50E5 100%);
  border-radius: 20px;
  padding: 30px 20px;
  color: white;
  text-align: center;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25); /* ← this is the key update */
  transition: transform 0.2s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
  color: white;
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Semibold */
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 10px;
}

.why-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 150%;
  text-align: center;
  margin: 0;
}

.why-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;           
  padding: 0 20px;          
  box-sizing: border-box;  
}

.contact, .footer {
  padding: 4em 2em;
  background: #DED6FE;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background: #4E00A6;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  background: linear-gradient(90deg, #1C0BDF 0%, #4E00A6 50%, #AC29C9 100%);
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .services-section {
    flex-direction: column;
  }
}
