@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geologica", sans-serif;
  background: rgb(255, 250, 250);
  color: #000;
  top: 0 !important;
}

body > .skiptranslate {
  display: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #dc2a1c;
  line-height: 0;
}

.back-to-top:hover {
  background: #92370d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #ffff;
}

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

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  position: relative;
}

.line {
  height: 2px;
  width: 50px;
  background: #dc2a1c;
  display: block;
  margin: 10px auto 20px;
}

.line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 150px;
  height: 2px;
  border-bottom: 2px dashed #dc2a1c;
  margin-left: -75px;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  height: 90px;
  background: transparent;
  transition: all 0.3s ease;
}

.header .btn:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.header .navbar li a,
.header .dropdown .btn {
  color: #000;
}

.header .navbar a:hover,
.header .dropdown .btn:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #dc2a1c;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.822);
}

.header.scrolled .navbar li a,
.header.scrolled .dropdown .btn {
  color: #222;
}

@media (max-width: 1279px) {
  .header.scrolled .navbar li a,
.header.scrolled .dropdown .btn {
  color: #000;
}
}

.header.scrolled .navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #dc2a1c;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.219);
}

.header .logo img {
  max-height: 150px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #222;
}

.header .logo h1 span {
  color: #dc2a1c ;
}

.nav-logo {
  height: 150px;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus,
  .header .dropdown .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(94, 99, 110, 0.096);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #222;
  }

  .navbar .dropdown ul li:hover {
    color: #ff5e14;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: linear-gradient(
      300deg,
      rgba(248, 248, 255, 0.97),
      rgba(255, 250, 250, 0.97)
    );
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #000;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #000;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #000;
    background: rgba(220, 42, 28, 0.801);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #dc2a1c;
    border: 1px solid #dc2a1c;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .header .mobile-nav-show {
    color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .header.scrolled .mobile-nav-show {
    color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #000;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(109, 72, 2, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Banner Links
--------------------------------------------------------------*/


.banner-links {
  position: fixed;
  z-index: 999;
  top: 30%;
  right: 0;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}

.banner-links a:hover {
  color: #dc2a1c ;
}

.banner-links span {
  transform: rotate(-90deg) !important;
  padding-right: 80px;
}

@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}

.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #000;
}

.banner-links::before {
  position: absolute;
  content: "";
  top: -2rem;
  width: 2rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: #000000;
}

