/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
.menu-toggle {
  display: none;
}
.header2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
@media (max-width: 768px) {
  .mb-3 {
    margin-bottom: 0 !important;
  }
  .design-text p{
    max-width:100%;
  }
}

/* Body and font settings */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight:500;
    padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .hero-bg {
    object-position: center center;  /* Keep the image centered on desktop */
  }
}

/* For mobile view (max-width: 767px) */
@media screen and (max-width: 767px) {
  .hero-bg {
    background-image: url('/images/mobile-view-2.png');
    object-position: right center;  /* Align the image to the right on mobile */
    object-fit: contain;  /* Ensure it still covers the section without distortion */
    height:60vh !important;  /* Let the height adjust based on the content for mobile */

  }
  .hero-section {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height:60vh !important;
  }
  .logo-slider{
    margin-top: 0;
    padding-top: 0 !important;
  }
  
}
@media screen and (max-width: 767px) {
    .hero-section {
        position: relative;
        overflow: hidden;
    }

    /* .hero-bg {
        width: 100%;
        height: auto;
        object-fit: cover; 
        object-position: right center;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url('/images/mobile-bg.png'); 
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
    } */

    .hero-content {
        position: relative;
        z-index: 1;
        padding: 20px;
        text-align: center;
    }

    .hero-text {
        color: white;
    }
}
/* Reach Us Section */
.reach-us-container {
  background: white;
  position: relative;
  /* padding: 12px 10px; */
  overflow: hidden;
  display: flex;
  
  justify-content: flex-end; 
  /* Push content to right */
}

.reach-us-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}

/* Right aligned content */
.reach-us {
  width: 22.5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 15px;
  color: white;
  /* padding-right: 40px; */
  position: relative;
  z-index: 2;
  background-color: #002F6C;
  /* FRONT SLANT */
clip-path: polygon(10% 0, 100% 0, 100% 100%, 20% 100%);

}

.reach-us img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.reach-us img:hover {
  transform: scale(1.15);
}


/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002F6C;
  padding-left:20px;
  padding-top:0;
  padding-bottom:0;
  padding-right:0;


}

.navbar .logo img {
  max-width: 150px; /* Adjust this based on your logo size */
}

.navbar-links ul {
  display: flex;
  gap: 20px;
}

.navbar-links ul li {
  list-style-type: none;
}

.navbar-links ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.navbar-right {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
  padding-right:0px;
}

/* Call Box */
.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
   margin-right: 0;   /* ✅ FIX */
  /* margin-right: 20px; */
}

.call-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-icon i {
  color: #002F6C;
  font-size: 16px;
}

.call-text span {
  display: block;
  font-size: 12px;
}

.call-text a {
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

/* Orange Slanted Background */
.quote-wrapper {
  position: relative;
  background: #FF9F00;
  padding: 15px 35px 15px 60px;
 clip-path: polygon(0 0, 100% 0, 100% 100%, 23% 100%);
 margin-right: 0;
}

/* Quote Button */
.quote-btn {
  background: #002F6C;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* Responsive Design */
/* MOBILE NAV FIX */
@media (max-width: 768px) {

  .reach-us-container {
    display: none;
  }

  .navbar {
  width: 100%;
  max-width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

  /* Logo */
  .logo img {
    max-width: 120px;
  }

  /* Hamburger */
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }

  /* Hide menu by default */
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
   background-color: #002F6C;
    padding: 20px 0;
  }

  .navbar-links ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .navbar-links ul li {
    margin: 10px 0;
  }

  .navbar-links.active {
    display: block;
  }

  /* Hide right section on mobile */
  .navbar-right {
    display: none;
  }
   /* Show hamburger */
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }
}


/* Mobile version */
@media (max-width: 480px) {
  .navbar .logo img {
    max-width: 120px;
  }
  .reach-us-container{
    display:none;
  }
  .navbar-links ul li a {
    font-size: 14px;
  }

  .navbar-right .call-us a {
    font-size: 12px;
  }

  .navbar-right .quote-btn a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .reach-us {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }
}

.hero-section {
  position: relative;
  /* background-image: url('/images/banner-bg.png'); */
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* @media (max-width: 768px) {
  .hero-section {
    background-image: url('/images/bg-mobile-view.png'); 
    background-position: center top;
  }
} */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
/* Dark Overlay */
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
} */

/* Content */
.hero-content {
  position: relative;  /* NOT absolute */
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
  color:white;
  margin-bottom:150px;
  font-family: 'Montserrat', sans-serif;
 
}

