@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Piazzolla:ital,opsz,wght@0,8..30,100..900;1,8..30,100..900&display=swap');

:root {
  /* Primary color */
  --primary-color: #0039AD;

  /* Text colors */
  --nav-text-color: #1F1F1F;
  --text-color: #3F3F3F;
  --text-light: #555;
  --text-on-primary: #ffffff;
  --main-title-color: #656565;
  --sub-title-color: #3F3F3F;
  --primary-color-hover: #002f8a;

  /* Backgrounds */
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Font sizes (responsive using clamp) */
  --fs-h1: clamp(2rem, 5vw, 3rem);
  --fs-h2: clamp(1.5rem, 4vw, 2rem);
  --fs-h3: clamp(1.25rem, 3vw, 1.5rem);
  --fs-body: clamp(0.9rem, 2.5vw, 1rem);
  --fs-small: 0.875rem;

  /* Font family */
  --font-family: "Open Sans", sans-serif;
  --title-font-family: "Montserrat", sans-serif;
  --sub-title-font-family: "Piazzolla", serif;
}


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

body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-color);
  /* background-color: var(--bg-color); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--fs-h1);
}

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

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

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.title {
  width: fit-content;
  font-family: var(--title-font-family);
  font-weight: 800;
  font-size: var(--fs-h2);
  color: #656565;
}

.title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #C7C7C7;
  margin-top: 8px;
  border-radius: 3px;
  margin: auto;
}

.sub-title {
  font-family: var(--sub-title-font-family);
  font-size: 40px;
  font-weight: 700;
  color: #3F3F3F;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-light);
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 10px;
}

.main-header {
  display: flex;
  justify-content: space-between;
}


.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}

/* STICKY HEADER (HIDDEN INITIALLY) */
.sticky-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(-100%);

  /* Hidden */
  transition: transform 0.3s ease;
}

.sticky-logo {
  width: 70px;
}

.sticky-logo img {
  width: 100%;
  height: auto;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: var(--bg-color);
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  height: 100px;
}

.logo-wrapper {
  position: relative;
}

.logo-shape {
  background: transparent;
  padding: 5px 25px 0px 25px;
  width: 250px;
  text-align: center;
  position: absolute;
  min-height: 180px;
  top: -30px;
}

.logo-shape::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

}

.logo img {
  width: 70px;
  height: 70px;
}

.logo-text {
  position: relative;
  z-index: 2;
}

.logo-text img {
  width: 100%;
  height: auto;

}

.logo-text h3 {
  font-size: 11px;
  color: #0039AD;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3;
}

.logo-text p {
  font-size: 11px;
  color: #0039AD;
  font-weight: 600;
}

/* Navigation container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;

  color: var(--nav-text-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo/Brand */
.nav-brand {
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

/* Navigation links */
.nav-menu {
  display: flex;
  list-style: none;
  margin-bottom: 0px;

}

.nav-item {
  margin-left: 1.2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--nav-text-color);
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
}



.nav-link:hover {
  color: #0039AD;

}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  /* border: 8px solid #ffffff2e; */
  padding: 20px 10px;
  width: fit-content;
  background: #ffffff2e;
}

.btn-secondary {
  background: #0039AD;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .slide-item {
  position: relative;
  height: 100vh;
}

/* Image zoom: default scale 1, active slides scale up */
.hero-carousel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
  /* slow smooth zoom */
  will-change: transform;
  display: block;
}

.owl-item.active img {
  transform: scale(1.1);
}

/* zoom-in when active */

/* dark overlay on each slide */
.overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 1;
}

/* Content centered */
.slide-content {
  position: absolute;
  top: 60%;
  left: 29%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: left;
  color: #fff;
  width: 85%;
  max-width: 680px;
  padding: 0 16px;
}

.slide-content h2 {
  font-size: clamp(26px, 5vw, 56px);
  margin: 0 0 12px;
  line-height: 1.05;
}

.slide-content p {
  font-size: clamp(14px, 2.2vw, 20px);
  margin: 0 0 20px;
  opacity: 0.95;
}

.btn-hero {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.03);
  background: #111;
  color: #fff;
}

/* Text animation initial state */
.animate-text {
  opacity: 0;
  transform: translateY(16px);
}

/* Owl nav arrow styling */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9) !important;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.owl-nav .owl-prev {
  left: 18px;
}

.owl-nav .owl-next {
  right: 18px;
}

.owl-nav button span {
  font-size: 20px;
  color: #111;
  display: inline-block;
  line-height: 1;
}

/* make dots smaller if used */
.owl-dots {
  bottom: 18px;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}