.banner-links::after {
  position: absolute;
  content: "";
  bottom: -7rem;
  width: 2rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: #000000;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #000;
  border-color: #dc2a1c  transparent #dbbe18 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero section
--------------------------------------------------------------*/
.hero {
  position: relative;
  margin-top: 0;
  top: 0;
  height: 100vh;
  min-height: 800px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero .container-fluid {
  padding: 0;
  max-width: none;
  width: 100%;
}

.hero .carousel {
  height: 100%;
  width: 100%;
}

.hero .carousel-inner {
  height: 100%;
  width: 100%;
}

.hero .carousel-item {
  height: 100%;
  width: 100%;
}

.hero .carousel-item img {
  height: 100vh;
  min-height: 800px;
  object-fit: cover;
  width: 100%;
}

.hero .carousel-indicators {
  bottom: 30px;
  z-index: 10;
}

.hero .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #dc2a1c;
  margin: 0 5px;
}

.hero .carousel-indicators .active {
  background-color: #dc2a1c;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 80px;
  height: 80px;
  background-color: rgba(220, 42, 28, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.hero .carousel-control-prev {
  left: 50px;
}

.hero .carousel-control-next {
  right: 50px;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background-color: rgba(220, 42, 28, 1);
}

/* Responsive adjustments for full-width carousel */
@media (max-width: 991px) {
  .hero {
    height: 80vh;
    min-height: 600px;
  }
  
  .hero .carousel-item img {
    height: 80vh;
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero .carousel-item img {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 60px;
    height: 60px;
  }
  
  .hero .carousel-control-prev {
    left: 20px;
  }
  
  .hero .carousel-control-next {
    right: 20px;
  }
  
  .hero .carousel-indicators li {
    width: 12px;
    height: 12px;
  }
}

.hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #000000;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .hero .btn-watch-video {
    font-size: 14px;
    margin: 10px 0;
    padding: 8px 20px;
  }
}

.hero .btn-watch-video i {
  line-height: 0;
  color: #000000;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #dc2a1c;
}

.button-hero {
  padding: 0.4em 1.5em;
  margin: 5px 0 0 0;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-hero:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #ff3c00,
    #7a00ff,
    #ff00c8,
    #ff7300cb
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-hero 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-hero {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.button-hero:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #febb00;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.hero .hero-img {
  position: absolute;
  top: 10%;
  right: 0%;
}

.hero .hero-img img {
  width: 80%;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 50px;
    max-height: 90vh;
    text-align: center;
  }

  .hero .heading {
    margin-top: 20px;
  }

  .hero .heading h1 {
    font-size: 1.7rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero .hero-img {
    position: absolute;
    top: 10%;
    right: 1%;
  }

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    max-height: 100vh;
    text-align: center;
  }

  .hero .heading {
    margin-top: 10px;
  }

  .hero .hero-img {
    position: absolute;
    top: 48%;
    right: 0%;
  }

  .hero .hero-img img {
    width: 40%;
  }
}

@media (max-width: 702px) {
  .hero .hero-img {
    position: absolute;
    top: 50%;
    right: 0%;
  }

  .hero .hero-img img {
    width: 40%;
  }
}

@media (max-width: 640px) {
  .hero .hero-img {
    position: absolute;
    top: 50%;
    right: 0%;
  }

  .hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .hero .hero-img {
    position: absolute;
    top: 59%;
  }
}

@media (max-width: 425px) {
  .hero {
    height: 80vh;
  }

  .hero .hero-img {
    display: none;
  }
}

@media (max-width: 1145px) and (min-width: 991px) {
  .hero .hero-img {
    position: absolute;
    top: 20%;
    right: 0%;
  }
}

.hero-play {
  width: 60px;
  height: auto;
}

.glightbox_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glightbox_video:hover .outer_circle {
  stroke-dashoffset: 410;
  transition: stroke 0.7s 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
}

.glightbox_video:hover .inner-circle {
  fill: #bf2428;
  transition: fill 0.4s 0.3s ease-out;
}

.glightbox_video:hover .play {
  fill: white;
  transition: fill 0.4s 0.3s ease-out;
}

.section-boxes-container {
  background: rgb(255, 250, 250);
}

.section-boxes {
  background: radial-gradient(circle, #f5f5f5, #888888);
  border-radius: 20px;
  margin-top: -120px;
  position: absolute;
  z-index: 9;
}

.section-boxes .span {
  font-weight: 800;
}

@media (max-width: 768px) {
  .section-boxes {
    display: none;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  background: linear-gradient(
    300deg,
    rgba(136, 136, 136, 1),
    rgba(245, 245, 245, 1)
  );
  background-size: cover;
  min-height: 50vh;
  margin-top: 0;
  top: 0;
  padding-top: 100px;
}

.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  padding: 20px 0;
  position: relative;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ff5e14;
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  background: rgb(255, 250, 250);
}

.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #000000;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: #ff5e14;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff5e14 50%, #ff6a1477 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  z-index: 2;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 94, 20, 0.712);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid #ff9914;
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
  background: rgb(245, 245, 245);
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000000;
  opacity: 1;
  background-color: #000000;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5e14;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
  background: #000000;
}

.stats-counter img {
  width: 300px;
  height: auto;
}

.stats-counter .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
  color: #ff5e14;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: #ff5e14;
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: #ff5e14;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-section {
  background: rgb(255, 250, 250);
  color: #000000;
}

.section-lead {
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}

.service a {
  color: #e78c14;
  display: block;
}

.service h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #FF6666;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.services-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.service {
  background: rgba(245, 245, 245, 1);
  box-shadow: rgba(255, 255, 255, 0.212);
  margin: 20px;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service i {
  font-size: 3.45rem;
  margin: 1rem 0;
}

.service1 i,
.service1 h4,
.service1 .service-cta {
  color: #dc2a1c;
}

.service1:hover {
  border: 2px solid #42b7ca;
}

.service2 i,
.service2 h4,
.service2 .service-cta {
  color: #dc2a1c ;
}

.service2:hover {
  border: 2px solid #c8ca42;
}

.service3 i,
.service3 h4,
.service3 .service-cta {
  color: #dc2a1c;
}

.service3:hover {
  border: 2px solid #e48213;
}

.service .service-cta span {
  font-size: 0.6rem;
}

.service > * {
  flex: 1 1 100%;
}

.service .service-cta {
  align-self: flex-end;
}

@media all and (max-width: 900px) {
  .services-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Brand elevation
--------------------------------------------------------------*/
.brand-elevation {
  position: relative;
  background: rgb(255, 250, 250);
  margin: 0 auto;
  min-height: 100vh;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
}

.bg {
  position: fixed;
  top: -4rem;
  left: -12rem;
  z-index: -1;
  opacity: 0;
}

.bg2 {
  position: fixed;
  bottom: -2rem;
  right: -3rem;
  z-index: -1;
  width: 9.375rem;
  opacity: 0;
}

.brand-elevation > div span {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: #717171;
}

.brand-elevation h3 {
  text-transform: capitalize;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4375rem, 1.25rem + 0.75vw, 2rem);
  background-color: #005baa;
  background-image: linear-gradient(45deg, #FF6666, #e4ad15);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.brand-elevation > div hr {
  display: block;
  background: #ff5e14;
  height: 0.25rem;
  width: 6.25rem;
  border: none;
  margin: 1.125rem 0 1.875rem 0;
}

.brand-elevation > div p {
  line-height: 1.6;
}

.brand-elevation a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #717171;
  font-weight: 500;
  background: #fff;
  border-radius: 3.125rem;
  transition: 0.3s ease-in-out;
}

.galley > div > a {
  border: 2px solid #c2c2c2;
  margin-top: 2.188rem;
  padding: 0.625rem 1.875rem;
}

.brand-elevation > div > a:hover {
  border: 0.125rem solid #005baa;
  color: #005baa;
}

.brand-elevation .brand-elevation-swiper {
  width: 100%;
  padding-top: 1.125rem;
}

.brand-elevation .swiper-pagination-bullet,
.brand-elevation .swiper-pagination-bullet-active {
  background: #fff;
}

.brand-elevation .swiper-pagination {
  bottom: 1.25rem !important;
}

.brand-elevation .swiper-slide {
  width: 18.75rem;
  height: 28.125rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.brand-elevation .swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  padding: 0 0 0 1.563rem;
  text-transform: uppercase;
}

.brand-elevation .swiper .overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.719);
  display: flex;
  padding-top: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.brand-elevation .swiper-slide p {
  color: #dadada;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  padding: 0 1.563rem;
  line-height: 1.6;
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-elevation .swiper-slide a {
  margin: 1.25rem 1.563rem 3.438rem 1.563rem;
  padding: 0.438em 1.875rem;
  font-size: 0.9rem;
}

.brand-elevation .swiper-slide a:hover {
  color: #005baa;
}

.brand-elevation .swiper-slide div {
  display: none;
  opacity: 0;
  padding-bottom: 0.625rem;
}

.brand-elevation .swiper-slide-active div {
  display: block;
  opacity: 1;
}

.brand-elevation .swiper-slide--one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/app/lastiksaklama.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/app/tire4.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--four {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/app/tire4.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--five {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/sokme3.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-3d .swiper-slide-shadow-left,
.brand-elevation .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

@media screen and (min-width: 48rem) {
  .brand-elevation {
    display: flex;
    align-items: center;
  }

  .bg,
  .bg2 {
    opacity: 0.1;
  }
}

@media screen and (min-width: 93.75rem) {
  .brand-elevation-swiper {
    width: 85%;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(231, 222, 218, 0.8), rgba(82, 81, 81, 0.884)), url("../img/Meslas-Otomotiv.png") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #25D366;
  border: 2px solid #25D366;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ff5e14;
  border: 2px solid #ff5e14;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: 	rgb(255, 250, 250);
}

.contact .info {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  padding: 30px;
  background: rgba(245, 245, 245, 1);
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #dc2a1c;
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(245, 245, 245, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #000000;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #141414;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #dc2a1c;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #dc2a1c;
  color: #000000;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #dc2a1c;
  border-bottom: 3px solid #dc2a1c;
  padding: 30px;
  background: rgba(245, 245, 245, 1);
  box-shadow: 0 0 24px 0 rgba(255, 255, 255, 0.09);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #dc2a1c;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #000000;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #dc2a1c;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #dc2a1c;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# News letter
--------------------------------------------------------------*/
.newsletter {
  padding: 50px 0;
  background: #000000;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}

.newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

.newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #dc2a1c;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.newsletter form input[type="submit"]:hover {
  background: #dc2a1c;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  width: 100%;
  height: auto;
  position: relative;
  max-height: 200px;
  object-fit: cover;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  color: #dc2a1c;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4:a:hover {
  color: #742e0d;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #222;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cursor
--------------------------------------------------------------*/
.cursor,
.cursor2,
.cursor3,
.cursor-dot {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  mix-blend-mode: difference;
  -webkit-transition: all 50ms linear;
  transition: all 50ms linear;
}

.cursor {
  background-color: #fff;
  height: 0;
  width: 0;
  z-index: 99999;
}

.cursor2,
.cursor3 {
  height: 26px;
  width: 26px;
  z-index: 99998;
  -webkit-transition: all 0.05s ease-out;
  transition: all 0.05s ease-out;
}

.cursor2.hover,
.cursor3.hover {
  -webkit-transform: scale(2) translateX(-25%) translateY(-25%);
  transform: scale(2) translateX(-25%) translateY(-25%);
  border: none;
}

.cursor2 {
  border: 2px solid #fff;
}

.cursor2.hover {
  background: rgba(255, 255, 255, 1);
}

.cursor-dot {
  background-color: #fff;
  height: 6px;
  width: 6px;
  z-index: 99997;
}

/*--------------------------------------------------------------
# Whatsapp Chat
--------------------------------------------------------------*/
#whatsapp-chat {
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(32, 33, 36, 0.28);
  bottom: 70px;
  left: 20px;
  overflow: hidden;
  z-index: 10;
  animation-name: showchat;
  animation-duration: 0.5s;
  transform: scale(1);
}

a.chat-toggler {
  background: rgba(255, 255, 255, 0.671);
  position: fixed;
  display: flex;
  z-index: 98;
  bottom: 20px;
  left: 20px;
  padding: 7px 15px;
  border-radius: 30px;
  box-shadow: 0 1px 5px rgba(32, 33, 36, 0.28);
  color: #444;
  text-decoration: none;
  color: #dc2a1c;
}

a.chat-toggler i {
  transform: scale(1);
  margin: 0 7px 0 0;
}

.whatsapp-chat-header {
  background: #095e54;
  color: #fff;
  padding: 10px;
}

.whatsapp-chat-header h3 {
  margin: 0;
}

.whatsapp-chat-name {
  margin-top: -25px;
}

.whatsapp-chat-name .chat-name {
  font-weight: 600;
}

.whatsapp-chat-avatar {
  margin-bottom: 20px;
}

.whatsapp-chat-avatar:after {
  content: "";
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  background-color: #4ad504;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #095e54;
  left: 40px;
  top: 38px;
}

.whatsapp-chat-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  color: #888;
}

#get-nama,
span.chat-nama {
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

.input-container {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
}

.message-input {
  flex-grow: 1;
  border: none;
  border-radius: 20px;
  padding: 10px;
  margin-right: 10px;
}

.send-button {
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.message-box {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.send-msg {
  background-color: #fff;
}

textarea#chat-input {
  border: none;
  width: 100%;
  height: 20px;
  outline: none;
  resize: none;
  padding-bottom: 30px;
  padding-top: 30;
  padding-left: 20px;
}

a#send-it {
  width: 30px;
  padding: 10px 10px 0;
  background: #fff;
}

a#send-it svg {
  fill: #a6a6a6;
  height: 20px;
  width: 20px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}

.first-msg span {
  background: #e2e2e2;
  color: #333;
  border-radius: 10px;
  display: inline-block;
}

.start-chat .message-box {
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}

@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }

  15% {
    background-color: rgb(17, 17, 17);
  }

  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }

  25% {
    background-color: rgb(17, 17, 17);
  }

  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }

  35% {
    background-color: rgb(17, 17, 17);
  }

  45% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
  }
}