/* Text Area */
.hero-text {
   max-width: 700px;
  margin: auto;
}

.hero-badge {
 position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  color:white;

  /* Glass dark background */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  /* Thin white border */
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);

  /* Soft outer glow */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);

  margin-bottom: 20px;
}

/* Left Dot */
.hero-badge::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
}

/* Right Dot */
.hero-badge::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
}
.hero-text h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 500px;
  text-align:center;
  margin-left:90px;
}

.hero-btn {
  display: inline-block;
  background: #ff8c00;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size:18px;
}

/* Offer Card */
.offer-card {
  background: white;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
}

.offer-card h4 {
  margin-bottom: 15px;
}

.offer-card ul {
  columns: 2;
  list-style: none;
  padding: 0;
}

.offer-card li {
  margin-bottom: 8px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .offer-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding-top: 60px ;
    padding-left:20px ;
    padding-right:20px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height:1.3;
  }

  .hero-text p {
    font-size: 14px;
  }

  .offer-card {
    columns: 1;
  }
  .hero-badge{
    padding:10px 20px;
  }
  .hero-badge::after{
   display:none;
  }
  .hero-badge::before{
   display:none;
  }
  br{
    display:none;
  }
  .hero-text p{
    margin-left:0px;
  }
  .slide {
  flex:none;   
  display: flex;
  justify-content: center;
  align-items: center;
}
}
.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  /* padding: 40px 0; */
  padding-top:40px;
  padding-bottom:40px;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slide {
  /* flex: 0 0 200px;    */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Desktop */
@media (min-width: 769px) {
  .slide {
    flex: 0 0 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 auto;   /* allow natural width */
  }
}
.slide img {
  width: 160px;
  transition: 0.3s ease;
}

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

/* KEY PART */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-slider:hover .slider-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .slide {
    width: 140px;
  }

  .slide img {
    width: 120px;
  }
}
.offer-section {
  /* padding: 80px 5%; */
  padding-left:50px;
  background: white;
}

.offer-container {
  display: flex;
  align-items: center;
  gap: 30px;
   flex-wrap: wrap;   /* add this */
}

/* LEFT */
.offer-left {
  flex: 1;
  width:100%;
 
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  background: #f2f2f2;
  padding: 15px 35px;
  border-radius: 50px;

  font-size: 18px;
  font-weight: 500;
  color:black;

  /* Stronger 3D Shadow */
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.15),
    inset 0 -3px 6px rgba(0,0,0,0.05);
}

.offer-badge span {
  width: 18px;
  height: 18px;
  background: black;
  border-radius: 50%;
}

.offer-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
  margin-top:20px;
  font-weight:700;
  color:black;
}

.offer-left p {
  color: black;
  margin-bottom: 30px;
  max-width: 600px;
  font-size:18px;
}

.offer-pagination {
  display: flex;
  align-items: center;
  gap: 15px;
}
.offer-pagination button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid black;
  background: white;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease;
}

.offer-pagination button:hover {
  background: black;
  color: white;
}

/* RIGHT */
.offer-right {
  flex: 1;
  overflow: hidden;
}

.offer-card {
  position: relative;
  background: white;
  padding: 20px;
  /* border-radius: 10px; */
}

.offer-card img {
   /* width: 100%; 
  height: 200px;  */
  object-fit: cover;
  display:flex;
  justify-content:center;
  align-items:center;
  
}

.icon-circle {
   width: 70px;
  height: 70px;
  background: orange;
  border-radius: 50%;
  position: absolute;
   display:flex;
   justify-content:center;
   align-items:center;
  bottom: 135px;   /* THIS is the key */
  left: 30px;

  border: 6px solid white;
  z-index: 5;
}

.offer-card h4 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 50px;
  font-size: 20px;
  font-weight:600;
}

.offer-card p {
  font-size: 16px;
  color: #666;
}
@media (max-width: 992px) {

  .offer-container {
    flex-direction: column;
  }

  .offer-right {
    width: 100%;
    margin-top: 30px;
  }

  .swiper {
    width: 100%;
  }

}

