 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Center wrapper */
.loader-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

/* Rotating red ring */
.ring {
  width: 100%;
  height: 100%;
  border: 6px solid #fb9a9a;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Static favicon in center */
.loader-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Fade out on load */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Rotate ring only */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #000000;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }
    .topbar {
      background-color: #e80000;
      color: white;
      font-size: 14px;
      padding: 8px 0;
    }
    .topbar-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    .topbar .left span,
    .topbar .right span {
      margin-right: 15px;
    }
    .social-icons i {
      margin-left: 10px;
      cursor: pointer;
    }
    .topbar .social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.topbar .left a,
.topbar .right span {
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
    .navbar {
      background: rgb(0, 0, 0);
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 15px 0;
    }
    .logo img {
      height: 45px;
      align-items: center;
    }
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: white;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    
    }
    .has-submenu {
  position: relative;
}
.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
    padding: 20px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  border-radius: 6px;
  z-index: 999;
  list-style: none;
}
.has-submenu:hover .submenu {
  display: flex;
}
.submenu li a {
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}
.submenu li a:hover {
  background: #e80000;
  color: #fff;
}

    .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }
     .nav-links li,
  .nav-right a {
    text-decoration: none;
  }
    .nav-right i {
      font-size: 18px;
      color: #fff;
    }
    .cta {
      background: #e80000;
      color: white;
      padding: 8px 14px;
      border: none;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .phone {
      color: #e80000;
      font-weight: bold;
    }
    * Hero Section */
.hero {
  background: #111;
  padding: 80px 0;
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowwrap;
  gap: 10px;
  padding: 20px;
margin-left: 20px;
margin-right: 20px;
}
.hero-text h1 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text h1 span {
  color: #e80000;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
  color: #ddd;
}
.hero-btn {
  background-color: #e80000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.hero-btn:hover{
    background-color: #c00000;
}
.hero-img img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(232, 0, 0, 0.4);
  margin: 10px;
}
.carousel {
  background: #111;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
.carousel-inner {
  display: flex;
  transition: transform 0.6s ease;
}
.carousel-slide {
  min-width: 100%;
  display: none;
}
.carousel-slide.active {
  display: block;
}
.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.carousel-dots .dot.active {
  background-color: #e80000;
}
.services-tabs {
  background: #1a1a1a;
  padding: 30px 0;
  overflow-x: auto; 
  overflow-x: hidden;
}
.hide-scrollbar {
  scrollbar-width: none;      
  -ms-overflow-style: none; 
  display: none;  
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;              
}
.tabs-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  min-width: fit-content;
  animation: scrollBrands 22s linear infinite;
}
.tab {
  background: #e80000;
  padding: 20px;
  border-radius: 16px;
  box-shadow: inset 4px 0 0 white;
  font-weight: bold;
  color: white;
  min-width: 200px;
  text-align: center;
  transition: 0.3s ease;
}
.tab:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 4px 12px rgba(222, 221, 221, 0.647);
}
/* Experience Section */
.experience {
  padding: 40px 0;
  background: #000;
}
.experience-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.experience-images {
  position: relative;
  flex: 1;
}
.experience-images img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}
.img-top {
  max-width: 90%;
}
.img-bottom {
  max-width: 100%;
}
.experience-box {
  position: absolute;
 display: flex;
 flex-wrap:row;
  bottom: -20px;
  left: -10px;
  background: #e80000;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  width: 180px;
  text-align: center;
  align-items: center;
}
.experience-box h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.experience-box span {
  display: block;
  font-size: 10px;
}
 .experience-box p {
    font-size: 10px;
  }
