
.cookie-consent {
         position: fixed;
         bottom: 0;
         width: 100%;
         background-color: #001f3f; /* Your header/nav dark color */
         color: #ffffff;
         text-align: center;
         padding: 15px 10px;
         z-index: 1000;
         font-family: 'Segoe UI', sans-serif;
         }
         .cookie-consent p {
         margin: 0;
         font-size: 16px;
         }
         .cookie-buttons {
         margin-top: 10px;
         }
         .cookie-accept, .cookie-decline {
         margin: 5px 10px;
         padding: 8px 16px;
         font-size: 14px;
         border: none;
         border-radius: 5px;
         cursor: pointer;
         }
         .cookie-accept {
         background-color: #f44336; /* red */
         color: white;
         }
         .cookie-decline {
         background-color: #ffffff;
         color: #333;
         }
         /* === Base Reset === */
         html, body {
         margin: 0;
         padding: 0;
         overflow-x: hidden;
         }
         /* === Banner Section === */
         .banner-section {
         width: 100%;
         padding: 0;
         margin: 0;
         overflow: hidden;
         position: relative;
         }
         /* === Owl Carousel Slide Item === */
         .banner-carousel .slide-item {
         width: 100%;
         height: 100vh;
         background-size: cover;
         background-position: center;
         background-repeat: no-repeat;
         position: relative;
         }
         /* === Content inside Banner === */
         .banner-carousel .content-box {
         position: absolute;
         bottom: 50px;
         left: 50%;
         transform: translateX(-50%);
         color: white;
         text-align: center;
         z-index: 10;
         padding: 0 15px;
         width: 100%;
         max-width: 600px;
         }
         /* === Heading === */
         .banner-carousel .content-box h2 {
         font-size: 32px;
         font-weight: 600;
         line-height: 1.2;
         margin-bottom: 10px;
         }
         /* === Optional Paragraph === */
         .banner-carousel .content-box p {
         font-size: 18px;
         color: #fff;
         margin: 0;
         }
         /* === Responsive Adjustments for Mobile === */
         @media (max-width: 767px) {
         .banner-carousel .slide-item {
         height: 25vh;
         }
         .banner-carousel .content-box h2 {
         font-size: 20px;
         }
         .banner-carousel .content-box p {
         font-size: 14px;
         }
         }
         /* === Owl Carousel Navigation Dots === */
         /* Dots Container */
         .owl-carousel .owl-dots {
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 8px;
         position: absolute;
         bottom: 20px;
         width: 100%;
         z-index: 10;
         }
         /* Each Dot */
         .owl-carousel .owl-dot span {
         background: #fff;
         width: 12px;
         height: 12px;
         border-radius: 50%;
         display: inline-block;
         transition: 0.3s;
         opacity: 0.6;
         }
         /* Active Dot */
         .owl-carousel .owl-dot.active span {
         background: #ff007f; /* Your brand color */
         opacity: 1;
         }
         /* === Owl Nav Arrows (Optional, Style if used) === */
         .owl-carousel .owl-nav button {
         background: rgba(0, 0, 0, 0.3);
         border: none;
         color: white;
         font-size: 24px;
         padding: 10px;
         border-radius: 50%;
         transition: 0.3s;
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         }
         .owl-carousel .owl-nav .owl-prev {
         left: 15px;
         }
         .owl-carousel .owl-nav .owl-next {
         right: 15px;
         }
         .owl-carousel .owl-nav button:hover {
         background: rgba(0, 0, 0, 0.6);
         }
         /* Map Image Adjustment for proper height alignment */
         .about-section-two .image-box {
         height: 100%;
         }
         .about-section-two .image-box .image,
         .about-section-two .image-box .image img {
         height: 100%;
         width: 100%;
         object-fit: cover;
         /* Ensures image covers the area without distortion */
         }
         /* Icon styling for Fun Fact Section */
         .fun-fact-section .count-box .icon {
         font-size: 50px;
         /* Consistent font size for new icons */
         }
         .icon-circle {
         width: 80px;
         height: 80px;
         margin: 0 auto 15px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 36px;
         color: #fff;
         }
         .bg-purple {
         background-color: #6f42c1;
         }
         .count-text {
         font-size: 36px;
         font-weight: bold;
         color: #fff;
         margin-bottom: 10px;
         }
         .counter-title {
         font-size: 16px;
         color: #eee;
         }

         
.key-offerings {
  background: #f8f9fc;
}

/* Section Title */
.section-title h2 {
  font-weight: 700;
  text-align: center;
}

.section-title p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Card Design */
.offer-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Top Border Accent (like modern UI) */
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff3c3c, #080655);
}

/* Icon Circle */
.offer-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(8, 6, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #d32f2f;
  transition: 0.3s;
}

/* Icon hover */
.offer-card:hover .offer-icon {
  background: #d32f2f;
  color: #fff;
}

/* Button Styling */
.theme_red_btn {
  background: #d32f2f;
  border: none;
  color: #fff;
  border-radius: 25px;
  padding: 6px 16px;
  transition: 0.3s;
}

.theme_red_btn:hover {
  background: #080655;
  color: #fff;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Long red line */
.section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff3c3c;
  margin: 8px auto 0;
}

/* Short red line */
.section-title h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #ff3c3c;
  margin: 5px auto 0;
}



/** Counter Section***/
.counter-section {
  background: #080655;
  color: #fff;
}

/* Card feel */
.counter-box {
  padding: 35px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

/* Hover subtle */
.counter-box:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

/* ICON */
.counter-box .icon {
  font-size: 28px;
  color: #ff3c3c;
}

/* NUMBER */
.counter-number {
  font-size: 42px;   /* bigger */
  font-weight: 700;
  margin-bottom: 5px;
}

/* TEXT */
.counter-box p {
  font-size: 15px;
  color: #d1d1ff;
  margin: 0;
}

/* spacing between rows on mobile */
@media (max-width: 768px) {
  .counter-box {
    padding: 25px 10px;
  }
}
/** Counter Section***/


/***Client section***/

.client-slider {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

/* Track */
.client-track {
  display: flex;
  align-items: center;
  gap: 30px; /* 🔽 reduced spacing */
  width: max-content;
  animation: scroll 45s linear infinite;
}

/* Each item */
.client-item {
  flex: 0 0 auto;
}

/* Bigger box */
.client-item {
  width: 180px;
  height: 100px;

  background: #fff;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;

  border: 2px solid transparent; /* ✅ IMPORTANT */
  box-sizing: border-box;        /* ✅ prevents size jump */

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.client-item:hover {
  border-color: rgb(219, 216, 216) !important;
  background: #fff;;
}
/* Logo */
.client-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/***Client section end*****/

/***services-section start*****/

.services-section {
  background: #f8f9fa;
}

.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-card {
  display: block;
  padding: 15px;
  background: #f1f3f5;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s ease;
  text-align: center;
}

.service-card:hover {
  background: #d32f2f;
  color: #fff;
  transform: scale(1.05);
}

/***services-section end*****/



/******highlight css*************/

.highlight-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.highlight-scroll::-webkit-scrollbar {
    height: 6px;
}

.highlight-scroll::-webkit-scrollbar-thumb {
    background: #c32127;
    border-radius: 10px;
}

/* CARD */
.highlight-card {
    position: relative;
    min-width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.highlight-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: end;
    padding: 15px;
    color: #fff;
}

/* HOVER EFFECT */
.highlight-card:hover img {
    transform: scale(1.1);
}

/************Highlight css *******/