.about-section {
  padding: 100px 8%;
  background: white;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */
.about-left {
  position: relative;
  flex: 1;
}

.image-wrapper {
  position: relative;
}

.main-img {
  width: 80%;
  border-radius: 6px;
}

.small-img {
  position: absolute;
  top: 40px;
  left: -60px;
  width: 200px;
  border-radius: 6px;
  border: 5px solid #f5f5f5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Experience Box */
.experience-box {
  position: absolute;
  bottom: -30px;
  left: 260px;
  background: #1e3557;
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.experience-box h2 {
  font-size: 40px;
  margin: 0;
}

.experience-box span {
  font-size: 14px;
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 
  inset 0 4px 10px rgba(0, 0, 0, 0.2), 
  0 4px 15px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.about-badge span {
  width: 18px;
  height: 18px;
  background: black;
  border-radius: 50%;
}

.about-right h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight:700;
  color:black;
}

.about-right p {
  font-size:18px;
  color: black;
  line-height: 1.7;
  margin-bottom: 25px;
}

.learn-more {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  font-size:18px;
  
}
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .small-img {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 20px;
  }

  .experience-box {
    position: relative;
    bottom: 0;
    margin-right:440px;
    margin-top: 20px;
    justify-content:start;
  }
  .main-img{
    width:30%;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-right h2 {
    font-size: 28px;
  }

  .experience-box h2 {
    font-size: 28px;
  }
}
/* choose section */
.about-text{
  color:black;
  max-width:500px;
}
.choose-right p{
  color:black;
}


/* General Section Styling */
.logistics-section {
  padding: 50px 0;
  background-color:white;
}
/* Container settings for the section */
.row.logistics-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height:500px; 
}

/* Grey circle (background) */
.grey-circle {
   width: 700px;
  height: 500px;        /* Height equal to width for perfect circle */
  border-radius: 50%;
  
  background-image: url("/images/circle-new.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  /* margin-top: 20px; */
  /* overflow: hidden; */
  z-index: 1;
  /* margin-left:-50px; */
}



/* Black border circle (outer circle) */
.black-border {
  width: 80%;
  height: 450px;
  margin-top:20px;
  margin-left:-310px;
  border: 5px solid #000;
  border-radius: 50%;
  position: relative; 
  z-index:0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
 
}

/* White circles (smaller circles) */
.white-circle {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.cir-1{
  top:-45%;
  left:75%;
}
.cir-2{
  top:-10%;
  left:51%;
}
.cir-3{
  left:2%;
  top:30%;
}
.white-circle img {
  width: 60%;
  height: 60%;
  object-fit: cover;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
   .grey-circle {
    width: 250px;
    height: 250px;
    margin-left: 0;
  }

   .black-border {
    width: 250px;
    height: 250px;
    margin-left: 0;
  }
  .cir-1,
  .cir-2,
  .cir-3 {
    top: 0;
    left: 0;
  }
  .white-circle {
    width: 40px;
    height: 40px;
  }
  .grey-black{
    display:none !important;
  }
}
@media (max-width: 768px) {

  .text-1 p,
  .text-2 h3,
  .text-2 p,
  .text-3 h3,
  .text-3 p {
    margin-left: 0 !important;
  }

  .design-text p {
    max-width: 100%;
  }
    .step-1{
      margin-top:0px !important;
}
.step-2{
    margin-top:0px !important;
}
.step-3{
    margin-top:0px !important;
}

}

.design-text{
position: relative;
/* margin-bottom: 150px; */

}
.design-text p{
  margin-bottom:40px;
}

.design-text h2{
  color:black;
  font-weight:600;
  margin-bottom:20px;
}
.design-text h3{
  color:black;
  font-weight:600;
  margin-bottom:20px;
}
.design-text p{
  color:black;
  font-size:18px;
  /* max-width:60%; */
}
.text-1 p{
  margin-left:25px;
}
.text-2 h3{
  margin-left:55px;
}
.text-2 p{
  margin-left:105px;
}
.text-3 h3{
  margin-left:155px;
}
.text-3 p{
  margin-left:255px;
}

/* Contact Banner Styling */
.contact-banner {
  background-color: #FF8A00; /* Orange background */
  color: #fff;
  /* height:300px; */
 
  text-align: center;
  border-radius:70px;
  /* margin-top: 300px; */
  margin-bottom:30px;
 
}
.contact-section{
 
  display:flex;
  justify-content:center;
  align-items: center;
}
.contact-banner .content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.con-1{
  padding:40px;
}


.contact-banner .content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-banner .contact-info .contact-button {
  background-color: #fff;
  color: #FF8A00;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 700;
  margin-left:-290px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-banner .contact-info .contact-button:hover {
  background-color: #FF6A00;
  color: #fff;
}


/* Responsive Styling */
@media (max-width: 768px) {
  .logistics-items {
    flex-direction: column;
    align-items: center;
  }

  .logistics-item {
    width: 80%;
    margin-bottom: 20px;
  }

  .contact-banner .content h2 {
    font-size: 24px;
  }

  .contact-banner .content p {
    font-size: 14px;
  }
  .contact-banner .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .con-1,
  .con-2,
  .contact-info {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-banner .contact-info .contact-button{
    margin-left:0px;
  }

}
@media (max-width: 992px) {
  .step-section {
    background-image: none;
  }

}
.step-3 {
  margin-top: -100px;   /* 👈 Move last step up */
}
.step {
      text-align: center;
      padding: 2vh 0;
    }
    .step img {
      /* width: 100%; */
      max-width: 200px;
      height: auto;
    }
    .step-description {
      font-size: 1rem;
      margin-top: 1rem;
    }
    .circle {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFA500;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      z-index: 10;
    }
    .step-wrapper {
      position: relative;
    }

 .step-section{
  background-image: url("/images/backgroung-line.png");
  background-repeat: no-repeat;
  background-position: 280px -10px; 
  background-size: 60% auto;
  padding-bottom: 30px;
  
}
.step-1{
      margin-top:200px;
}
.step-2{
    margin-top: 100px;
}
.step-1 h4{
  margin-top:20px;
}
.step h4{
  font-weight:600;
}
.testimonial-section {
padding-top:0px;
padding-bottom:100px;
}

/* Badge */
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: inset 0 6px 15px rgba(0, 0, 0, 0.3), 0 6px 25px rgba(0, 0, 0, 0.4);/* Added inset and outside shadow */
  margin-bottom: 20px;
}

.testimonial-badge .dot {
  width: 18px;
  height: 18px;
  background: black;
  border-radius: 50%;
}

/* Title */
.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color:black;
  font-size: 17px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 
  inset 0 3px 8px rgba(0, 0, 0, 0.18), 
  0 4px 12px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-text {
  font-size: 18px;
  color:black;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.client-role {
  font-size: 14px;
  color: #666;
}

.stars {
  margin-top: 10px;
  color: #f4b400;
  font-size: 14px;
}
/* footer */
.main-footer {
  background: #14345C;
  color: #ffffff;
  /* padding: 70px 0; */
  padding-top:50px;
  padding-bottom:20px;
}

/* Description */
.footer-description {
  font-size: 17px;
  line-height: 1.7;
  color: #dcdcdc;
  /* max-width:500px; */
}

.footer-divider {
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0.3;
  margin-top: 20px;
}

/* Titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  font-size:22px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  text-decoration:none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #dcdcdc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #14345C;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6b00;
  color: #ffffff;
}
.footer-bottom {
  background: #14345C;  /* Blue background like image */
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 15px;
}

.footer-bottom .brand-name {
  font-weight: 600;
}

.footer-bottom .designer-name {
  font-weight: 600;
}
.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}
.social-icons a{
 text-decoration:none;
}

/* =========================
   SERVICE HERO SECTION
========================= */

.service-hero {
  position: relative;
  background: url("/images/service-new-banner.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-hero {
     background-position: 80% center;
  }

}
/* Left Overlay */
.service-hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* Content */
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #ffffff;
  margin-bottom:150px;
}

/* Tag */
.service-hero-tag {
   display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: inset 0 6px 15px rgba(0, 0, 0, 0.3), 0 6px 25px rgba(0, 0, 0, 0.4);/* Added inset and outside shadow */
  margin-bottom: 20px;
}

.service-hero-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 8px;
}

/* Title */
.service-hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; /* Extra Bold */
}

/* Text */
.service-hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Button */
.service-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size:18px;
  background: #ff9f00;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.service-hero-btn:hover {
  background: #e68a00;
}

