:root {

  /**
   * colors
   */

  --international-orange-engineering: hsl(1, 91%, 37%);
  --cadet-blue-creyola: hsl(222, 14%, 69%);
  --oxford-blue-1: hsl(222, 47%, 15%);
  --oxford-blue-2: hsl(222, 44%, 14%);
  --oxford-blue-3: hsl(222, 50%, 11%);
  --sonic-silver: hsl(0, 0%, 44%);
  --space-cadet: hsl(222, 44%, 18%);
  --pastel-pink: hsl(1, 53%, 75%);
  --eerie-black: hsl(0, 0%, 15%);
  --light-gray: hsl(0, 0%, 80%);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-chakra-petch: 'Chakra Petch', sans-serif;
  --ff-mulish: 'Mulish', sans-serif;
  
  --fs-1: 3.5rem;
  --fs-2: 3rem;
  --fs-3: 2.4rem;
  --fs-4: 1.8rem;
  --fs-5: 1.4rem;
  --fs-6: 1.2rem;
  
  --fw-400: 400;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * box shadow
   */

  --shadow: 0px 0px 100px 0px hsl(216, 9%, 90%);

  /**
   * border radius
   */

  --radius-pill: 100px;
  --radius-circle: 50%;

  /**
   * transition
   */

  --transition: 0.25s ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}
