* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

.services {
  padding: 60px 40px;
  text-align: center;
  background: #000;
  color: #fff;
}

.title {
  font-size: 38px;
  margin-bottom: 60px;
  position: relative;
  color: #fff;
}

.title span {
  color: #1594d2;
}

.title .line {
  display: block;
  width: 120px;
  height: 4px;
  background: #1594d2;
  margin: 0 auto 10px;
}

.service-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flip Card */
.flip-card {
  width: 160px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #000;
  border: 4px solid #fff;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
  position: relative;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
  border-color: #1594d2;
}

/* Front & Back */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.flip-front {
  background: #000000;
}

.flip-front img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.flip-back {
  background: #ffffff00;
  transform: rotateY(180deg);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Text */
.flip-card h4 {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.brand-section {
  background: #f2f2f2;
  margin: 40px;
  position: relative;
  overflow: hidden;
}

/* Slider */
.slider {
  display: flex;
  width: 200%;
  /* animation: slide 10s infinite ease-in-out; */
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 420px;
}

/* Left Content */
.content {
  width: 45%;
  padding: 60px;
}

.content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.content h3 span {
  color: #1594d2;
}

.brand-logo {
  width: 260px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.content button {
  background: #1594d2;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
}

/* Right Image */
.image {
  width: 55%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrow Buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #1594d2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

.arrow:hover {
  background: #1594d2;
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(0);
  }

  55% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Main Section */
.detail-section {
  display: flex;
  background: #f4f7f8;
  padding: 80px 60px;
  align-items: center;
  gap: 40px;
}

/* Left Content */
.content-area {
  width: 55%;
}

.heading-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.heading-block .line {
  width: 6px;
  height: 120px;
  background: #1594d2;
}

.heading-block h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111213;
}

.heading-block h3 {
  font-size: 26px;
  color: #1594d2;
  font-weight: 600;
  margin-top: 6px;
}

.divider {
  margin-top: 12px;
  width: 180px;
}

.content-area p {
  font-size: 16px;
  color: #1594d2;
  line-height: 1.8;
  margin-bottom: 18px;
}

.content-area p strong {
  color: #1594d2;
}

.content-area .bold {
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
}

/* Right Image */
.image-area {
  width: 45%;
  display: flex;
  justify-content: center;
}

.image-area img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 25px rgba(255, 0, 0, 0.35));
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  background: #f4f7f8;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.container-ceramic-coating {
  max-width: 1200px;
  margin: auto;
}

/* ===== Top Heading ===== */
.chose-us-heading {
  text-align: center;
  margin-bottom: 50px;
}

.chose-us-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111213;
}

.chose-us-heading h2 span {
  color: #1594d2;
}

.chose-us-heading p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
  color: #1594d2;
  line-height: 1.7;
}

/* ===== Background Area ===== */
.chose-background {
  background: linear-gradient(to bottom,
      #111213 0%,
      #111213 50%,
      #f4f7f8 50%,
      #f4f7f8 100%);
  padding: 70px 0;
}

/* ===== Middle Heading ===== */
.chose-heading {
  text-align: center;
  margin-bottom: 60px;
}

.chose-heading h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.chose-heading h3 span {
  color: #1594d2;
}

/* ===== Cards ===== */
.chose-us-row {
  background: #1594d2;
  margin-bottom: 22px;
  padding: 20px 15px;
  border-radius: 10px;
  align-items: center;
  transition: all 0.4s ease;
}

.chose-us-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(27, 27, 27, 0.25);
}

/* Text Column */
.chose-us-colum h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1594d2;
  margin-bottom: 6px;
}

.chose-us-para {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Right aligned text (desktop right side) */
.chose-us-colum.left {
  text-align: left;
}

/* Icons */
.chose-us-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  /* background: #111213; */
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #1594d2;
}

/* ===== Desktop Center Gap ===== */
.col-md-4.desktop {
  display: block;
}

.col-md-4.tab {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .chose-heading h3 {
    font-size: 30px;
  }

  .chose-us-heading h2 {
    font-size: 34px;
  }

  .col-md-4.desktop {
    display: none;
  }

  .col-md-4.tab {
    display: block;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: 60px 15px;
  }

  .chose-us-row {
    text-align: center;
  }

  .chose-us-img {
    margin: 10px auto;
  }
}

.customer-feedback {
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  margin-top: 60px;
}

.section-title:after {
  content: "";
  height: 2px;
  background: #067abd;
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: -10px;
}

