/* Hero Slider Optimization */
.synaty-hero-wrapper {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #000;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-content {
  color: #fff;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-content h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Features Section - Minimal & Clean */
.features-section {
  padding: 80px 6%;
  background: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 32px;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  background: #fdfdfd;
  border: 1px solid #eee;
  text-align: center;
  transition: var(--transition);
  border-radius: 10px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-gold);
}

.feature-card i {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('media/a-home-banner/last-banner.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 6%;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .synaty-hero-wrapper {
    height: 60vh;
  }

  .slide-content {
    text-align: center;
  }

  .slide {
    padding: 0 5%;
    justify-content: center;
  }
}


.main-hero-slider {
  width: 100%;
  height: 80vh;
  /* Desktop height */
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.model-name {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #ffcc00;
  /* Apne brand ka color yahan dalein */
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-hero-slider {
    height: 60vh;
  }

  .model-name {
    font-size: 2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  /* Mobile pe arrows chupa sakte hain */
}

:root {
  --accent-gold: #BF953F;
  --accent-hover: #D4AF37;
  --dark-bg: #111111;
  /* Black background like image */
  --card-bg: #1a1a1a;
  --text-gray: #cccccc;
}

.synaty-features-section {
  background-color: var(--dark-bg);
  padding: 60px 20px;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  overflow: hidden;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns for desktop */
  gap: 25px;
}

.feature-card {
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  border-radius: 8px;
  background: transparent;
}

/* Hover Effect on Card */
.feature-card:hover {
  background: var(--card-bg);
  transform: translateY(-10px);
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--accent-gold);
  /* Replacing Blue with Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}

.feature-card:hover .icon-box {
  background-color: var(--accent-hover);
  transform: rotateY(180deg);
  /* Icon flip animation */
}

.icon-box svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
    /* 1 column for mobile */
    text-align: center;
  }

  .icon-box {
    margin: 0 auto 20px;
  }
}


:root {
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9f0b1 50%, #aa891e 100%);
  --dark-bg: #0d0d0d;
}

.ais-section {
  background-color: #F5F5F5;
  padding: 50px 0;
  overflow: hidden;
  color: #ffffff;
}

/* Heading Styling */
.ais-heading {
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.ais-heading span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* Decorative Line under heading */
.ais-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 10px;
}

/* Image Styling with Animation */
.cert-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.cert-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.8s ease;
}

/* Hover Effects */
.cert-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.cert-card:hover img {
  transform: scale(1.1);
}

/* Floating Animation for a unique look */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .ais-section {
    padding: 60px 0;
  }

  .ais-heading {
    font-size: 1.8rem;
  }

  .cert-card {
    margin-bottom: 30px;
  }
}


:root {
  --accent-gold: #BF953F;
  --accent-hover: #D4AF37;
  --dark-overlay: rgba(0, 0, 0, 0.75);
}

.synaty-split-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
}

/* Left Side - Image with Content */
.split-left {
  flex: 1.2;
  min-width: 350px;
  position: relative;
  background-image: url('https://www.synatyauto.com/wp-content/uploads/2026/02/Senorita-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  color: white;
}

.split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}

.left-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.left-content h6 {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 14px;
}

.left-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.left-content blockquote {
  font-style: italic;
  border-left: 3px solid var(--accent-gold);
  padding-left: 20px;
  margin: 25px 0;
  font-size: 16px;
  color: #ddd;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.feature-list li::before {
  content: '✔';
  margin-right: 10px;
  color: var(--accent-gold);
  font-size: 18px;
}

/* Middle Section - Stats & History */
.split-middle {
  flex: 0.8;
  min-width: 300px;
  background: #fdfdfd;
  padding: 60px 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.milestone {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease-out;
}

.milestone.visible {
  opacity: 1;
  transform: translateY(0);
}

.milestone h3 {
  font-size: 40px;
  color: var(--accent-gold);
  margin: 0;
  font-weight: 800;
}

.milestone p {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.milestone strong {
  display: block;
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}

/* Right Side - Image Only */
.split-right {
  flex: 1;
  min-width: 350px;
  background-image: url('https://www.synatyauto.com/wp-content/uploads/2026/02/rightside.jpg');
  background-size: cover;
  background-position: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .synaty-split-section {
    flex-direction: column;
  }

  .split-right {
    height: 300px;
    order: 3;
  }

  .split-left {
    order: 1;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }

  .left-content blockquote {
    border-left: none;
    border-top: 2px solid var(--accent-gold);
    padding: 15px 0;
  }

  .split-middle {
    order: 2;
    text-align: center;
  }
}


:root {
  --accent-gold: #BF953F;
  --accent-hover: #D4AF37;
  --soft-gray: #f8f9fa;
  --text-dark: #1a1a1a;
}

.synaty-products-wrapper {
  padding: 80px 5%;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #f0f0f0 1px, transparent 1px);
  background-size: 30px 30px;
  /* Engineering grid pattern */
  font-family: 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.products-header-grid {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.header-left {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

.header-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.header-left p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
}

/* Animated Gold Line */
.gold-progress-container {
  width: 150px;
  height: 4px;
  background: #eee;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

.gold-progress-bar {
  position: absolute;
  width: 60%;
  height: 100%;
  background: var(--accent-gold);
  animation: slideLoading 3s infinite ease-in-out;
}

@keyframes slideLoading {
  0% {
    left: -60%;
  }

  100% {
    left: 100%;
  }
}

/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: var(--accent-gold);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.4s;
  box-shadow: 0 10px 20px rgba(191, 149, 63, 0.2);
}

.btn-view-all:hover {
  background: #000;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-view-all svg {
  margin-left: 10px;
  width: 18px;
  transition: 0.3s;
}

.btn-view-all:hover svg {
  transform: translateX(5px);
}

/* Bottom Relationship Box */
.relationship-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid #eee;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: 1s ease-out;
}

.relationship-box::before,
.relationship-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-gold);
}

.relationship-box::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.relationship-box::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.relationship-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.relationship-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
}