.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 50px;
  background-color: rgb(230, 221, 212);
  position: relative;
}

.whatsapp-chat-body:before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
  background: #151414;
  position: relative;
  z-index: 1;
}

.footer-pattern {
  position: relative;
  background: url(../img/footer_pattern.png);
  background-size: cover;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #dc2a1c;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dc2a1c;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #dc2a1c;
}

.footer-widget ul li {
  float: left;
  width: 50%;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: #dc2a1c;
}

.footer-widget-services ul li {
  float: none !important;
  width: 100% !important;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #dc2a1c;
  padding: 13px 20px;
  border: 1px solid #dc2a1c;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0px !important;
}

.translate-container {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  width: fit-content;
  color: #dc2a1c;
  border-radius: 12px;
}

#translate-icon {
  margin-left: 15px;
}

#google_translate_element {
  width: 100%;
  padding: 10px;
}

#google_translate_element select {
  background: #f6edfd;
  color: #dc2a1c;
  border: none;
  border-radius: 3px;
  outline: none;
}

#google_translate_element select:focus {
  border: none;
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #dc2a1c;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #dc2a1c;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-section .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #dc2a1c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer-section .social-links a:hover {
  background: #914b1c;
  color: #fff;
  text-decoration: none;
}

/* Hero Carousel Styles */
.hero .carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.hero .carousel-indicators {
  bottom: 15px;
}

