@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= ROOT COLORS ================= */
:root {
    --primary-blue: #0a6c8d;
    --primary-blue-dark: #085a74;
    --white: #ffffff;
    --text-white: #f5f5f5;
    --text-muted: #d9d9d9;
    --accent-red: #E83724;
    --dark: #111111;
}

/* ================= GLOBAL ================= */
* {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
  .container-fluid{
    padding: 0px 60px;
  }
/* ================= NAVBAR ================= */
    .top-bar {
      background: #f8f9fa;
      font-size: 14px;
    }

    .top-bar a {
      color: var(--dark);
      text-decoration: none;
      margin-right: 15px;
    }

    .top-bar .icone i {
      color: #e60000;
      margin-right: 5px;
    }
.navbar {
    background: var(--white);
    height: 90px;
    padding: 0;
    z-index: 999;
    position: fixed;
    width: 100%;
    display: contents;
    overflow-x: hidden;
}

.navbar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    font-weight: 800;
    font-size: 20px;
}

.navbar-nav {
    height: 100%;
    align-items: center;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 300;
    color: #414141;
    margin: 0 14px;
    padding: 0;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* ACTIVE UNDERLINE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* SOCIAL ICONS */
.social-icons a {
    /* margin-left: 33px; */
    font-size: 18px;
    color: #414141;
    border: 1px solid gray;
    border-radius: 50%;
    padding: 2px 4px 2px 4px !important;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ================= OFFCANVAS DRAWER ================= */
.offcanvas {
    width: 280px;
    padding: 20px;
    background: var(--white);

    z-index: 9999;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
    position: absolute;
    top: -2%;
    right: 0%;
}

.offcanvas .navbar-logo {
    height: 60px;
}

.offcanvas .nav-link {
    font-size: 15px;
    font-weight: 300;
    padding: 10px 0;
    color: #414141;
}
.offcanvas .navbar-nav .nav-link::after{
    
    bottom: 0;
}
/* ================= HERO ================= */
.hero-section {
    min-height: 85vh;
    padding-top: 110px;
    padding-bottom: 10px;
    color: var(--text-white);
    position: relative;
    /* background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('/assets/images/banner.jpg') center/cover no-repeat; */
}
  .outlined-text {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2.5px #ffffff;
    text-transform: capitalize;
    letter-spacing: 1px;
  }
/* HERO CONTENT */
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.8px;
    /* text-transform: uppercase; */
}

.hero-content p {
    margin: 22px 0;
    max-width: 520px;
    font-size:1.2rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: var(--text-muted);
}

/* HERO BUTTONS */
.hero-btn .btn {
    /* border-radius: 50px; */
    padding: 11px 28px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-right: 14px;
    transition: all 0.3s ease;
}

.hero-btn .btn-primary,
.hero-btn .btn-outline-light {
    background: var(--accent-red);
    border: 1px solid var(--accent-red);
    color: var(--white);
}

.hero-btn .btn-primary:hover,
.hero-btn .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue-dark);
}

/* ================= HERO CARDS ================= */
.hero-cards {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
}

/* CARD */
.hero-card {
    width: 185px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
}

/* IMAGE */
.hero-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* CARD LABEL */
.hero-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

/* LABEL COLORS */
.hero-card:nth-child(1) span {
    background: var(--accent-red);
    color: var(--white);
}