.experience-content {
  flex: 1;
    color: white;
}
.experience-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.experience-content ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.experience-content ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #ddd;
}
.experience-content ul li i {
  color: #e80000;
  margin-right: 10px;
}
.ceo-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.ceo-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.signature {
  height: 40px;
  object-fit: contain;
}
.services {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}
.section-title {
  font-size: 32px;
  color: #e80000;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #e80000;
  color: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(109, 40, 217, 0.2);
}
.service-card img {
  height: 60px;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #fff;

}  
.services-highlight {
  background: #000;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}
.services-highlight-inner {
  max-width: 900px;
  margin: auto;
}
.highlight-title h2 {
  color: #fff;
  font-size: 32px;
  margin-top: 10px;
}
.highlight-title p {
  color: #bbb;
  font-size: 16px;
  max-width: 600px;
  margin: 10px auto 40px;
}
.section-heading {
  color: #e80000;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #111;
  border-radius: 16px;
  padding: 20px;
  max-width: 1000px;
  width: 100%;
  gap: 30px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(232, 0, 0, 0.4);
}

.service-item img {
  width: 40%;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.service-text {
  flex: 1;
  text-align: left;
}

.service-text h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 15px;
  color: #ccc;
}

.compare {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.compare-title h3 {
  color: #e80000;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}
.compare-title h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.compare-title p {
  font-size: 14px;
  margin-bottom: 15px;
}
.compare-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.compare-col {
  flex: 1;
  min-width: 280px;
  background: #111;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}
.compare-col h4 {
  color: #e80000;
  font-size: 20px;
  margin-bottom: 20px;
}
.compare-col:last-child h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.compare-col ul {
  list-style: none;
  padding: 0;
}
.compare-col li {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-col li i {
  color: #e80000;
}
.compare-col:last-child li i {
  color: #fff;
}
.brands-section {
  background: #000;
  padding: 40px 0;
}

.brands-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.brands-title {
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 14px;
  line-height: 1.3;
  border-radius: 6px;
  flex-shrink: 0;
  text-align: left;
}
.brands-title span {
    color: #e80000;
}

.brands-carousel {
  overflow: hidden;
  flex: 1;
}

.brands-track {
  display: flex;
  gap: 30px;
  animation: scrollBrands 22s linear infinite;
  color: #e80000;
}

.brand-logo {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  height: 100px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.08);
}

.brand-logo img {
  max-height: 60px;
  max-width: 100%;
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reviews-wrapper {
  background: #000;
  padding: 60px 20px;
  color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.review-heading-box {
  text-align: center;
  margin-bottom: 40px;
}
.trusted {
  font-size: 16px;
  color: #e80000;
}
.review-heading {
  font-size: 32px;
  font-weight: 600;
}
.review-subtext {
  max-width: 600px;
  margin: 10px auto;
  color: #fff;
  font-size: 16px;
}
.read-all {
  display: inline-block;
  margin-top: 20px;
  background: #e80000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.review-left-box {
  flex: 1;
  background: #e80000;
  padding: 30px;
  border-radius: 20px;
}
.review-left-box .rating {
  font-size: 48px;
  font-weight: bold;
}
.review-left-box .stars {
  color: gold;
  font-size: 20px;
  margin: 10px 0;
}
.review-caption {
  margin: 10px 0;
  color: #dcd1ff;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  border: 2px solid #fff;
}
.review-carousel-box {
  flex: 2;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
.review-slide {
  display: none;
}
.review-slide.active {
  display: block;
}
.review-slide h3 {
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 6px 12px;
  color: #111;
  border-radius: 6px;
}
.review-slide p {
  color: #111;
  margin: 15px 0;
}
.review-slide .stars {
  color: goldenrod;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.review-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
}

.review-dot.active {
  background-color: #e80000;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.author span {
  font-size: 12px;
  color: #111;
}
.carousel-dots {
  text-align: center;
  margin-top: 20px;
}
.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: #999;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-dots .dot.active {
  background: #fff;
}
.contact-banner-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contact-banner {
  background: #111;
  color: white;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  padding: 40px 30px;
}

.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.call-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call-info .icon {
  font-size: 30px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 50%;
}
.call-info h3 {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}
.call-info .small-text {
  font-size: 14px;
  opacity: 0.8;
}
.divider {
  height: 60px;
  width: 2px;
  background: rgba(255,255,255,0.4);
}
.consultation-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.btn-outline {
  border: 2px solid #fff;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-outline:hover {
  background: white;
  color: #e80000;
}
.team-section {
  padding: 40px 20px;
  background: #000;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
.team-section .tag {
  background: #fff;
  color: #e80000;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}
.section-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
.section-subtitle {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
}
.team-card:hover {
  transform: translateY(-15px);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid #f0f0f0;
}
.social-icons-01 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: 0.3s ease;
  color: #fff;
}
.image-wrapper:hover .social-icons-01 {
  opacity: 1;
}

.info {
  padding: 20px;
}
.info .role {
  font-size: 14px;
  color: #e80000;
  font-weight: 500;
  margin: 0;
}
.info .name {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-box {
  flex: 1 1 220px;
}
.footer-box h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #e80000;
  display: inline-block;
}
.footer-contact p,
.footer-links li,
.footer-box p {
  margin: 10px 0;
  font-size: 14px;
}
.footer-logo {
  width: 250px;
}
.btn-quote {
  background: #e80000;
  color: white;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
}
.newsletter {
  display: flex;
  margin-top: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
}
.newsletter button {
  background: #e80000;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
}
.footer-socials {
  margin-top: 20px;
}
.footer-socials a {
  display: inline-block;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: #e80000;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
}
.footer-bottom a {
  color: #e80000;
  margin-left: 10px;
  text-decoration: none;
}
.footer-bottom .footer-nav {
  margin-top: 10px;
}
.footer-links li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links li a:hover {
  color: #e80000;
}
.footer-bottom .footer-nav a {
  margin: 0 5px;
}
.highlight {
  color: #e80000;
}
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading .tag {
  display: inline-block;
  color: #e80000;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-heading h2 {
  font-size: 34px;
  margin: 5px 0;
  font-weight: 700;
  color: #fff;
}

.faq-heading p {
  color: #ffffff;
  font-size: 13px;
}

/* Accordion */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e80000;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  font-size: 16px;
  color: #111;
}

.accordion-header.active .icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 24px;
  transition: max-height 0.3s ease;
}

.accordion-body p {
  margin: 0;
  padding: 16px 0 20px;
  color: #111;
  font-size: 13px;
  line-height: 1.5;
}
  
    @media (max-width: 768px) {
      .menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .nav-links,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.show,
  .nav-right.show {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    font-size: 15px;
    flex-wrap: nowrap;
  }

  .nav-links li,
  .nav-right a {
    width: 100%;
    text-align: center;
  }

  .has-submenu .submenu {
    position: absolute;
    background: #111;
    padding: 20px;
    display: none;
    overflow-y: auto;
    list-style: none;
  }

  .has-submenu:hover .submenu:hover {
    display: flex;
  }
  .submenu li a:hover {
     background-color: #e80000;
    color: white;
    border-radius: 10px;
  }

      .container{
        padding: 10px;
      }
      .navbar-inner {
        flex-direction: row;
        align-items: flex-start;
      }
      .topbar{
        display: none;
      }
      .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-img{
    width: 100%;
  }
  .hero-text p {
    font-size: 16px;
  }
  .services-tabs {
  background: #111;
  padding: 20px 10px;
  overflow-x: auto;
  white-space: wrap;
}


.tabs-inner {
  display: flex;
  gap: 20px;
  min-width: fit-content;
}

.tab {
  background: #e80000;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 5px 5px 0 white;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}
.experience {
  padding: 20px 0;
}
 .experience-inner {
    flex-direction: column;
  }

  .experience-images,
  .experience-content {
    width: 100%;
  }

  .experience-box {
    position: static !important;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    border-radius: 15px;
  }

  .experience-box h2 {
    font-size: 28px;
  }

  .experience-content h2 {
    font-size: 24px;
  }
  .experience-content ul li {
    font-size: 16px;
  }

  .ceo-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .ceo-info img.signature {
    margin-top: 10px;
    height: 30px;
  }

  .experience-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .experience-box {
    display: none;
  }
  .services-list {
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
  }
  .services-highlight {
  background: #000;
  padding: 20px 20px;
}
.service-item{
    display: flex;
    flex-direction: column;
    gap: 15px;

}
.service-item img{
    width: 100%;
}
.compare-row {
    flex-direction: column;
  }
  .brands-logos {
    gap: 20px;
  }
  .brands-logos img {
    max-height: 40px;
  }
    .brands-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .brands-title {
    text-align: center;
  }
    .review-grid {
    flex-direction: column;
  }
  .call-info .icon{
    font-size: 15px;
    padding: 5px;
  }
  .call-info h3{
    font-size: 18px;
  }
  .consultation-text h2{
    font-size: 15px;
  }
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
  .accordion-header{
    font-size: 13px;
    padding: 10px 15px;
  }
}