/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
button { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

address { font-style: normal; }

html {
  font-family: var(--ff-mulish);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.5;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }


/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.material-symbols-rounded {
  --fs: 1em;
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 40;
  font-size: var(--fs);
  width: 1em;
  overflow: hidden;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

.section-subtitle {
  max-width: max-content;
  font-family: var(--ff-chakra-petch);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-block-end: 12px;
  margin-inline: auto;
}

.section-subtitle::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 30px;
  margin-block-end: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section-subtitle.\:dark { color: var(--white); }

.section-subtitle.\:dark::before { background-image: url('../images/text-bars-light.png'); }

.section-subtitle.\:light { color: var(--international-orange-engineering); }

.section-subtitle.\:light::before { background-image: url('../images/text-bars-dark.png'); }

.section-title { text-align: center; }

.h1,
.h2,
.h3,
.display-1 {
  font-family: var(--ff-chakra-petch);
  font-weight: var(--fw-700);
  text-transform: uppercase;
}

.display-1 { font-size: var(--fs-1); }

.h1 {
  color: var(--white);
  font-size: var(--fs-2);
  line-height: 1.1;
  letter-spacing: 1px;
}

.h2,
.h3 {
  color: var(--eerie-black);
  font-weight: var(--fw-600);
  line-height: 1.2;
}

.h2 { font-size: var(--fs-3); }

.h3 { font-size: var(--fs-4); }

.btn {
  background-color: var(--international-orange-engineering);
  color: var(--white);
  max-width: max-content;
  font-family: var(--ff-chakra-petch);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-5px);
  background-color: var(--oxford-blue-3);
  border-color: var(--white);
}

/* Base .btn should include transitions */
.btn {
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.move-anim { animation: moving 2s ease-in-out infinite alternate; }

@keyframes moving {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

.section { padding-block: var(--section-padding); }

.btn-link {
  font-family: var(--ff-chakra-petch);
  text-transform: uppercase;
  color: var(--international-orange-engineering);
  font-weight: var(--fw-700);
}

.w-100 { width: 100%; }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-scrollbar {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 20px;
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar { height: 16px; }

.has-scrollbar::-webkit-scrollbar-track {
  background-color: var(--pastel-pink);
  border-radius: 20px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--international-orange-engineering);
  border-radius: 20px;
  border: 3px solid var(--pastel-pink);
}

.has-scrollbar::-webkit-scrollbar-button { width: 15%; }

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/
 /* Header Styles */
       .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(20px);
        padding: 0.6rem 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .header.scrolled {
        padding: 0.4rem 0;
        background: rgba(255, 255, 255, 0.995);
        box-shadow: 0 5px 40px rgba(0, 0, 0, 0.12);
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
      .logo {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
        line-height: 1;
        flex-shrink: 0;
    }
    
    .logo-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
        color: #3b82f6;
        position: relative;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    
    .logo:hover .logo-icon {
        transform: scale(1.1);
    }
    
    .logo-text {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        font-size: 1.4rem;
        line-height: 1;
        white-space: nowrap;
    }
    
    .logo-my {
        color: #3b82f6;
    }
    
    .logo-garage {
        color: #ef4444;
    }

    /* Desktop */
    @media (min-width: 769px) {
        .logo {
            margin-right: auto;
        }
        
        .logo-wrapper {
            gap: 0.6rem;
        }
        
        .logo-text {
            font-size: 1.5rem;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .logo {
            margin-right: auto;
            max-width: 180px;
        }
        
        .logo-wrapper {
            gap: 0.4rem;
        }
        
        .logo-icon {
            font-size: 1.4rem;
        }
        
        .logo-text {
            font-size: 1.1rem;
            gap: 0.1rem;
        }
    }
    
    @media (max-width: 480px) {
        .logo {
            max-width: 150px;
        }
        
        .logo-icon {
            font-size: 1.2rem;
        }
        
        .logo-text {
            font-size: 1rem;
        }
        
        .logo-wrapper {
            gap: 0.3rem;
        }
    }

    @media (max-width: 360px) {
        .logo {
            max-width: 140px;
        }
        
        .logo-text {
            font-size: 0.9rem;
        }
        
        .logo-icon {
            font-size: 1.1rem;
        }
    }
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    
    .nav-link {
        font-weight: 500;
        color: #374151;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #ef4444);
        border-radius: 10px;
        transform: translateX(-50%);
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .nav-link:hover {
        color: #3b82f6;
        transform: translateY(-2px);
    }
    
    .nav-link:hover::after {
        width: 100%;
        opacity: 1;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #3b82f6, #ef4444);
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.85rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .nav-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    }
    
    .nav-cta:hover::before {
        left: 100%;
    }
    
    /* New Hamburger Style - Dot Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        width: 32px;
        height: 32px;
        position: relative;
        z-index: 1001;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 50%;
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }
    
    .hamburger span {
        width: 4px;
        height: 4px;
        background: #3b82f6;
        border-radius: 50%;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger:hover {
        background: rgba(59, 130, 246, 0.1);
        border-color: rgba(59, 130, 246, 0.2);
        transform: scale(1.1);
    }
    
    .hamburger.active {
        background: rgba(239, 68, 68, 0.1);
        border-color: rgba(239, 68, 68, 0.3);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(5px) scale(1.2);
        background: #ef4444;
    }
    
    .hamburger.active span:nth-child(2) {
        transform: scale(0);
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-5px) scale(1.2);
        background: #ef4444;
    }
    
    /* Alternative Hamburger Style - Circle Lines */
    .hamburger.alternative {
        gap: 4px;
    }
    
    .hamburger.alternative span {
        width: 16px;
        height: 2px;
        border-radius: 1px;
        background: #3b82f6;
        transition: all 0.3s ease;
    }
    
    .hamburger.alternative.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: #ef4444;
    }
    
    .hamburger.alternative.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.alternative.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: #ef4444;
    }
    
    /* Mobile Styles - Compact Menu */
    @media (max-width: 968px) {
        .hamburger {
            display: flex;
        }
        
        .nav-menu {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 240px;
            background: rgba(255, 255, 255, 0.98);
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.15);
            margin: 0;
            padding: 1.5rem;
            backdrop-filter: blur(25px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }
        
        .nav-menu.active {
            right: 20px;
        }
        
        .nav-menu li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0.5rem 0;
        }
        
        .nav-menu li:last-child {
            border-bottom: none;
            padding-top: 1rem;
        }
        
        .nav-link {
            font-size: 0.95rem;
            padding: 0.5rem 0;
            display: block;
            width: 100%;
        }
        
        .nav-cta {
            margin-top: 0;
            padding: 0.7rem 1.5rem;
            width: 100%;
            text-align: center;
            font-size: 0.9rem;
        }
    }
    
    /* Content spacer to account for fixed header */
    .header-spacer {
        height: 70px;
    }
        
        /*Arrorw style*/
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: var(--international-orange-engineering);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: var(--oxford-blue-3);
}

/*/Testimoni*/
.testimonial-section {
  padding: 50px 20px;
  background: #f5f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-title {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 30px;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.swiper-slide:hover {
  transform: scale(1.02);
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0 5px;
  color: #333;
}

.review-stars {
  color: #f39c12;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 1.5rem;
  }
  .swiper-slide {
    padding: 20px;
  }
}
.swiper-pagination-bullet {
  background: #333;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #f44336;
  opacity: 1;
}
.swiper-pagination {
  position: relative;
  margin-top: 20px; /* Adjust this value to move it lower */
  text-align: center;
}
@media (max-width: 768px) {
  .swiper-pagination {
    margin-top: 30px;
  }
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
/* About Section Scoped Styles */
#about .about-section {
  background: linear-gradient(145deg, #101920, #1e2c38);
  padding: 60px 20px;
  border-radius: 20px;
  color: #eee;
  font-family: inherit;
}

#about .about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

#about .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

#about .about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

#about .section-subtitle {
  font-size: 0.9rem;
  color: #fcb900;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#about .section-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

#about .small-section-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

#about .about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  font-size: 0.9rem;
}

#about .about-stats li {
  flex: 1 1 120px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 0 0 transparent;
}