.hero .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #dc2a1c;
}

.hero .carousel-indicators .active {
  background-color: #dc2a1c;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(220, 42, 28, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.hero .carousel-control-prev {
  left: 15px;
}

.hero .carousel-control-next {
  right: 15px;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background-color: rgba(220, 42, 28, 1);
}

/* Responsive adjustments for carousel */
@media (max-width: 991px) {
  .hero .carousel-item img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero .carousel-item img {
    height: 250px;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .hero .carousel-control-prev {
    left: 10px;
  }
  
  .hero .carousel-control-next {
    right: 10px;
  }
}
/* Brand elevation */
.brand-elevation {
  position: relative;
  background: rgb(255, 250, 250);
  margin: 0 auto;
  min-height: 100vh;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
}

.bg {
  position: fixed;
  top: -4rem;
  left: -12rem;
  z-index: -1;
  opacity: 0;
}

.bg2 {
  position: fixed;
  bottom: -2rem;
  right: -3rem;
  z-index: -1;
  width: 9.375rem;
  opacity: 0;
}

.brand-elevation > div span {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: #717171;
}

.brand-elevation h3 {
  text-transform: capitalize;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4375rem, 1.25rem + 0.75vw, 2rem);
  background-color: #005baa;
  background-image: linear-gradient(45deg, #FF6666, #e4ad15);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.brand-elevation > div hr {
  display: block;
  background: #ff5e14;
  height: 0.25rem;
  width: 6.25rem;
  border: none;
  margin: 1.125rem 0 1.875rem 0;
}

.brand-elevation > div p {
  line-height: 1.6;
}

.brand-elevation a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #717171;
  font-weight: 500;
  background: #fff;
  border-radius: 3.125rem;
  transition: 0.3s ease-in-out;
}

.galley > div > a {
  border: 2px solid #c2c2c2;
  margin-top: 2.188rem;
  padding: 0.625rem 1.875rem;
}

.brand-elevation > div > a:hover {
  border: 0.125rem solid #005baa;
  color: #005baa;
}

.brand-elevation .brand-elevation-swiper {
  width: 100%;
  padding-top: 1.125rem;
}

.brand-elevation .swiper-pagination-bullet,
.brand-elevation .swiper-pagination-bullet-active {
  background: #fff;
}

.brand-elevation .swiper-pagination {
  bottom: 1.25rem !important;
}

.brand-elevation .swiper-slide {
  width: 18.75rem;
  height: 28.125rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.brand-elevation .swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  padding: 0 0 0 1.563rem;
  text-transform: uppercase;
}