.feedback-container {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.feedback-slider-item {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.feedback-slider-item:after {
  content: "";
  position: absolute;
  top: 100px;
  left: 25px;
  right: 25px;
  bottom: 0;
  background: #f6f6f6;
  border-radius: 10px;
  z-index: -1;
}

.feedback-slider-item img {
  width: 85px !important;
  height: 85px;
  border-radius: 50%;
}

.feedback-slider-item h3 {
  margin: 15px 0;
}

.rating {

  top: 80px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #eee;
  border-radius: 50%;
  line-height: 42px;
  font-weight: bold;
}

.rating i {
  color: #067abd;
  font-size: 12px;
}

/* Preview Thumbs */
.thumb {
  position: absolute;
  top: 45%;
  width: 90px;
  height: 90px;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.thumb-prev {
  left: -110px
}

.thumb-next {
  right: -110px
}

.owl-nav i {
  font-size: 26px;
  color: #067abd;
}

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media(max-width:768px) {
  .thumb {
    display: none
  }
}

/* ===== Franchise Section ===== */
.franchise-section {
  background: linear-gradient(to right, #0a0a0a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.franchise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.franchise-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.franchise-title {
  font-size: 48px;
  font-weight: 700;
  color: #136ebd;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.2;
}

.franchise-subtitle {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.franchise-main {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.franchise-cta {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.franchise-description {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0 !important;
  margin-bottom: 35px;
  max-width: 550px;
}

.franchise-button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.franchise-button:hover {
  background: #0bdcfd;
  border-color: #12bfdd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 147, 199, 0.3);
}

.franchise-map {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.franchise-map img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(4, 78, 124, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .franchise-section {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
  }

  .franchise-content {
    max-width: 100%;
  }

  .franchise-title {
    font-size: 38px;
  }

  .franchise-subtitle {
    font-size: 28px;
  }

  .franchise-main,
  .franchise-cta {
    font-size: 34px;
  }

  .franchise-description {
    max-width: 100%;
  }

  .franchise-map {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .franchise-section {
    padding: 50px 20px;
  }

  .franchise-title {
    font-size: 32px;
  }

  .franchise-subtitle {
    font-size: 24px;
  }

  .franchise-main,
  .franchise-cta {
    font-size: 28px;
  }

  .franchise-description {
    font-size: 14px;
  }

  .franchise-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ===== Travel Destinations Slider ===== */
.destinations-slider-section {
  background: #b9bbb9;
  padding-top: 80px;
  /* min-height: 600px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb;
  border-radius: 0;
  margin: 0;
}

.slider-container .slide {
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-container .slide .item {
  width: 250px;
  height: 320px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: all 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.slide .item:nth-child(3) {
  left: 45%;
}

.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}

.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 500px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  border-radius: 10px;
  background-color: #1594d2;
  transition: all 0.5s;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content button:hover {
  background-color: rgba(7, 147, 199, 0.3);
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.slider-container .button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.slider-container .button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 2px solid #000000bd;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.578);
}

.slider-container .button button:hover {
  color: #000000;
  border: 2px solid #ffffffbd;
  transform: scale(1.1);
}

.slider-container .button button:focus {
  transform: scale(1.1);
  background: #ffffff;
  border: 2px solid #ffffffbd;
}

.slider-container .button button:active {
  transform: scale(1.02);
}

.slider-container .button .next {
  padding: 0 0 0 3px;
}

.slider-container .button .prev {
  padding: 0 3px 0 0;
}

.MDJAminDiv {
  z-index: 4444;
  position: fixed;
  bottom: 5%;
  left: 2%;
}

.MDJAmin {
  text-decoration: none;
  border-bottom: 1px dashed rgb(44, 44, 44);
  border-top: 1px dashed rgb(44, 44, 44);
  padding: 4px 0;
  color: rgba(44, 44, 44, 0.525);
  font-family: monospace;
  font-style: italic;
  font-size: 1.1em;
  transition: all 0.5s;
}

.MDJAmin:hover {
  color: #000000;
}

/* ===== Responsive Styles for Slider ===== */

/* Tablets and below */
@media (max-width: 1024px) {
  .destinations-slider-section {
    padding: 60px 0;
    min-height: 450px;
  }

  .slider-container {
    height: 400px;
  }

  .slider-container .slide .item {
    width: 200px;
    height: 280px;
  }

  .slide .item:nth-child(3) {
    left: 43%;
  }

  .slide .item:nth-child(4) {
    left: calc(43% + 220px);
  }

  .slide .item:nth-child(5) {
    left: calc(43% + 440px);
  }

  .item .content {
    left: 80px;
    width: 280px;
  }

  .item .content .name {
    font-size: 36px;
  }

  .item .content .des {
    font-size: 14px;
  }
}

/* Tablets portrait and mobile landscape */
@media (max-width: 768px) {
  .destinations-slider-section {
    padding: 50px 0;
    min-height: 400px;
  }

  .slider-container {
    height: 350px;
  }

  .slider-container .slide .item {
    width: 160px;
    height: 240px;
  }

  .slide .item:nth-child(3) {
    left: 40%;
  }

  .slide .item:nth-child(4) {
    left: calc(40% + 180px);
  }

  .slide .item:nth-child(5) {
    left: calc(40% + 360px);
  }

  .item .content {
    left: 50px;
    width: 240px;
  }

  .item .content .name {
    font-size: 30px;
  }

  .item .content .des {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .item .content button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .slider-container .button {
    bottom: 20px;
  }

  .slider-container .button button {
    width: 36px;
    height: 32px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .destinations-slider-section {
    padding: 40px 0;
    min-height: 350px;
  }

  .slider-container {
    height: 300px;
  }

  .slider-container .slide .item {
    width: 130px;
    height: 200px;
  }

  .slide .item:nth-child(3) {
    left: 35%;
  }

  .slide .item:nth-child(4) {
    left: calc(35% + 145px);
  }

  .slide .item:nth-child(5) {
    left: calc(35% + 290px);
  }

  .item .content {
    left: 30px;
    width: 200px;
  }

  .item .content .name {
    font-size: 24px;
  }

  .item .content .des {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .item .content button {
    padding: 6px 12px;
    font-size: 11px;
  }

  .slider-container .button {
    bottom: 15px;
  }

  .slider-container .button button {
    width: 32px;
    height: 28px;
    font-size: 11px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .destinations-slider-section {
    min-height: 300px;
  }

  .slider-container {
    height: 250px;
  }

  .slider-container .slide .item {
    width: 100px;
    height: 160px;
  }

  .slide .item:nth-child(3) {
    left: 30%;
  }

  .slide .item:nth-child(4) {
    left: calc(30% + 115px);
  }

  .slide .item:nth-child(5) {
    left: calc(30% + 230px);
  }

  .item .content {
    left: 20px;
    width: 180px;
  }

  .item .content .name {
    font-size: 20px;
  }

  .item .content .des {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .item .content button {
    padding: 5px 10px;
    font-size: 10px;
  }

  .slider-container .button button {
    width: 28px;
    height: 26px;
    font-size: 10px;
  }
}

/* HERO SECTION - Added */
.hero {
  min-height: 90vh;
  padding: 100px 6% 70px;
  position: relative;
  overflow: hidden;
  background: #141414;
  /* Ensuring bg is dark as per user req */
  color: #fff;
  display: flex;
  /* Ensure centering or alignment if needed */
  flex-direction: column;
  justify-content: center;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  /* Limit width on large screens */
  margin: 0 auto;
}

/* LEFT */
.left {
  max-width: 560px;
  z-index: 2;
  /* Ensure text is above rings if overlap */
}

.left h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  /* Optional: for stronger look */
  color: #fff;
}

.badge-wrap {
  display: flex;
  gap: 18px;
  margin: 30px 0;
}

/* Hero Buttons */
.btn-hero-primary {
  background-color: #1594d2;
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #1594d2;
}

.btn-hero-primary:hover {
  background-color: transparent;
  color: #1594d2 !important;
}

.btn-hero-secondary {
  background-color: transparent;
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #fff;
}

.btn-hero-secondary:hover {
  background-color: #fff;
  color: #141414 !important;
}


.specs {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.spec p {
  font-size: 13px;
  color: #bdbdbd;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.spec h4 {
  font-size: 20px;
  /* Slightly larger */
  margin-top: 6px;
  color: #fff;
}

/* RIGHT */
.right {
  position: relative;
  width: 640px;
  min-height: 560px;
}

.rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ring {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200, 20, 20, 0.95) inset;
}

.ring-1 {
  width: 360px;
  height: 360px;
  transform: translate(40px, -20px);
  opacity: 0.95;
  animation: pulseRing 3s infinite ease-in-out;
}

@keyframes pulseRing {
  0% {
    transform: translate(40px, -20px) scale(1);
    opacity: 0.95;
  }

  50% {
    transform: translate(40px, -20px) scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: translate(40px, -20px) scale(1);
    opacity: 0.95;
  }
}


.car {
  width: 700px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s ease;
}

.car:hover {
  transform: translateY(-52%) scale(1.02);
}


.right-copy {
  position: absolute;
  right: 40px;
  bottom: -70px;
  max-width: 460px;
  color: #bfbfbf;
  font-size: 14px;
  z-index: 4;
  background: rgba(20, 20, 20, 0.8);
  /* readable text */
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.customers {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.cust-text strong {
  display: block;
  color: #fff;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #f1c40f;
  margin-top: 2px;
}

.right-nav {
  position: absolute;
  right: -25px;
  /* Adjusted position */
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  color: #9a9a9a;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-weight: 600;
  z-index: 4;
}

.right-nav li {
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
}

.right-nav li:hover,
.right-nav li.active {
  color: #ff3b3b;
  opacity: 1;
  transform: scale(1.2);
}

/* BOTTOM STATS */
.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  background: #fff;
  color: #111;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  border-top-right-radius: 120px;
  z-index: 5;
}

.bottom h2 {
  font-size: 36px;
  font-weight: 800;
}

.bottom span {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

/* Responsive */
@media(max-width:1200px) {
  .hero {
    padding-top: 200px;
    height: auto;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .left {
    width: 100%;
    max-width: 100%;
  }

  .left h1 {
    font-size: 54px;
  }

  .right {
    width: 100%;
    min-height: 420px;
    margin-top: 50px;
  }

  .car {
    width: 520px;
    right: 0;
    position: relative;
    /* Changing absolute to relative allowed flow */
    transform: none;
    top: 0;
    margin: 0 auto;
    display: block;
  }

  .car:hover {
    transform: scale(1.02);
  }

  .rings {
    display: block;
  }

  .ring-1 {
    width: 420px;
    height: 420px;
    left: 50%;
    transform: translateX(-50%);
  }

  .right-copy {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    max-width: 100%;
  }

  .bottom {
    position: relative;
    width: 100%;
    margin-top: 70px;
    border-radius: 36px;
    padding: 28px;
    flex-direction: row;
    /* Keep row if possible */
    gap: 20px;
    justify-content: space-around;
    bottom: auto;
    left: auto;
  }

  .right-nav {
    display: none;
    /* Hide nav on smaller screens */
  }
}

@media(max-width:600px) {
  .hero {
    padding: 100px 5% 50px;
    /* More top padding for mobile header */
  }

  .left h1 {
    font-size: 36px;
    /* Smaller font */
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .car {
    width: 100%;
    max-width: 320px;
  }

  .ring-1 {
    width: 150px;
    height: 150px;
    left: 140px;
  }

  .bottom {
    margin-top: -50px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
  }

  .badge-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-wrap a {
    width: 100%;
    text-align: center;
  }
}

/* Services Section Mobile Fix */
@media (max-width: 768px) {
  .services {
    padding: 40px 15px;
  }

  .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .title .line {
    width: auto;
    height: auto;
    background: transparent;
    margin: 0 auto 10px;
  }

  .title .line img {
    width: 100px;
    /* Adjust width suitable for mobile */
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .service-wrapper {
    gap: 15px;
  }

  .flip-card {
    width: 47%;
    /* Forces 2 items per row with gap */
  }

  .flip-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    /* Maintains circular shape */
  }

  .flip-front img {
    width: 50%;
    height: 50%;
  }

  .flip-card h4 {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* Brands Section Mobile Fix */
@media (max-width: 768px) {
  .brand-section {
    margin: 20px 0;
  }

  .slider {
    width: 200%;
  }

  .slide {
    flex-direction: column-reverse;
    /* Image on top */
    min-height: auto;
    padding-bottom: 20px;
  }

  .content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .content h3 {
    font-size: 24px;
  }

  .image {
    width: 100%;
    height: 250px;
    clip-path: none;
    /* Show full image */
  }

  .image img {
    object-position: center;
  }

  .arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
    top: 200px;
    /* Approximate position over image */
    transform: none;
  }

  .arrow.left1 {
    left: 10px;
  }

  .arrow.right1 {
    right: 10px;
  }
}

/* Strive Section Mobile Fix */
@media (max-width: 768px) {
  .detail-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .content-area,
  .image-area {
    width: 100%;
  }

  .heading-block {
    flex-direction: column;
    gap: 10px;
  }

  .heading-block .line {
    width: 60px;
    height: 4px;
    /* Horizontal line on mobile */
  }

  .heading-block h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .heading-block h3 {
    font-size: 20px;
  }

  .content-area p {
    font-size: 14px;
  }

  .image-area img {
    max-width: 100%;
  }
}

/* Why Choose Us Mobile Fix */
@media (max-width: 767px) {
  .why-choose-us {
    padding: 30px 15px;
  }

  .chose-us-heading {
    margin-bottom: 20px;
  }

  .chose-background {
    padding: 20px 0;
    /* Reduced from 70px */
  }

  .chose-us-row {
    flex-direction: column-reverse;
    /* Icons on top */
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .chose-us-colum {
    width: 100%;
    padding: 0;
  }

  .chose-us-colum.left {
    text-align: center;
    /* Override left align */
    padding: 0;
  }

  .chose-us-img {
    margin: 0 auto;
    /* Center icon */
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 10px;
    background: transparent;
    /* Fix white icon visibility */
    border: 2px solid #fff;
    /* Add border for definition */
  }

  /* You like it Clean? Heading Fix */
  .chose-heading h3 {
    font-size: 24px;
    /* Reduce from 36px/30px */
    padding: 0 10px;
    /* Prevent edge touching */
    line-height: 1.3;
  }
}