#about .about-stats li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#about .about-stats li strong {
  display: block;
  font-size: 1.4rem;
  color: #00e676;
  margin-bottom: 5px;
  font-weight: bold;
}
/*-----------------------------------*\
  #WORK
\*-----------------------------------*/
/* Container and Typography */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Grid Layout */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Card Styles */
.work-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.work-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Image */
.card-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-card:hover .card-banner img {
  transform: scale(1.1);
}

/* Content */
.card-content {
  padding: 1.2rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

/* Pricing Layout */
.card-price {
  display: block;
  text-align: center;
  margin: 1rem auto;
  max-width: 95%;
  padding: 0 10px;
}

/* Discounted Price Badge */
.discounted-price {
  padding: 10px 20px;
  font-size: 1.05em;
  font-weight: bold;
  color: white;
  border-radius: 999px;
  display: inline-block;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  animation: blinkGlow 2s infinite ease-in-out;
  white-space: normal;         /* ✅ Allows line breaks */
  overflow-wrap: break-word;   /* ✅ Wrap long text */
  word-wrap: break-word;
  line-height: 1.4;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 255, 150, 0.4);
}

/* Optional: Specific Type Styling */
.service-repair {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

/* Glow + Blink Animation */
@keyframes blinkGlow {
  0% {
    box-shadow: 0 0 12px rgba(72, 239, 130, 0.7), 0 0 20px rgba(72, 239, 130, 0.5);
    opacity: 1;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(72, 239, 130, 1), 0 0 30px rgba(72, 239, 130, 0.8);
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 12px rgba(72, 239, 130, 0.7), 0 0 20px rgba(72, 239, 130, 0.5);
    opacity: 1;
    transform: scale(1);
  }
}

/* Button */
.card-btn {
  background-color: #d50000;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.card-btn:hover {
  background-color: #aa0000;
  transform: scale(1.1);
}

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

  .card-title {
    font-size: 1rem;
  }

  .discounted-price {
    font-size: 0.95em;
    padding: 8px 16px;
  }

  .card-btn {
    width: 44px;
    height: 44px;
  }
}
.original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95em;
  margin-right: 0.5rem;
}



  /**
   * ABOUT
   */

  .about-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-item { padding-block: 20px; }

  /**
   * WORK
   */

  .scrollbar-item { min-width: calc(50% - 15px); }


/* WhatsApp Button Styles */
.whatsapp-icon {
  font-family: 'Font Awesome 5 Brands';
  font-size: 30px;
}

.whatsapp-float {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999;
}

.whatsapp-float a {
  display: block;
  background-color: green;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float a:hover {
  background-color: #25d366;
  animation: none; /* Stops animation on hover */
}

/* Keyframes for bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.brand-slider {
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
}

.brand-slider h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Auto-fill based on screen size */
    grid-gap: 10px;
    animation: slide 30s linear infinite; /* Slower animation to show all logos */
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.slide img {
    max-width: 150px; /* Larger image size */
    height: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Adjust based on content width */
    }
}