.hero-card:nth-child(2) span,
.hero-card:nth-child(3) span {
    background: var(--dark);
    color: var(--white);
}
.hero-btn{
    gap: 11px;
    display: flex;
    flex-wrap: wrap;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-cards {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
    }

    .hero-card {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-section {
    padding-top: 122px;
}
  .container-fluid{
    padding: 0px 40px;
  }
.hero-card img {
    height: 244px;
}
.navbar-nav {
    height: auto;
    align-items: start;
}
}
    .btn-contact {
      background: var(--accent-red);
      color: var(--white) !important;
      padding: 10px 22px;
      font-weight: 500;
      border-radius: 0;
    }

    .btn-contact:hover {
      background: var(--accent-red);
      color: var(--white);
    }
      .about-section {
    padding: 80px 0;
    position: relative;
    z-index: 999;
  }

  /* Image Wrapper */
  .about-img-wrapper {
    position: relative;
  }

  .about-img-wrapper img {
    height: 100%;
    min-height: 450px;
    max-width: 450px;
    width: 100%;
    border-radius: 4px;
  }

  /* Experience Box */
  .experience-box {
    position: absolute;
    bottom: 30%;
    right: -30px;
    background: var(--accent-red);
  color: var(--white);
    padding: 30px 25px;
    text-align: center;
    width: 170px;
    z-index: 2;
    border: 5px solid var(--white);
  }

  .experience-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .experience-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Dots decoration */
  .dots {
    position: absolute;
    right: -47px;
    top: 33%;
    width: 130px;
    height: 120px;
    background-image: radial-gradient(#ff1e1e 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
  }

  /* Content */
  .about-content small {
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 1px;
  }

  .about-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 15px 0;
    color: #111;
  }

  .about-content p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .btn-red {
    background: var(--accent-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
  }

  .btn-red:hover {
    background: var(--accent-red);
  color: var(--white);
  }

  /* Arrow Decoration */
  .arrow-deco {
    position: absolute;
    bottom: -5%;
    right: 5%;

  }

  .arrow-deco span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
    transform: rotate(45deg);
    margin: 6px 0;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .experience-box {
      right: 0;
      bottom: -20px;
    }
  }

  @media (max-width: 769px) {
    .about-content h2 {
      font-size: 1.8rem;
    }

    .experience-box {
      position: absolute;
      bottom: 24%;
      right: 24%;
      margin-top: 20px;
    }
      .dots {
    position: absolute;
    right:16%;
    top: 32%;
    bottom: 33%;
    width: 130px;
    height: 120px;
    background-image: radial-gradient(#ff1e1e 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
  }

  }
   @media (max-width: 526px) {
    .about-content h2 {
      font-size:1.5rem;
    }

    .experience-box {
      position: absolute;
      bottom: -14%;
      right: 0;
      margin-top: 20px;
    }
      .dots {
    position: absolute;
    right:16%;
    top: 72%;
    bottom: 33%;
    width: 130px;
    height: 120px;
    background-image: radial-gradient(#ff1e1e 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
  }
  .container-fluid{
    padding: 0px 10px;
  }
  .hero-section {
    min-height: 49vh;
     padding-top: 13px;
  
}
 .hero-content h1 {
        font-size: 1.2rem !important;
    }
    .outlined-text {
   
    -webkit-text-stroke: 1px #ffffff;

}
.hero-btn .btn {
    /* border-radius: 50px; */
    padding: 11px 12px;
    font-size: 1rem;
  
}
.hero-content p{
    line-height: 1.3;
}
.arrow-deco {
  
    bottom: -5%;
    
}
.about-section {
    padding: 23px 0;
    position: relative;
}

  }
  /* SECTION */
.services-section {
  padding: 70px 0 120px;
  position: relative;
  background: linear-gradient(
    to bottom,
    #1c1c1c 0%,
    #1c1c1c 50%,
    #f5f6f8 50%,
    #f5f6f8 100%
  );
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.small-title {
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 6px;
color: var(--white);
}

.services-divider {
  /* border-color: rgba(255,255,255,0.2); */
  border: 2px solid#fff !important;
  margin: 30px 0 50px;
}

/* CARD */
.service-card-wrapper {
  position: relative;
  max-width: 360px;
  margin: auto;
}

.service-image img {
  width: 100%;
  max-height: 310px;
  height: 100%;
  object-fit: cover;
}

/* CONTENT CARD */
.service-card {
  padding: 25px;
  width: 90%;
  margin: -60px 0 0 auto;
  position: relative;
  z-index: 2;
}

.service-card.red {
  background: var(--accent-red);
  color: var(--white);
}

.service-card.white {
  background: var(--white);
  color: var(--dark);
}
.service-card.gray {
  background: #F5F6F8;
  color: var(--dark);
}
.service-card-wrapper a{
  text-decoration: none;
}
/* TEXT */
.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* READ MORE */
.read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.read-more .icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SWIPER */
.services-slider {  
  overflow: visible;
}

/* NAVIGATION */
.slider-nav {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  position: unset;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  background: #f1f1f1;
  color: var(--dark);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background:var(--accent-red);
  color: var(--white);
}

.swiper-button-prev::after {
  content: "<";
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next::after {
  content: ">";
  font-size: 18px;
  font-weight: bold;
}

/* .swiper-button-next {
  background: var(--accent-red);
  color: var(--white);
} */

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-header h2 {
    font-size: 1.9rem;
  }
  .services-slider {
    overflow: hidden;
  }
  .navbar-logo {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 24px 0 29px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-image img {
    height: 220px;
  }

  .service-card {
    width: 95%;
    padding: 20px;
  }
    .services-header h2 {
    font-size: 1.4rem;
  }
  .services-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 17px 0 17px;
}
}
  .arrows {
    position: absolute;
    bottom: -3%;
    left: 3%;
    /* opacity: 0.3; */
  }
  .section-label {
    color:var(--accent-red);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* Card styles */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.project-card img {
    width: 100%;
    max-height:  450px;
    height:100%;
    object-fit: cover;
}

.project-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
  color: var(--white);
    font-size: 14px;
    padding: 19px 12px;
}

/* Coming soon */
.coming-soon {
    height: 260px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 6px;
    color: #777;
}

/* Top-right arrows */
.carousel-controls-top {
    position: absolute;
    top: 50px;
    right: 35px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
  .carousel-controls-top-ar {
      position: absolute;
      top: 35px;
      left: 35px !important;
      display: flex;
      gap: 10px;
      z-index: 10;
  }

.custom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
  background: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-btn:hover {
    background: #000;
  color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}
/* Section background */
.review-section {
    background: linear-gradient(to bottom, #1b1b1b 50%, #ffffff 50%);
    padding: 80px 0;
}

/* Headings */
.review-label {
    color:var(--accent-red);
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.review-title {
  color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Review card */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

/* Quote icon */
.review-quote {
    color: var(--accent-red);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
}

/* Review text */
.review-text {
    /* font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px; */
    font-size: 15px;
    margin: 15px 0;
}

/* Name */
.review-name {
    font-weight: 700;
    font-size: 1.2rem;
  color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .review-title {
        font-size: 1.6rem;
    }
}
/* 🔥 MOBILE FIX – VERY IMPORTANT */
@media (max-width: 575px) {

  .swiper-.swiper-wrapper {
    display: flex;
    justify-content: center;
  }

  .service-card-wrapper {
    width: 100%;
  }

  .service-card {
    width: 100%;
    margin: -40px 0 0 0; /* REMOVE auto */
  }

  .services-slider {
    overflow: hidden; 
  }

  .slider-nav {
    bottom: -55px;
  }
}
/* Footer main */
.footer {
    background: #f8f8f8;
    padding: 20px 0;
    font-size: 1.2rem;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 80px;
}

/* Social icons */
.footer-social a {
  color: var(--dark);
    margin-right: 10px;
    font-size: 1.3rem;
    text-decoration: none;
       border: 1px solid gray;
    padding: 2px 4px 2px 4px !important;
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--accent-red);
}

/* Footer links */
.footer-links a {
  color: var(--dark);
    margin: 0 10px;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color:var(--accent-red);
}

/* Contact info */
.footer-contact {
    display: flex;
    font-size: 1rem;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-red);
    margin-right: 6px;
}

/* Bottom bar */
.footer-bottom {
    background: var(--accent-red);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 10px;
    }
}
.page-hero {
  position: relative;
  height: 300px;
  /* background: url('/assets/images/heroabout.jpg') center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

/* OVERLAY */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb-custom {
  font-size: 14px;
}

.breadcrumb-custom a {
color: var(--white);
  text-decoration: none;

  font-size: 1.8rem;
  font-weight: 500;
}

.breadcrumb-custom span {
  margin: 0 8px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}
 .who-we-are {
      padding: 80px 0;
    }

    .section-tag {
      color: var(--accent-red);
      font-weight: 600;
      letter-spacing: 1px;
      font-size: 1.5rem;
      margin-bottom: 15px;
      line-height: 40px;
      font-weight: 500;
    }

    .main-heading {
      font-size: 2.2rem;
      font-weight: 600;
      max-width: 900px;
      line-height: 1.3;
      color: var(--dark);
    }

    .video-wrapper {
      position: relative;
      margin-top: 50px;
      border-radius: 6px;
      overflow: hidden;
    }

    .video-wrapper img {
      width: 100%;
      height: 100%;
      max-height: 450px;
      display: block;
      object-fit: cover;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background-color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .play-btn::before {
      content: '';
      border-style: solid;
      border-width: 10px 0 10px 16px;
      border-color: transparent transparent transparent var(--accent-red);
      margin-left: 4px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-heading {
        font-size:1.6rem;
      }

      .who-we-are {
        padding: 50px 15px;
      }

      .play-btn {
        width: 55px;
        height: 55px;
      }
      
    .video-wrapper img {
      
      max-height: 300px;
 
    }
         .process-section {
      padding: 0px 0 !important;
    }
    }
        .process-section {
      padding: 80px 0;
    }

    .process-tag {
      color: var(--accent-red);
      font-size: 2rem ;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 15px;
      line-height: 40px;
    }

    .process-title {
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 60px;
      color: #414141;
      letter-spacing: 0%;
    }

    .process-img {
          position: relative;
  height: 300px;
  background: url('/assets/images/aboutlast.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
color: var(--white);
  margin-bottom: 40px;
    }
.process-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(196 52 52 / 55%);
}
    .process-img img {
    width: 100%;
            height: 100%; 
            object-fit: cover;
            display: block;
    }

    /* Right panel */
    .process-steps {
      background: var(--dark);
      padding: 40px 30px;
      border-radius: 8px;
      height: 100%;
    }

    .step-card {
      background: #1b1b1b;
      border: 1px solid #333;
      border-radius: 10px;
      padding: 18px 20px;
      margin-bottom: 18px;
      transition: 0.3s ease;
    }

    .step-card:hover {
      border-color: var(--accent-red);
      transform: translateY(-3px);
    }

    .step-title {
    color: var(--white);
      font-weight: 600;
      font-size: 1.3rem;
      margin-bottom: 6px;
    }

    .step-desc {
      color: #bdbdbd;
      font-size: 1rem;
      line-height: 1.5;
      padding: 5px 10px;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .process-title {
        font-size: 1.6rem;
      }

      .process-steps {
        margin-top: 40px;
      }
        .process-title {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 30px;
      color: #414141;
      letter-spacing: 0%;
    }
    }

    @media (max-width: 575px) {
      .process-section {
        padding: 50px 15px;
      }
       .who-we-are {
        padding: 20px 15px;
      }
      .main-heading {
        font-size: 1rem;
      }
      .arrow-decos{
        position: relative;
        z-index: 99;
      }
      .arrow-decos img{
        position: absolute;
        top:-55px;
        right: -156px;
      }
      .process-img{
        max-height: 200px;
        margin-bottom: 5px;
      }
      .process-tag{
        font-size: 1.2rem;
        margin-bottom: 1px;
        text-align: center;
      }
      .video-wrapper {
        margin-top: 17px !important;
      }
      .process-steps{
        margin-top: 5px;
        padding: 15px;
      }
      .process-title{
        font-size: 1.2rem;
        text-align: center;
        line-height: 24px;
      }
      .contact-info-text h6 {
        font-size: 1rem !important;
      }
      .foundation-hero-img {
        height: 158px !important;
      }
      .breadcrumb-custom a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
      }
      .page-hero {
        height: 160px;
      }
      .foundation-description {
        font-size: 0.8rem !important;
      }
      .foundation-subtitle {
        font-size: 0.8rem !important;
      }
    }
    .foundation-section {
      padding-bottom: 60px;
      font-family: Arial, sans-serif;
    }

    .foundation-hero-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .foundation-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-top: 30px;
    }

    .foundation-subtitle {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 15px;
    }

    .foundation-description {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .foundation-services {
      margin-top: 30px;
    }

   
    .foundation-service-card  {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.foundation-service-card  img {
    width: 100%;
    max-height:  330px;
    height:100%;
    object-fit: cover;
}

.foundation-service-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
  color: var(--white);
    font-size: 14px;
    padding: 15px 12px;
}

    /* Responsive */
    @media (max-width: 768px) {
      .foundation-hero-img {
        height: 260px;
      }

      .foundation-title {
        font-size: 26px;
      }
    }
 .contact-section {
      padding: 60px 0;
      font-family: Arial, sans-serif;
      background-color: var(--white);
    }

    /* Map */
    .contact-map-wrapper {
      width: 100%;
      height: 300px;
      margin-bottom: 50px;
    }

    .contact-map-iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Titles */
    .contact-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-description {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    /* Contact Info */
    .contact-info-item {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }

    .contact-info-icon {
      font-size: 1.4rem;
      margin-top: 3px;
    }

    .contact-info-text h6 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .contact-info-text p {
      font-size: 1.2rem;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    /* Form */
    .contact-form .form-control,
    .contact-form .form-select {
      font-size: 1.3rem;
      padding: 10px;
      border-radius: 2px;
    }

    .contact-submit-btn {
      background-color: var(--accent-red);
    color: var(--white);
      border: none;
      padding: 10px 32px;
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 10px;
      cursor: pointer;
    }

    .contact-submit-btn:hover {
      background-color: var(--accent-red);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-title {
        margin-top: 30px;
      }

      .contact-map-wrapper {
        height: 220px;
        margin-bottom: 10px;
      }
      .footer-contact {
        flex-wrap: wrap;
      }
    }
    /* Responsive */
    @media (max-width: 524px) {

      .offcanvas-header {
          position: initial;
      }

      .contact-title {
        margin-top: 10px;
        font-size: 1.3rem;
        margin-bottom: 4px;
      }
      .privacy-section {
          padding: 33px 0 !important;
          background: var(--white);
      }
      .privacy-header {
          margin: 0 auto 0px !important
          ;
      }
      .contact-map-wrapper {
        height: 220px;
        margin-bottom: 10px;
      }
      .contact-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
      }
      .contact-info-text p {
          font-size: 1rem;
      }
      .about-content p {
          font-size: 0.8rem;
      }
      .carousel-controls-top {
          position: absolute;
          top: 118px;
          right: 35px;
          display: flex;
          gap: 10px;
          z-index: 10;
      }
  
      .review-section {
          padding: 30px 0;
      }
      .review-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
      }
      .review-text {
          font-size: 1rem;
      }
      .review-quote img{
          max-height: 35px;
      }
      .review-card {
          padding: 13px;
      }
      .icone{
          display: flex;
          flex-wrap: wrap;
      }
    }

/* ================= PRIVACY SECTION ================= */
.privacy-section {
    padding: 100px 0;
    background: var(--white);
}

/* HEADER */
.privacy-header {
    margin: 0 auto 60px;
}

.privacy-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0 14px;
}

.privacy-header p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* CONTENT */
.privacy-content {
    margin: 0 auto;
}

.privacy-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 10px;
    color: #111;
}

.privacy-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .privacy-header h2 {
        font-size: 26px;
    }
}

/* new css */
.language-dropdown {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-weight: 500;
  cursor: pointer;
}

/* .services-slider .service-card {
    background: #ffffff;
    color: #000;
    transition: all 0.3s ease;
}
.services-slider .swiper-slide-active .service-card {
    background: #e63946;
    color: #fff;
}
.services-slider .swiper-slide-active .service-card h5,
.services-slider .swiper-slide-active .service-card p,
.services-slider .swiper-slide-active .service-card .read-more
{
    color: #fff;
}
.services-slider .service-card:hover,
.services-slider .swiper-slide-active .service-card:hover {
    transform: translateY(-5px);
} */

.services-slider .service-card:hover {
  background: #e63946;
  color: #fff;
}
.service-card.gray:hover {
  background: #e63946;
  color: #fff;
}

.owl-carousel .owl-item img {
  display: block;
  width: 15% !important;
}