/* Scroll Reveal Triggers */
.reveal-active {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .products-header-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-left h2 {
    font-size: 32px;
  }

  .gold-progress-container {
    margin: 25px auto;
  }

  .relationship-box {
    padding: 40px 20px;
    width: 95%;
  }
}


:root {
  --ms-light-black: #121416;
  --ms-card-dark: #1e2125;
  --ms-gold: #BF953F;
  --ms-g-blue: #4285F4;
  --ms-g-red: #EA4335;
  --ms-g-yellow: #FBBC05;
  --ms-g-green: #34A853;
}

.ms-testimonial-section {
  background-color: var(--ms-light-black);
  font-family: 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
  padding: 80px 0;
}

.ms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Review Badge */
.ms-review-badge .ms-badge-content {
  background: rgba(191, 149, 63, 0.15);
  color: var(--ms-gold);
  border: 1px solid var(--ms-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.ms-gold-text {
  color: var(--ms-gold);
}

/* Square Card Styling */
.ms-testi-card {
  background: var(--ms-card-dark);
  padding: 40px 30px;
  height: 100%;
  min-height: 300px;
  position: relative;
  border-radius: 8px;
  border-left: 6px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  box-sizing: border-box;
}

.ms-testi-card:hover {
  transform: translateY(-10px);
  background: #25282d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Left Border Colors */
.ms-border-google-blue {
  border-left-color: var(--ms-g-blue);
}

.ms-border-google-red {
  border-left-color: var(--ms-g-red);
}

.ms-border-google-yellow {
  border-left-color: var(--ms-g-yellow);
}

.ms-border-google-green {
  border-left-color: var(--ms-g-green);
}

/* Quote Icons */
.ms-quote-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.ms-icon-blue {
  color: var(--ms-g-blue);
}

.ms-icon-red {
  color: var(--ms-g-red);
}

.ms-icon-yellow {
  color: var(--ms-g-yellow);
}

.ms-icon-green {
  color: var(--ms-g-green);
}

.ms-review-content {
  color: #bdc3c7;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.ms-client-name {
  color: #fff;
  font-weight: 700;
  margin-top: auto;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Button */
.ms-btn-review {
  display: inline-block;
  background: #2c3e50;
  color: white;
  border: 1px solid #34495e;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ms-btn-review:hover {
  background: var(--ms-g-blue);
  color: white;
  border-color: var(--ms-g-blue);
}

.ms-swiper-pagination .swiper-pagination-bullet {
  background: #555 !important;
  opacity: 1;
}

.ms-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--ms-gold) !important;
  width: 20px;
  border-radius: 5px;
}


.synaty-contact-light {
  background-color: #fcfcfc;
  overflow: hidden;
}

.golden-text-light {
  background: linear-gradient(45deg, #AA771C, #BF953F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icon Box UI */
.icon-box-light {
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BF953F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* Map Card Styling */
.map-card-wrapper {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #fff;
  transition: transform 0.3s ease;
}

.map-card-wrapper:hover {
  transform: translateY(-5px);
}

/* Professional Gold Button */
.synaty-btn-gold-light {
  padding: 12px 30px;
  background: #BF953F;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all ease;
  border: none;
}

.synaty-btn-gold-light:hover {
  background: #AA771C;
  color: #fff;
  box-shadow: 0 8px 20px rgba(191, 149, 63, 0.4);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .synaty-contact-light {
    padding-top: 2rem;
  }

  .map-card-wrapper {
    margin-top: 30px;
  }

  .map-card-wrapper iframe {
    height: 350px !important;
  }
}


:root {
  --synaty-gold: #BF953F;
  /* Ensure this matches your brand gold */
}

.synaty-btn-gold {
  position: relative;
  background: transparent;
  color: white;
  border: 2px solid var(--synaty-gold);
  padding: 14px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  display: inline-block;
}

.synaty-btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--synaty-gold);
  transition: all 0.4s ease;
  z-index: -1;
}

.synaty-btn-gold:hover {
  color: #000 !important;
  /* Gold par black text zyada premium lagta hai */
}

.synaty-btn-gold:hover::before {
  left: 0;
}