@media (max-width: 768px) {
    .slider-track {
        grid-template-columns: repeat(12, 1fr);
    }

    .slide img {
        max-width: 120px; /* Adjusted image size for tablets */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .slider-track {
        grid-template-columns: repeat(8, 1fr); /* Adjust for mobile screens */
    }

    .slide img {
        max-width: 100px; /* Adjusted image size for mobile */
        padding: 10px;
    }
}
 /*new css style*/
 
 
  /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #111;
            color: white;
        }

        .bike-hero-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .bike-slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bike-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .bike-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            filter: blur(2px);
            transform: scale(1.02);
        }

        .bike-slide.active {
            opacity: 1;
        }

        .bike-slide-1 {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/work-1.jpg');
        }

        .bike-slide-2 {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/work-2.jpg');
        }

        .bike-slide-3 {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/work-3.jpg');
        }

        .bike-slide-4 {
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/service5.webp');
        }

        .bike-hero-content {
            position: relative;
            z-index: 10;
            color: white;
            text-align: center;
            padding: 2rem;
            width: 100%;
        }

        .bike-hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            letter-spacing: -1px;
        }

        .bike-hero-subtitle {
            font-size: 2.5rem;
            color: #f87171;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            display: block;
        }

        .bike-hero-description {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: #e5e7eb;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            line-height: 1.6;
        }

        .bike-hero-checklist {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            flex-wrap: nowrap;
            font: 0.75rem/1.2 Poppins, sans-serif;
            text-transform: uppercase;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .bike-checklist-item {
            display: flex;
            align-items: center;
            gap: .4rem;
            padding: .5rem .8rem;
            border-radius: 1.5rem;
            background: rgba(17, 17, 17, 0.7);
            color: #fff;
            font-weight: 600;
            letter-spacing: .5px;
            transition: .3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        .bike-checklist-item:hover {
            transform: translateY(-2px);
            background: rgba(30, 30, 30, 0.8);
        }

        .bike-checklist-icon {
            color: #f87171;
            font-size: .75rem;
        }

        .bike-hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }

        .bike-hero-btn {
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            transition: .3s;
            font: 1.1rem/1.2 "Poppins", sans-serif;
            text-decoration: none;
            cursor: pointer;
        }

        .bike-btn-primary {
            background: #dc2626;
            color: #fff;
            border: none;
        }

        .bike-btn-primary:hover {
            background: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(220,38,38,.3);
        }

        .bike-btn-secondary {
            border: 2px solid rgba(255,255,255,.2);
            color: #fff;
            background: transparent;
        }

        .bike-btn-secondary:hover {
            background: rgba(255,255,255,.1);
            transform: translateY(-3px);
        }

        .bike-trust-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 0.85rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            max-width: 260px;
            margin: 0 auto;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bike-trust-badge span:first-child {
            color: #f59e0b;
            font-size: 0.8rem;
        }

        /* Slider Dots */
        .bike-slider-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 20;
        }

        .bike-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bike-slider-dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .bike-hero-title {
                font-size: 3.5rem;
            }
            
            .bike-hero-subtitle {
                font-size: 2rem;
            }
            
            .bike-hero-description {
                font-size: 1.2rem;
            }
            
            .bike-hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .bike-hero-btn {
                width: 250px;
                justify-content: center;
            }
            
            .bike-hero-checklist {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .bike-hero-title {
                font-size: 2.8rem;
            }
            
            .bike-hero-subtitle {
                font-size: 1.8rem;
            }
            
            .bike-hero-checklist {
                font-size: .7rem;
                gap: .4rem;
            }
            
            .bike-checklist-item {
                padding: .4rem .6rem;
            }
            
            .bike-trust-badge {
                flex-direction: column;
                gap: 4px;
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            
            .bike-hero-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }
      
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #3a86ff;
            --secondary: #ff006e;
            --accent: #8338ec;
            --dark: #1a202c;
            --light: #f8fafc;
            --gray: #6b7280;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            font-size: 2rem;
        }

        .service-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .service-desc {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .feature {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 16px;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-content h3 {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .feature-content p {
            color: var(--gray);
        }

        /* Responsive adjustments for these sections */
        @media (max-width: 1024px) {
            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .feature {
                flex-direction: column;
                text-align: center;
            }
        }
       .hero-trust-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.6rem 1.2rem;
  border-radius:50px;
  background:linear-gradient(90deg,#3b82f6,#60a5fa,#93c5fd);
  color:#fff;
  font-weight:500;
  font-size:1rem;
  white-space:nowrap;
  backdrop-filter:blur(8px);
  box-shadow:0 4px 12px rgba(59,130,246,.25);
  margin-top:1.5rem; /* 👈 space ABOVE (from buttons) */
}

/* Ensure stars have consistent color */
.hero-trust-badge .stars {
    color: #facc15; /* bright gold-yellow */
}
   /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #3a86ff;
            --secondary: #ff006e;
            --accent: #8338ec;
            --dark: #1a202c;
            --light: #f8fafc;
            --gray: #6b7280;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
       
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.05;
            background: 
                radial-gradient(circle at 20% 30%, var(--primary) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, var(--secondary) 0%, transparent 20%),
                radial-gradient(circle at 40% 80%, var(--accent) 0%, transparent 20%);
            animation: bgMove 20s infinite alternate;
        }
        
        @keyframes bgMove {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(-50px, -50px) scale(1.1);
            }
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 0.2;
        }
        
        .cta-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            gap: 10px;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .btn-white:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 10px 30px rgba(255,255,255,0.15);
        }
        
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255,255,255,0.2);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: white;
            position: relative;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .faq-item:hover::before {
            width: 100%;
            opacity: 0.05;
        }
        
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .faq-question {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .faq-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 0.5rem;
            border-radius: 10px;
            flex-shrink: 0;
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .faq-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .faq-answer {
            margin-top: 1rem;
            color: var(--gray);
            padding-left: 3rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding-top 0.5s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 1rem;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            padding: 30px 10px 60px;
        }
        
        .testimonial {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: auto;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }
        
        .testimonial-rating {
            color: #f59e0b;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .swiper-pagination {
            bottom: 0 !important;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--gray);
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--primary);
            opacity: 1;
            transform: scale(1.2);
        }
        
        /* Contact CTA Section */
        .contact-cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-cta-section p {
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        /* Footer Section */
        .footer-section {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
        }
        
        .footer-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 0.1;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .footer-brand h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-brand p {
            color: #cbd5e0;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #cbd5e0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e0;
            position: relative;
            z-index: 2;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .faq-answer {
                padding-left: 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 640px) {
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-features {
                flex-direction: column;
                gap: 1rem;
            }
            
            .testimonial {
                padding: 2rem;
            }
        }