.about-section {
  padding: 60px 0px;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-images {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: left;
}

.img-back {
  width: 450px;
  border-radius: 15px;
}

.img-front {
  position: absolute;
  bottom: -40px;
  width: 310px;
  right: 20px;
  border-radius: 15px;
}

.about-content {
  flex: 1.2;
}

.about-content h4 {
  color: #444;
  font-size: 18px;
  font-weight: 600;
}

.about-content h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ccc;
  margin-top: 5px;
  border-radius: 3px;
}

.about-content h2 {
  font-size: 28px;
  color: #222;
  font-weight: 700;
  margin: 15px 0;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
}

.about-list li {
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.check {
  color: #fff;
  background: #0056d2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  margin-right: 10px;
}

.service {
  background: #f7f7fa;
  padding: 30px 0px;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}



.service-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

}

.service-item {
  position: relative;
  width: 31.2%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;

  transition: all 0.4s ease;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Bottom overlay */
.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--primary-color);
  color: #fff;
  padding: 20px 25px;

  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-icon {
  font-size: 26px;
  color: #ffc107;
  margin-bottom: 6px;
}

.service-info h3 {
  font-size: 16px;
  font-weight: 600;
}

.service-info p,
.service-info a {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease;
}

/* Hover effect */
.service-item:hover img {
  transform: scale(1.05);
}

.service-item:hover .service-info {
  height: 100%;
  border-radius: 10px;
  justify-content: center;
  background: #0d6dfd95;
}

.service-item:hover .service-info p,
.service-item:hover .service-info a {
  opacity: 1;
  height: auto;
  margin-top: 10px;
}

.service-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.service-info a:hover {
  color: #ffc107;
}