.brand-elevation .swiper .overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.719);
  display: flex;
  padding-top: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.brand-elevation .swiper-slide p {
  color: #dadada;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  padding: 0 1.563rem;
  line-height: 1.6;
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-elevation .swiper-slide a {
  margin: 1.25rem 1.563rem 3.438rem 1.563rem;
  padding: 0.438em 1.875rem;
  font-size: 0.9rem;
}

.brand-elevation .swiper-slide a:hover {
  color: #005baa;
}

.brand-elevation .swiper-slide div {
  display: none;
  opacity: 0;
  padding-bottom: 0.625rem;
}

.brand-elevation .swiper-slide-active div {
  display: block;
  opacity: 1;
}

.brand-elevation .swiper-slide--one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/sokme1.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/sokme2.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/sokme3.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--four {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/app/tire4.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-slide--five {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/app/lastiksaklama.jpg") no-repeat 50% 50% / cover;
}

.brand-elevation .swiper-3d .swiper-slide-shadow-left,
.brand-elevation .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

@media screen and (min-width: 48rem) {
  .brand-elevation {
    display: flex;
    align-items: center;
  }
  .bg,
  .bg2 {
    opacity: 0.1;
  }
}

@media screen and (min-width: 93.75rem) {
  .brand-elevation-swiper {
    width: 85%;
  }
}
/* Contact Section Improvements */
.contact .row {
  align-items: stretch;
}

.contact .info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact .info > div {
  margin-bottom: 30px;
}

.contact .info iframe {
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact .php-email-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact .php-email-form .form-group input,
.contact .php-email-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact .php-email-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Responsive improvements */
@media (max-width: 992px) {
  .contact .row {
    flex-direction: column;
  }
  
  .contact .col-lg-5,
  .contact .col-lg-7 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact .info > div {
    margin-bottom: 25px;
  }
  
  .contact .info h4 {
    font-size: 18px;
  }
  
  .contact .info p {
    font-size: 14px;
  }
  
  .contact .info iframe {
    height: 250px;
  }
}
/* PunctureSafe Page Styles */
.puncturesafe-hero {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.puncturesafe-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.puncturesafe-hero h2 {
  font-size: 1.8rem;
  color: #dc2a1c;
  margin-bottom: 20px;
  font-weight: 600;
}

.puncturesafe-hero p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* PunctureSafe Cards Section */
.puncturesafe-cards {
  padding: 80px 0;
  background: #fff;
}

.puncturesafe-cards .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.puncturesafe-cards .section-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid #f0f0f0;
}

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

.feature-card .feature-icon {
  margin-bottom: 25px;
}

.feature-card .feature-icon i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* PunctureSafe How It Works */
.puncturesafe-how {
  padding: 80px 0;
  background: #f8f9fa;
}

.puncturesafe-how .section-badge {
  display: inline-block;
  background: #e9ecef;
  color: #6c757d;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.puncturesafe-how h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.puncturesafe-how p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

.puncturesafe-how strong {
  color: #dc2a1c;
  font-weight: 600;
}

.puncturesafe-how img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.puncturesafe-how img:hover {
  transform: translateY(-5px);
}

.contact-info {
  padding: 40px 0;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 2.5rem;
  color: #dc2a1c;
}

.whatsapp-icon {
  background: #25d366;
}

.whatsapp-icon i {
  color: #fff;
}

.contact-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
  font-weight: 500;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-item {
  margin-bottom: 40px;
}

.contact-item i {
  font-size: 2.5rem;
  color: #dc2a1c;
  margin-bottom: 15px;
}

.contact-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 1.1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .puncturesafe-hero {
    padding: 100px 0 60px 0;
    text-align: center;
  }
  
  .puncturesafe-hero h1 {
    font-size: 2.5rem;
  }
  
  .puncturesafe-hero h2 {
    font-size: 1.5rem;
  }
  
  .puncturesafe-cards {
    padding: 60px 0;
  }
  
  .puncturesafe-cards .section-header h2 {
    font-size: 2rem;
  }
  
  .feature-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }
  
  .puncturesafe-how {
    padding: 60px 0;
  }
  
  .puncturesafe-how h3 {
    font-size: 1.8rem;
  }
  
  .puncturesafe-how .row {
    margin-bottom: 40px;
  }
}
/* PunctureSafe Info Section */
.puncturesafe-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.puncturesafe-block {
  margin-bottom: 80px;
}

.puncturesafe-block:last-of-type {
  margin-bottom: 0;
}

.section-badge {
  display: inline-block;
  background: #e9ecef;
  color: #6c757d;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.puncturesafe-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.puncturesafe-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

.puncturesafe-content strong {
  color: #dc2a1c;
  font-weight: 600;
}

.puncturesafe-image {
  position: relative;
}

.puncturesafe-image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.puncturesafe-image:hover img {
  transform: translateY(-5px);
}

.puncturesafe-block.reverse .puncturesafe-content {
  padding-left: 0;
  padding-right: 30px;
}

.puncturesafe-block:not(.reverse) .puncturesafe-content {
  padding-right: 0;
  padding-left: 30px;
}

/* CTA Button Styling */
.puncturesafe-info .btn-primary {
  background: linear-gradient(45deg, #dc2a1c, #ff4757);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 42, 28, 0.3);
}

.puncturesafe-info .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 42, 28, 0.4);
  background: linear-gradient(45deg, #b71c1c, #dc2a1c);
}

/* Responsive Design */
@media (max-width: 992px) {
  .puncturesafe-block {
    margin-bottom: 60px;
  }
  
  .puncturesafe-content {
    margin-bottom: 40px;
  }
  
  .puncturesafe-block.reverse .puncturesafe-content,
  .puncturesafe-block:not(.reverse) .puncturesafe-content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .puncturesafe-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .puncturesafe-info {
    padding: 60px 0;
  }
  
  .puncturesafe-block {
    margin-bottom: 50px;
  }
  
  .puncturesafe-content h3 {
    font-size: 1.6rem;
  }
  
  .puncturesafe-content p {
    font-size: 1rem;
  }
  
  .section-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}
/* PunctureSafe Section Header */
.puncturesafe-info .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.puncturesafe-info .line-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #dc2a1c, #ff4757);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.puncturesafe-info .section-header p {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

/* Responsive için başlık */
@media (max-width: 768px) {
  .puncturesafe-info .section-header h2 {
    font-size: 2.2rem;
  }
  
  .puncturesafe-info .section-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .puncturesafe-info .section-header h2 {
    font-size: 1.8rem;
  }
  
  .puncturesafe-info .section-header p {
    font-size: 1rem;
  }
}
/* Contact Cards Responsive */
@media (max-width: 768px) {
  .contact-cards {
    gap: 25px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .contact-icon i {
    font-size: 2rem;
  }
  
  .contact-card h4 {
    font-size: 1.3rem;
  }
  
  .contact-card p {
    font-size: 1.1rem;
  }
  
  .whatsapp-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* Hero Carousel Caption Styles */
.hero .carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 50px;
  border-radius: 15px;
  max-width: 80%;
  
}

.hero .carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero .carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.5;
}

.carousel-btn {
  display: inline-block;
  background: linear-gradient(45deg, #dc2a1c, #ff4757);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 42, 28, 0.3);
}

.carousel-btn:hover {
  background: linear-gradient(45deg, #b71c1c, #dc2a1c);
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 42, 28, 0.4);
}

/* Responsive Carousel Captions */
@media (max-width: 992px) {
  .hero .carousel-caption {
    bottom: 15%;
    padding: 30px 40px;
    max-width: 85%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 2rem;
  }
  
  .hero .carousel-caption p {
    font-size: 1.1rem;
  }
  
  .carousel-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero .carousel-caption {
    bottom: 10%;
    padding: 25px 30px;
    max-width: 90%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .hero .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .carousel-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero .carousel-caption {
    bottom: 8%;
    padding: 20px 25px;
    max-width: 95%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 1.4rem;
  }
  
  .hero .carousel-caption p {
    font-size: 0.9rem;
  }
}
/* Modern Carousel Caption Styles */
.hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  background: none;
  padding: 0;
  max-width: 50%;
}

.hero .carousel-caption h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero .carousel-caption p {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

.hero .carousel-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #dc2a1c, #ff4533);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 42, 28, 0.3);
}

.hero .carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 42, 28, 0.4);
  color: white;
  text-decoration: none;
}

/* Responsive adjustments for carousel captions */
@media (max-width: 991px) {
  .hero .carousel-caption {
    left: 5%;
    max-width: 60%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 3rem;
  }
  
  .hero .carousel-caption p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero .carousel-caption {
    left: 5%;
    max-width: 80%;
    top: 40%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  
  .hero .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .hero .carousel-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .carousel-caption {
    max-width: 90%;
  }
  
  .hero .carousel-caption h2 {
    font-size: 1.8rem;
  }
  
  .hero .carousel-caption p {
    font-size: 0.9rem;
  }
}
.brand-elevation .swiper-slide--six {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("../img/punc.png") no-repeat 50% 50% / cover;
}
/* PunctureSafe Video Section */
.puncturesafe-videos {
  padding: 80px 0;
  background: #f8f9fa;
}

.puncturesafe-videos .section-badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.puncturesafe-videos .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.puncturesafe-videos .more-info-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.puncturesafe-videos .more-info-link:hover {
  color: #0056b3;
  text-decoration: none;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  cursor: pointer;
}

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

.video-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 123, 255, 0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  background: rgba(0, 123, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: white;
  font-size: 24px;
  margin-left: 3px;
}

.video-info {
  padding: 25px;
}

.video-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.video-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .puncturesafe-videos .section-header h2 {
    font-size: 2rem;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-info h4 {
    font-size: 1.1rem;
  }
}
/* Enhanced Contact Section - Corporate Style */
.contact-info-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e8e9ea;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2a1c, #b71c1c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  border-color: #dc2a1c;
  box-shadow: 0 8px 25px rgba(220, 42, 28, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.contact-icon.whatsapp-icon {
  background: #f8f9fa;
  border-color: #e9ecef;
}

.contact-info-card:hover .contact-icon {
  background: #dc2a1c;
  border-color: #dc2a1c;
}

.contact-info-card:hover .contact-icon.whatsapp-icon {
  background: #25d366;
  border-color: #25d366;
}

.contact-icon i {
  font-size: 32px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.contact-info-card:hover .contact-icon i {
  color: white;
}

.contact-info-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-info-card p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #dc2a1c;
  text-decoration: none;
  border: 2px solid #dc2a1c;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-btn.whatsapp-btn {
  color: #25d366;
  border-color: #25d366;
}

.contact-btn:hover {
  background: #dc2a1c;
  color: white;
  text-decoration: none;
}

.contact-btn.whatsapp-btn:hover {
  background: #25d366;
  color: white;
}

/* Map Container - Corporate Style */
.map-container {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e9ea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
  background: #212529;
  color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.map-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #dc2a1c;
}

.map-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.map-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0;
  font-weight: 300;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.map-wrapper iframe {
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%);
}

.map-footer {
  background: #f8f9fa;
  padding: 40px 30px;
  border-top: 1px solid #e9ecef;
}

.map-info {
  padding: 0 15px;
}

.map-info h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.map-info h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #dc2a1c;
}

.map-info p {
  color: #495057;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}

.map-info strong {
  color: #212529;
  font-weight: 600;
}

/* Section Header Enhancement */
.contact .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #212529;
  letter-spacing: -1px;
}

.contact .section-header p {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-info-card {
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  
  .map-header {
    padding: 35px 25px;
  }
  
  .map-header h3 {
    font-size: 2rem;
  }
  
  .map-footer {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .map-header {
    padding: 30px 20px;
  }
  
  .map-header h3 {
    font-size: 1.8rem;
  }
  
  .map-footer {
    padding: 30px 20px;
  }
  
  .map-wrapper iframe {
    height: 350px !important;
  }
  
  .map-info {
    padding: 0;
    margin-bottom: 25px;
  }
}
/* Mini Contact Cards Overlay */
.mini-contact-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.mini-contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mini-contact-card:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mini-contact-icon {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mini-contact-icon.whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.mini-contact-icon i {
  font-size: 16px;
  color: #6c757d;
}

.mini-contact-icon.whatsapp i {
  color: white;
}

.mini-contact-card:hover .mini-contact-icon {
  background: #dc2a1c;
  border-color: #dc2a1c;
}

.mini-contact-card:hover .mini-contact-icon.whatsapp {
  background: #128c7e;
  border-color: #128c7e;
}

.mini-contact-card:hover .mini-contact-icon i {
  color: white;
}

.mini-contact-info {
  flex: 1;
}

.mini-contact-info h6 {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mini-contact-info p {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments for mini cards */
@media (max-width: 768px) {
  .mini-contact-overlay {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 15px;
    left: auto;
    bottom: auto;
  }
  
  .mini-contact-card {
    min-width: auto;
    flex: 1;
    min-width: 140px;
    padding: 10px 12px;
  }
  
  .mini-contact-icon {
    width: 30px;
    height: 30px;
  }
  
  .mini-contact-icon i {
    font-size: 14px;
  }
  
  .mini-contact-info h6 {
    font-size: 11px;
  }
  
  .mini-contact-info p {
    font-size: 10px;
  }
}
/* Simple Map */
.simple-map {
  position: relative;
  overflow: hidden;
}

.simple-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}
/* Compact Contact Info */
.contact-info-corporate {
  background: #ffffff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #e8e9ea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.contact-item:hover {
  background: #f8f9fa;
}

.contact-icon {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon.whatsapp {
  background: #f0f9f4;
  border-color: #25d366;
}

.contact-item:hover .contact-icon {
  background: #dc2a1c;
  border-color: #dc2a1c;
}

.contact-item:hover .contact-icon.whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.contact-icon i {
  font-size: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.contact-icon.whatsapp i {
  color: #25d366;
}

.contact-item:hover .contact-icon i {
  color: white;
}

.contact-details {
  flex: 1;
  min-width: 0;
}

.contact-details h6 {
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-details p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.contact-link {
  display: inline-block;
  font-size: 13px;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #dc2a1c;
  text-decoration: none;
}

.contact-link.whatsapp-link:hover {
  color: #25d366;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-info-corporate {
    padding: 15px;
  }
  
  .contact-item {
    padding: 10px 5px;
  }
}

@media (max-width: 768px) {
  .contact-info-corporate {
    padding: 0;
    margin-top: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .contact-item {
    padding: 8px 5px;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #e8e9ea;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  .contact-icon {
    width: 28px;
    height: 28px;
  }
  
  .contact-icon i {
    font-size: 13px;
  }
  
  .contact-details h6 {
    font-size: 10px;
    margin-bottom: 2px;
  }
  
  .contact-details p,
  .contact-link {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .contact-details p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* Section boxes mobile layout */
@media (max-width: 768px) {
  .section-boxes-container .section-boxes {
    margin: 0;
    padding: 15px 10px;
  }
  
  .section-boxes-container .col-lg-4 {
    margin-bottom: 20px;
  }
  
  .section-boxes-container .col-lg-4:nth-child(3) {
    display: none;
  }
  
  .section-boxes-container i {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .section-boxes-container strong {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
  }
  
  .section-boxes-container p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }
}
/* Mobile Floating Action Buttons - Professional */
.mobile-fab-container {
  position: fixed;
  bottom: 25px;
  left: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.fab-btn {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.fab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  pointer-events: none;
}

.fab-btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-fab {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-fab:hover {
  background: linear-gradient(135deg, #128c7e, #0d5d4a);
  color: white;
}

.phone-fab {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.phone-fab:hover {
  background: linear-gradient(135deg, #1a252f, #2c3e50);
  color: white;
}

.location-fab {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.location-fab:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  color: white;
}

.fab-btn i {
  font-size: 24px;
  z-index: 1;
  position: relative;
}

/* Professional tooltip */
.fab-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.fab-btn:hover::after {
  opacity: 1;
  visibility: visible;
  left: 65px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-fab-container {
    display: flex;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .mobile-fab-container {
    bottom: 20px;
    left: 15px;
  }
  
  .fab-btn {
    width: 50px;
    height: 50px;
  }
  
  .fab-btn i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# PunctureSafe Professional Styles
--------------------------------------------------------------*/

/* Hero Section Professional */
.puncturesafe-hero-professional {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.puncturesafe-hero-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-professional {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary-professional:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  color: white;
  text-decoration: none;
}

.btn-outline-professional {
  background: transparent;
  border: 2px solid white;
  padding: 13px 28px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-professional:hover {
  background: white;
  color: #667eea;
  text-decoration: none;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
  color: #667eea;
}

.floating-card span {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Features Section Professional */
.puncturesafe-features-professional {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header-professional {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge-professional {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-header-professional h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.section-header-professional p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-professional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card-professional {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.feature-card-professional:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.feature-icon-professional {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon-professional i {
  font-size: 28px;
  color: white;
}

.icon-blue { background: linear-gradient(135deg, #007bff, #0056b3); }
.icon-pink { background: linear-gradient(135deg, #e91e63, #ad1457); }
.icon-green { background: linear-gradient(135deg, #28a745, #1e7e34); }
.icon-orange { background: linear-gradient(135deg, #fd7e14, #e55a00); }
.icon-red { background: linear-gradient(135deg, #dc3545, #a71e2a); }
.icon-cyan { background: linear-gradient(135deg, #17a2b8, #117a8b); }

.feature-card-professional h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.feature-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #495057;
}

.feature-list i {
  color: #28a745;
  margin-right: 10px;
  font-size: 16px;
}

/* Technology Section Professional */
.puncturesafe-technology-professional {
  padding: 100px 0;
  background: white;
}

.technology-content {
  padding: 20px 0;
}

.technology-content .lead {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.technology-features {
  margin-bottom: 40px;
}

.tech-feature {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tech-feature:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.tech-icon i {
  color: white;
  font-size: 20px;
}

.tech-content h5 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.tech-content p {
  color: #6c757d;
  margin: 0;
  font-size: 0.95rem;
}

.technology-visual {
  position: relative;
}

.tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.tech-step {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.step-text {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.step-1 { top: 20%; right: 10%; animation-delay: 0s; }
.step-2 { top: 50%; left: 5%; animation-delay: 1s; }
.step-3 { bottom: 20%; right: 15%; animation-delay: 2s; }

.certifications {
  margin-bottom: 40px;
}

.cert-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.cert-item i {
  font-size: 24px;
  color: #28a745;
  margin-right: 15px;
}

.cert-item h6 {
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.cert-item span {
  color: #6c757d;
  font-size: 0.9rem;
}

.performance-metrics {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
  min-width: 120px;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Section Professional */
.contact-professional {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-professional {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-professional h4 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-group-professional {
  margin-bottom: 25px;
}

.form-group-professional label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #495057;
}

.form-control-professional {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control-professional:focus {
  outline: none;
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-info-professional {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-info-professional h4 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-item-professional {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item-professional:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-icon-professional {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon-professional.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon-professional i {
  color: white;
  font-size: 20px;
}

.contact-details h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.contact-details p {
  color: #6c757d;
  margin: 0;
}

.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-link:hover {
  color: #128c7e;
  text-decoration: none;
}

.business-hours {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.business-hours h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .floating-card {
    display: none;
  }
  
  .section-header-professional h2 {
    font-size: 2rem;
  }
  
  .features-grid-professional {
    grid-template-columns: 1fr;
  }
  
  .feature-card-professional {
    padding: 30px 20px;
  }
  
  .performance-metrics {
    justify-content: center;
  }
  
  .contact-form-professional,
  .contact-info-professional {
    padding: 30px 20px;
  }
}
/* Form Message Styles */
.form-message {
  margin-top: 20px;
}

.alert {
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert i {
  font-size: 18px;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f1b0b7);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb);
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

.btn-close {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  cursor: pointer;
  margin-left: auto;
}

.btn-close:hover {
  opacity: 1;
}

/* Form Animation */
.form-control-professional:focus {
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.btn-primary-professional:active {
  transform: scale(0.98);
}

/* Loading State */
.btn-primary-professional.loading {
  position: relative;
  color: transparent;
}

.btn-primary-professional.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}