.service-hero-btn-icon {
  background: #ffffff;
  color: #ff9f00;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
}
@media (max-width: 992px) {
  .service-hero-title {
    font-size: 48px;
  }

  .service-hero-overlay {
    width: 75%;
  }
}

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

  .service-hero-title {
    font-size: 36px;
  }

  .service-hero-text {
    font-size: 16px;
  }

  .service-hero-overlay {
    width: 100%;
    background: rgba(0,0,0,0.6);
  }
}

@media (max-width: 480px) {
  .service-hero-title {
    font-size: 28px;
  }

  .service-hero-btn {
    padding: 10px 18px;
  }
}
/* =========================
   SERVICE OFFER SECTION
========================= */

.service-offer-section {
 
  /* padding: 100px 0; */
  text-align: center;
}

.service-offer-header {
  margin-bottom: 60px;
}

.service-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: inset 0 6px 15px rgba(0, 0, 0, 0.3), 0 6px 25px rgba(0, 0, 0, 0.4);/* Added inset and outside shadow */
  margin-bottom: 20px;
}

.service-offer-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin-right: 8px;
}

.service-offer-title {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-offer-subtitle {
  max-width: 700px;
  font-size:18px;
  margin: auto;
  color: #666;
}

/* GRID */
.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* CARD */
.service-offer-card {
  position: relative;
  border-radius: 22px;
  overflow:visible;
  transition: 0.3s ease;
  cursor: pointer;

}

.service-offer-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

/* CONTENT BOX */
.service-offer-content {
  position: absolute;
  left:-30px;
  width: 80%;        
  max-width: 360px;   
  bottom:10px;
  background: #ffffff;
  /* border-radius: 18px; */
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
   
}
.service-offer-content p{
  padding-bottom:20px;
  padding-right:20px;
}
.service-offer-top{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
/* ORANGE ICON BOX (missing part) */
.service-offer-iconbox{
  width: 56px;
  height: 56px;
  background: #ff9f00;
  border-bottom-right-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-offer-heading{
  margin: 0;
  font-size:22px;
  line-height: 1.05;
  font-weight: 800; /* Montserrat extra bold */
  color: #111;
}

/* description */
.service-offer-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #222;
  max-width: 92%;
}

.service-offer-iconbox img{
  width: 34px;
  height: 34px;
  
}
.service-offer-content h4 {
  font-weight: 700;
  /* margin-bottom: 10px; */
}

.service-offer-content p {
  font-size: 14px;
  color: #555;
 
}

.service-offer-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: #ff9f00;
  border-top-left-radius: 26px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.service-offer-arrow-icon{
  color: #fff;
  font-size: 24px;
  line-height: 1;
}




/* Responsive */
@media (max-width: 992px){
  .service-offer-card img{ height: 280px; }
  .service-offer-heading{ font-size: 24px; }
  .service-offer-desc{ font-size: 14px; }
  .service-offer-iconbox{ width: 64px; height: 64px; flex-basis: 64px; }
  .service-offer-iconbox img{ width: 38px; height: 38px; }
  /* .service-offer-arrow{ width: 72px; height: 72px; } */
  .service-offer-arrow-icon{ font-size: 36px; }
}

@media (max-width: 576px){
  .service-offer-content{
    /* left: 14px;
    right: 14px; */
    bottom: 14px;
    /* padding: 16px 16px 64px; */
  }
  .service-offer-heading{ font-size: 22px; }
}
@media (max-width: 1200px) {
  .service-offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .service-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-offer-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .service-offer-grid {
    grid-template-columns: 1fr;
  }

  .service-offer-title {
    font-size: 28px;
  }

  /* .service-offer-card img {
    height: 250px;
  } */
}


/* .client-say-section {
  background: #f6f6f6;
} */

.client-say-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.client-say-dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  margin-right: 8px;
}

.client-say-title {
  font-size: 38px;
  font-weight: 700;
}

.client-say-description {
  color:black;
}

/* Card */
.client-say-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  border:1px solid grey;
  box-shadow: 
      8px 10px 0px rgba(0,0,0,0.15),
      0 20px 40px rgba(0,0,0,0.05);
  min-height: 240px;
}