.more-service-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.why-choose-us {
  padding: 40px 0;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.why-item p {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.why-images {
  position: relative;
  width: 880px;
  height: 380px;
}

.img-top {
  width: 330px;
  border-radius: 20px;
  position: absolute;
  left: 50px;
  top: -120px;
  z-index: 12;
}

.img-bottom {
  width: 652px;
  border-radius: 22px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.faq-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 0px;
  background: #f5f5f5;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.faq-left {
  flex: 1;
  max-width: 450px;
}

.faq-left h2 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
}

.faq-underline {
  width: 60px;
  height: 8px;
  background: #d6d6d6;
  border-radius: 30px;
  margin: 12px 0 25px 0;
}

.faq-left p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-btn {
  background: #003bba;
  padding: 14px 30px;
  color: #fff;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

/* RIGHT SIDE */
.faq-right {
  flex: 1.4;
}

.faq-item {
  border-bottom: 1px solid #dadada;
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: var(--fs-body);
  color: #333;
  font-weight: 500;
  display: inline-flex;
  text-align: left;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.faq-icon {
  background: #0047ba;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}

/* ANSWER BOX – CLOSED */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  /* + becomes × */
}

.testimonial-slider {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}



.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("../assets/images/Testimonials-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
  color: #fff;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 65%);
  backdrop-filter: blur(2px);
}

.testimonial-title {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonial-card {
  position: relative;
  z-index: 3;
  width: 70%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 40px 50px;
  color: #fff;
}

.stars {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 22px;
}

.quote-icon-left,
.quote-icon-right {
  font-size: 28px;
  opacity: 0.9;
}

.quote-icon-right {
  text-align: right;
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.6;
  margin: 10px 0 0px 0;
}

.testimonial-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.arrows {
  display: flex;
  gap: 18px;
  position: relative;
  margin: 20px 0px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #fff;
}

.footer {
  width: 100%;
  background: #ffffff;
  padding: 40px 0px 0px 0px;
  font-family: Arial, sans-serif;
}

/* .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;

} */

/* LEFT COLUMN */


.footer-logo {
  width: 130px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-circle:hover {
  background: #ddd;
}

/* MIDDLE COLUMN */
.footer-middle h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-middle p {
  font-size: 18px;
  color: #444;
  margin: 5px 0 15px;
}

.footer-middle .email {
  color: #0066cc;
  text-decoration: underline;
}

/* RIGHT COLUMN */
.footer-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-right ul {
  padding: 0;
  list-style: none;
}

.footer-right ul li {
  font-size: 18px;
  color: #444;
  margin-bottom: 12px;
}

/* --- BOTTOM COPYRIGHT BAR --- */
.footer-bottom {
  width: 100%;
  background: #003ea3;
  color: #fff;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-links span.dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.pill {
  background: #f5f5f5;
  padding: 10px 20px;
  border-radius: 30px;
  border: 0;
  font-size: 16px;
  margin-top: 50px;
}

.headline {
  font-size: 42px;
  font-weight: 800;
  margin-top: 20px;
}

.carousel-container {
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: 0.6s ease-in-out;
}

.slide {
  min-width: 33.3%;
  padding: 10px;

}


.slide img {
  width: 100%;
  height: 330px;
  padding: 10px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .4s ease;
}

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

.dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 40px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #0e1a2b;
  width: 50px;
}

.gallery-wrapper {
  background-color: #f8f9fa;
  padding: 40px 0;
}


/* Responsive styles */

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .faq-left,
  .faq-right {
    max-width: 100%;
  }

  .faq-question {
    font-size: 18px;
  }
}


@media (max-width:700px) {


  .slide {
    width: 50%;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .btn-hero {
    padding: 10px 18px;
  }

  .img-back {
    width: 100%;
    margin-bottom: 20px;
  }

  .img-front {
    display: none;
  }
}



@media (max-width: 768px) {


  .slide {
    width: 50%;
  }

  header {
    padding: 0 20px;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: .5rem 0;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 576px) {


  .slide {
    min-width: 100%;
  }

  .arrow {
    display: none;
  }

  /* hide arrows on mobile */


  .service-item {
    width: 100%;
  }

  .img-front {
    display: none;
  }

  .img-back {
    margin-bottom: 20px;
  }

  .title {
    text-align: center;
    width: 100%;
  }

  .why-images {
    display: none;
  }

  .testimonial-card {
    padding: 10px 20px !important;
  }

  .testimonials-section {
    height: auto;
    padding: 20px 0px;
  }

  .arrows {
    display: none;
  }

  .footer-left {
    text-align: center;
  }

  .footer-middle {
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .social-icons {
    display: none;
  }

  header {
    padding: 0 20px;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;

  }

  .logo-shape::after {
    height: auto;
  }

  .logo-text img {
    width: 50%;
    height: auto;
  }


  .slide-content {
    position: absolute;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: left;
    color: #fff;
    width: 85%;
    max-width: 680px;
    padding: 0 16px;
  }

  /* 
  .hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 6s ease;
    will-change: transform;
    display: block;
  }

  .hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 6s ease;
    will-change: transform;
    display: block;
  }

  .hero-content h1 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .hero-section {
    height: 100%;
  } */

  .footer-bottom {
    padding: 10px 10px;
    display: block;

  }

  .footer-bottom span {

    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-links {
    display: block;
    text-align: center;
  }

  .footer-links .dot {
    display: none;
  }

  .btn-secondary {
    padding: 12px 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: .5rem 0;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

}

@media (max-width: 430px) {
  .slide {
    min-width: 100%;
  }

  .arrow {
    display: none;
  }

  /* hide arrows on mobile */


  .service-item {
    width: 100%;
  }

  .img-front {
    display: none;
  }

  .img-back {
    margin-bottom: 20px;
  }

  .title {
    text-align: center;
    width: 100%;
  }

  .why-images {
    display: none;
  }

  .testimonial-card {
    padding: 10px 20px !important;
  }

  .testimonials-section {
    height: auto;
    padding: 20px 0px;
  }

  .arrows {
    display: none;
  }

  .footer-left {
    text-align: center;
  }

  .footer-middle {
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .social-icons {
    display: none;
  }

  header {
    padding: 0 20px;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-shape::after {
    height: auto;
  }

  .logo-text img {
    width: 50%;
    height: auto;
  }


  .slide-content {
    position: absolute;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: left;
    color: #fff;
    width: 85%;
    max-width: 680px;
    padding: 0 16px;
  }

  /* 
  .hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 6s ease;
    will-change: transform;
    display: block;
  }

  .hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 6s ease;
    will-change: transform;
    display: block;
  }

  .hero-content h1 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .hero-section {
    height: 100%;
  } */

  .footer-bottom {
    padding: 10px 10px;
    display: block;

  }

  .footer-bottom span {

    display: block;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-links {
    display: block;
    text-align: center;
  }

  .footer-links .dot {
    display: none;
  }

  .btn-secondary {
    padding: 12px 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: .5rem 0;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
  }
}

@media (min-width: 275px) {


  .web-slider {
    display: none !important;
  }

  .mobile-hero-section {
    display: block !important;
    margin-top: 60px;
  }

  .mobile-hero-section .hero-carousel .slide-item {
    position: relative;
    height: auto;
  }

  .mobile-hero-section .overlay {
    background: rgba(0, 0, 0, 0.3) !important;
  }

  .mobile-hero-section .hero-content h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .mobile-hero-section .slide-content {
    top: 60% !important;
  }

  .mobile-hero-section .hero-carousel img {
    width: auto;
    height: 100%;
    object-fit: contain !important;
    object-position: top !important;
  }

  .mobile-hero-section .owl-item img {
    transform: none !important;
  }
}

@media (min-width: 768px) {
  .web-slider {
    display: block !important;
  }

  .mobile-hero-section {
    display: none !important;
  }
}