.client-say-card p {
  font-size: 15px;
  color: black;
}

.client-say-name {
  margin-top: 15px;
  font-weight: 600;
}

.client-say-role {
  font-size: 14px;
  color: black;
}

.client-say-rating {
  margin-top: 8px;
  color: #ff9f00;
  font-size: 14px;
}

/* project-page */
.project-hero-section {
  position: relative;
  height: 88vh;
  min-height: 730px;
  background-image: url('/images/project-bg.png'); /* replace */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items:center;
  justify-content:start;
  color: #fff;
  overflow:hidden;
}
@media (max-width: 768px) {
  .project-hero-section {
    background-position: 20% center;
  }
}
@media (max-width: 768px) {
  .blog-hero-section {
    background-position: 80% center;
  }
}
/* Overlay */
/* .project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2));
  z-index: 1;
} */

/* Content */
.project-hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 650px; */
}

.project-hero-breadcrumb {
  font-size: 14px;
  opacity: 0.9;
  display: block;
  margin-bottom: 15px;
}

.project-hero-title {
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.project-hero-text {
  font-size: clamp(16px, 1.1vw, 20px);
  margin-bottom: 30px;
  max-width: 520px;
}

/* Buttons */
.project-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-hero-btn-primary {
  background: #ff8a00;
  padding: 14px 30px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.project-hero-btn-primary:hover {
  background: #e67800;
}

.project-hero-btn-secondary {
  background: white;
  padding: 14px 30px;
  border-radius: 8px;
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.project-hero-btn-secondary:hover {
  background: #f2f2f2;
}

/* Curved Bottom */
.project-hero-bottom-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: white;
  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  z-index: 2;
}

/* Floating Icon */
.project-hero-floating-icon {
  position: absolute;
  bottom: 90px;
  left: 100px;
  background: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 3;
}
@media (max-width: 992px) {

  .project-hero-section {
    height: auto;
    padding: 120px 20px 160px;
  }

  .project-hero-content {
    max-width: 100%;
  }

  .project-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-hero-floating-icon {
    left: 20px;
    bottom: 70px;
  }

}
.project-list-section {
  padding: 80px 5%;
  background:white;
}

.project-list-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

/* CARD */
.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 
    8px 14px 16px rgba(0, 0, 0, 0.04),
    12px 25px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 15px 25px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.project-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TAG */
.project-tag {
  position: absolute;
  /* top: 15px; */
  left: 15px;
  bottom:20px;
  background: #0d2d5c;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
  font-weight: 500;
}

.project-tag.blue {
  background: #1e3a8a;
}

/* CONTENT */
.project-card-content {
  padding: 20px;
}

.project-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-card-content p {
  font-size: 14px;
  color:black;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FOOTER */
.project-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-time {
  font-size: 13px;
  color: #777;
}

.project-view-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.project-view-btn:hover {
  color: #ff8a00;
}
/* Large Laptop */
@media (max-width: 1400px) {
  .project-list-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .project-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .project-list-container {
    grid-template-columns: 1fr;
  }

  .project-card-image {
    height: 180px;
  }
}
.track-record-section {
  background-color: #17365D; /* Dark Blue */
}

.stat-card {
  background: #f2f2f2;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding-top:20px;
  padding-bottom:20px;
}
.stat-card p{
  font-size:18px;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.stat-circle {
  width: 80px;
  height: 80px;
  background-color: #17365D;
  border-radius: 50%;
}


/* contact-page */

/* CONTACT HERO SECTION */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url("/images/contact-us-new-banner.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Overlay */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Content */
.contact-content {
  position: relative;
  z-index: 2;
}

.contact-title-main {
  color: #fff;
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-text {
  color: #f1f1f1;
  font-size: 22px;
  line-height: 1.6;
  max-width: 500px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .contact-hero {
    min-height: 50vh;
  }

  .contact-title {
    font-size: 38px;
  }

  .contact-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 45vh;
    text-align: center;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-text {
    font-size: 15px;
    margin: 0 auto;
  }
}
.contact-split {
  background: #ffffff;
}

.contact-kicker {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.contact-title {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #111;
}

.contact-desc {
  color: #333;
  max-width: 520px;
}

.info-block .info-label {
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 6px;
  font-size:22px;
}

.info-block .info-value {
  color: #222;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Right Card */
.contact-card {
  background: #e9e9e9;
  border-radius: 32px;
  padding: 38px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card-title {
  font-weight: 600;
  font-size: 28px;
}

.contact-card-sub {
  font-size: 12px;
  color: #444;
  max-width: 420px;
}

.contact-input {
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.contact-input:focus {
  outline: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

.contact-btn {
  background: #46c2ff;
  border: none;
  color: #0b0b0b;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 22px;
}

.contact-btn:hover {
  background: #2fb6ff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-title { font-size: 36px; }
  .contact-card { max-width: 100%; }
}

@media (max-width: 576px) {
  .contact-title { font-size: 30px; }
  .info-block .info-label { font-size: 14px; }
}
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  animation: popupScale 0.3s ease;
}

.success-box h4 {
  margin-bottom: 10px;
}

.success-box button {
  margin-top: 15px;
  padding: 8px 20px;
  border: none;
  background: #0d2c54;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes popupScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



/* blog page */
/* ================= BLOG HERO SECTION ================= */

.blog-hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: url("/images/blog-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Overlay */
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Container */
.blog-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Content */
.blog-hero-content {
  max-width: 700px;
}

.blog-hero-title {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero-description {
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.6;
}

/* Right Navigation */
.blog-hero-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.blog-hero-dots {
  font-size: 32px;
  letter-spacing: 5px;
  opacity: 0.8;
}

.blog-hero-arrow {
  font-size: 60px;
  transition: 0.3s;
}

.blog-hero-arrow:hover {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .blog-hero-title {
    font-size: 38px;
  }

  .blog-hero-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .blog-hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog-hero-title {
    font-size: 30px;
  }

  .blog-hero-description {
    font-size: 15px;
  }

  .blog-hero-nav {
    align-self: flex-end;
  }
}
/* ================= BLOG CARD SECTION ================= */

.blog-card-section {
  padding: 80px 8%;
  background: #f5f5f5;
}

.blog-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* Image */
.blog-card-image {
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Tag */
.blog-card-tag {
  position: absolute;
  bottom: -38px;
  left: 20px;
  background: #0d2c54;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Content */
.blog-card-content {
  padding: 30px 20px 25px 20px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  margin-top:20px;
}

.blog-card-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Link */
.blog-card-link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.blog-card-link:hover {
  color: #0d2c54;
  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .blog-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-card-container {
    grid-template-columns: 1fr;
  }

  .blog-card-image img {
    height: 200px;
  }
}


/* ================= SECTION ================= */

.vehicle-blog-section {

  padding: 80px 8%;
}

.vehicle-blog-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= BADGE ================= */

.vehicle-blog-badge {
  display: inline-block;
  background: #0d2c54;
  color: #fff;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 25px;
}

/* ================= TITLE ================= */

.vehicle-blog-title {
  font-size: 34px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* ================= INTRO ================= */

.vehicle-blog-intro {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  max-width: 900px;
}

/* ================= DIVIDER ================= */

.vehicle-divider {
  border-top: 1px solid #ccc;
  margin: 40px 0;
}

/* ================= BLOG BLOCK ================= */

.vehicle-blog-block {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* Icon */
.vehicle-icon {
  width: 60px;
  height: 60px;
  padding:20px;
  background: #0d2c54;
  border-radius: 50%;
  flex-shrink: 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Content */
.vehicle-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.vehicle-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ================= SERVICE GRID ================= */

.vehicle-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.vehicle-service-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.vehicle-service-box ul {
  padding-left: 18px;
}

.vehicle-service-box li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .vehicle-blog-title {
    font-size: 28px;
  }

  .vehicle-service-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .vehicle-blog-block {
    flex-direction: column;
  }

  .vehicle-icon {
    width: 40px;
    height: 40px;
  }

  .vehicle-blog-title {
    font-size: 24px;
  }

  .vehicle-blog-section {
    padding: 60px 6%;
  }

}

@media (max-width: 480px) {

  .vehicle-blog-title {
    font-size: 20px;
  }

  .vehicle-blog-intro {
    font-size: 14px;
  }

}

/* ================= SECTION ================= */

.vehicle-process-section {

  padding: 0px 8%;
}

.vehicle-process-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= ROW ================= */

.vehicle-process-row {
  margin-bottom: 40px;
}

/* Header */
.vehicle-process-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.vehicle-process-icon {
  width: 55px;
  height: 55px;
  background: #0d2c54;
  border-radius: 50%;
  flex-shrink: 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.vehicle-process-header h3 {
  font-size: 20px;
  font-weight: 600;
}

/* Divider */
.vehicle-process-divider {
  border-top: 1px dashed #bbb;
  margin: 40px 0;
}

/* ================= SAFETY GRID ================= */

.vehicle-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vehicle-process-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.vehicle-process-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ================= TWO COLUMN LAYOUT ================= */

.two-column-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.vehicle-process-block {
  width: 100%;
}

.vehicle-process-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.vehicle-process-list {
  padding-left: 18px;
}

.vehicle-process-list li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

/* ================= FINAL TEXT ================= */

.vehicle-process-final {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .vehicle-process-grid {
    grid-template-columns: 1fr;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .vehicle-process-section {
    padding: 60px 6%;
  }

  .vehicle-process-header h3 {
    font-size: 18px;
  }

}

@media (max-width: 480px) {

  .vehicle-process-header {
    gap: 12px;
  }

  .vehicle-process-icon {
    width: 35px;
    height: 35px;
  }

  .vehicle-process-header h3 {
    font-size: 16px;
  }

  .vehicle-process-item h4 {
    font-size: 15px;
  }

}

/* ================= HERO SECTION ================= */

.inner-hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image Wrapper */
.inner-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.inner-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

/* Content */
.inner-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 1200px;
}

/* Breadcrumb */
.inner-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 30px;
  border-top:2px solid white;
  border-bottom:2px solid white;
  font-size: 14px;
  margin-bottom: 25px;
  backdrop-filter: blur(4px);
}

.inner-hero-breadcrumb .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* Title */
.inner-hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Description */
.inner-hero-description {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

/* Button */
.inner-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size:20px;
  background: #f7931e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.inner-hero-btn:hover {
  background: #ff9f2f;
}

.inner-hero-btn .btn-icon {
  background: #fff;
  color: #000;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .inner-hero-title {
    font-size: 50px;
  }
}

@media (max-width: 992px) {

  .inner-hero-section {
    height: 80vh;
  }

  .inner-hero-title {
    font-size: 40px;
  }

}

@media (max-width: 768px) {

  .inner-hero-section {
    height: 75vh;
    min-height: 500px;
  }

  .inner-hero-title {
    font-size: 32px;
  }

  .inner-hero-description {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .inner-hero-section {
    height: 70vh;
    min-height: 450px;
  }

  .inner-hero-title {
    font-size: 26px;
  }

  .inner-hero-breadcrumb {
    font-size: 12px;
    padding: 6px 12px;
  }

}
/* ================= SERVICE CONTENT SECTION ================= */

.service-content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-content-block {
  margin-bottom: 60px;
}

.service-content-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  border-bottom: 3px solid #0d2c54;
  display: inline-block;
  padding-bottom: 8px;
}

.service-sub-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #0d2c54;
  display: inline-block;
  padding-bottom: 6px;
}

.service-content-text {
  font-size: 18px;
  line-height: 1.8;
  color:black;
  margin-bottom: 18px;
  /* max-width: 900px; */
}

.service-list {
  padding-left: 20px;
  margin-top: 15px;
}

.service-list li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .service-content-title {
    font-size: 30px;
  }

  .service-sub-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .service-content-section {
    padding: 60px 0;
  }

  .service-content-title {
    font-size: 24px;
  }

  .service-sub-title {
    font-size: 20px;
  }

  .service-content-text,
  .service-list li {
    font-size: 14px;
  }
}
/* ================= CARE SECTION ================= */

.care-section {
  padding-bottom: 80px;   /* No top padding as requested */
  background: #f8f9fa;
}

.care-row {
  margin-bottom: 60px;
}

.care-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  border-bottom: 3px solid #0d2c54;
  display: inline-block;
  padding-bottom: 6px;
}

.care-text {
  font-size: 16px;
  line-height: 1.8;
  color:black;
  margin-bottom: 16px;
  max-width: 600px;
}

.care-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.care-image {
  border-radius: 20px;
  transition: 0.4s ease;
}

.care-image:hover {
  transform: scale(1.03);
}

/* Buttons */
.care-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #0d2c54;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #0b2240;
  color: #fff;
}

.btn-secondary-custom {
  background: #ff8c00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary-custom:hover {
  background: #e67e00;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .care-title {
    font-size: 28px;
  }

  .care-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  .care-section {
    padding-bottom: 60px;
  }

  .care-title {
    font-size: 24px;
  }

  .care-text {
    font-size: 14px;
  }

  .care-row {
    margin-bottom: 40px;
  }
.contact-popup-box {
  width: 90%;
  max-width: 1000px;
  background: #f3f3f3;
  border-radius: 25px;
  padding: 30px;
  position: relative;
  margin-top:60px;
}
.popup-left {
  display:none;
}
.location-row{
  flex-direction:column;
}
.con-2 img{
  display:none;
}
.con-1{
  padding-bottom:0px;
}
.contact-info{
  padding-bottom:20px;
}
}
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.contact-popup-box {
  width: 90%;
  max-width: 1000px;
  background: #f3f3f3;
  border-radius: 25px;
  padding: 30px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.popup-content {
  display: flex;
  gap: 30px;
}

.popup-left {
  flex: 1;
}

.popup-left img {
  width: 100%;
  height:90%;
  border-radius:20px;
}

.popup-right {
  flex: 1;
  background: #5a1c00;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-right h2 {
  color: white;
  margin-bottom: 10px;
}

.popup-right input,
.popup-right textarea {
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.location-row {
  display: flex;
  gap: 10px;
}
.popup-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.popup-submit {
  background: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
  }
}
/* Loader */
.form-loader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #ff8a00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.form-loader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #ff8a00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Success Popup */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.success-box {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 350px;
}

.success-box button {
  margin-top: 15px;
  padding: 8px 20px;
  border: none;
  background: #ff8a00;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 768px) {
  #contactForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  #contactForm .mb-3 {
    margin-bottom: 0 !important;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.circle-icon{
  display:flex;
  justify-content:center;
  align-items:center;
}
@media (min-width: 1600px) {
  .step-section {
    background-image: none;
  }
}