* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slider-item.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.slider-text {
  display: flex;
  align-items: center;
  height: 100%;
}

.slider-content {
  color: white;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.slider-item.active .hero-text h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.slider-item.active .hero-text p {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #4bc8ed;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.slider-item.active .btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 0.4s;
}

.btn:hover {
  background: #080808;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(63, 191, 211, 0.4);
}



/* Slider Controls Container */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Inactive Dots - Small Circles */
.slider-dot {
    width: 16px;
    height: 17px;
    background-color: #7ec8e3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Active Dot - Vertical Pill */
.slider-dot.active {
    width: 17px;
    height: 40px;
    background-color: #7ec8e3;
    border-radius: 9px;
}

/* Hover Effect */
.slider-dot:hover:not(.active) {
    background-color: #5fb8d9;
    transform: scale(1.2);
}


/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .slider-controls {
    bottom: 10px;
    /* right: 50%;
    transform: translateX(50%); */
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}


/* Features CSS STARTS */
/* =========================================
   FEATURES CSS STARTS
========================================= */

/* Features Section Container */
.features-section {
    background-color: #1a2d4a; /* Dark Navy Blue */
    padding: 60px 0;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout for 3 Columns */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Feature Item - Flex Row */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

/* Icon Wrapper */
.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    transition: transform 0.3s ease;
}

/* Hover Effect on Icon */
.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
}

/* Text Content Wrapper */
.feature-content {
    flex: 1;
}

/* Title Styling */
.feature-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Arial', sans-serif;
}

/* Description Styling */
.feature-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Arial', sans-serif;
    opacity: 0.9;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* Tablet View (769px to 1024px) - Keep 3 Columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

/* Mobile View (768px and below) - 1 Column */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .features-section {
        padding: 30px 0;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}




/* =========================================
   FEATURES CSS ENDS
========================================= */
/* =========================================
   FEATURES CSS ENDS
========================================= */
/* about sction */

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Row - Flex Layout */
.about-row {
    display: flex;
    
    gap: 60px;
}

/* Image Column - Left Side */
.about-col-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-images-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Image Box Base Styles */
.about-image-box {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* First Image - Top Left */
.image-box-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    z-index: 1;
}

/* Second Image - Bottom Right (Overlapping) */
.image-box-2 {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 65%;
    z-index: 2;
    border: 6px solid #ffffff;
}

/* Hover Effect */
.about-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.about-image-box:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* Content Column - Right Side */
.about-col-content {
    flex: 0 0 48%;
    max-width: 48%;
}

.about-content-wrapper {
    max-width: 540px;
}

/* About Subtitle - "ABOUT US" */
.about-subtitle {
    display: inline-block;
    color: #070707;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0px;
    font-family: 'Arial', sans-serif;
}

/* About Title */
.about-title {
    color: #1a2d4a;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 25px 0;
    font-family: 'Arial', sans-serif;
}

/* About Text */
.about-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-family: 'Arial', sans-serif;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* =========================================
   TABLET VIEW (769px - 1024px) - IMAGES FIX
========================================= */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-row {
        gap: 40px;
    }
    
    .about-col-image {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .about-images-wrapper {
        height: 420px;
        width: 100%;
        position: relative;
    }
    
    .about-image-box {
        position: absolute;
        display: block;
    }
    
    .image-box-1 {
        top: 0;
        left: 0;
        width: 70%;
        height: 75%;
        z-index: 1;
    }
    
    .image-box-2 {
        bottom: 0;
        right: 0;
        width: 65%;
        height: 65%;
        z-index: 2;
    }
    
    .about-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .about-col-content {
        flex: 0 0 48%;
        max-width: 48%;
    }
    
    .about-content-wrapper {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-text {
        font-size: 15px;
    }
}

/* =========================================
   MOBILE VIEW (768px and below)
========================================= */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-col-image,
    .about-col-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-images-wrapper {
        height: 450px;
    }
    
    .image-box-1 {
        width: 75%;
        height: 80%;
    }
    
    .image-box-2 {
        width: 60%;
        height: 60%;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-images-wrapper {
        height: 380px;
    }
    
    /* .about-subtitle {
        font-size: 14px;
    } */
    
    .about-title {
        font-size: 22px;
    }
}
















/* Service section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 29%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 100%;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: var(--topbar-blue);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--topbar-blue);
}

.btn-view-all:hover {
  background: transparent;
  color:#0B223B;
  border: 2px solid #0B223B;
  transform: translateY(-3px);
}

.no-services {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
  color: #666;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-img-wrapper {
    height: 250px;
  }
}
















/* Fun Facts Section */
/* Fun Facts Section */
.fun-facts-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

/* Dark Overlay to make text readable */
.fun-facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 45, 74, 0.75); /* Navy blue overlay with 75% opacity */
    z-index: 1;
}

/* Ensure content stays above the overlay */
.fun-facts-section .container-1200 {
    position: relative;
    z-index: 2;
}

/* Grid Layout for 4 Counters */
.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fun-fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Large Counter Numbers */
.counter-number {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    color: #ffffff;
}

/* Small Horizontal Line Separator */
.counter-separator {
    width: 40px;
    height: 2px;
    background-color: #fcb041; /* Yellow/Orange separator */
    margin-bottom: 15px;
}

/* Counter Labels */
.counter-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .fun-facts-grid {
        grid-template-columns: 1fr;
    }
    .counter-number {
        font-size: 44px;
    }
    .fun-facts-section {
        background-attachment: scroll;
        padding: 60px 0;
    }
}

/* funfacts end








/* =========================================
   CTA CSS STARTS
========================================= */
.cta-banner {
  padding: 35px 0;
  background: #0e2238; /* Dark navy blue background */
  margin-bottom: 40px;
  width: 100%;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side text wrapper */
.cta-banner > .container-1200 > div:first-child {
  flex: 1;
}

.cta-banner > .container-1200 > div > h2 {
  color: #7bc4e3; /* Light blue heading */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cta-banner > .container-1200 > div > p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Clock icon */
.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
  display: inline-block;
}

/* Button styling */
.cta-banner .btn-cta {

   display: inline-block;
  padding: 15px 40px;
  background: var(--topbar-blue);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--topbar-blue);
}

.cta-banner .btn-cta:hover {
  background: transparent;
  color:#FFFFFF;
  border: 2px solid #FFFFFF;
  /* transform: translateY(-3px); */
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
  }
}
/* =========================================
   CTA CSS END
========================================= */





/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #ecffe0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}




/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* --- Section Wrapper --- */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

/* --- Container --- */
.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* --- Testimonials Slider --- */
.testimonials-slider {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

/* --- Left Background Image --- */
.testimonial-left-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Right Background Image --- */
.testimonial-right-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Light Overlay for Right Side --- */
.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 58, 0.4);
    z-index: 1;
}

/* --- Content Wrapper --- */
.testimonial-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 30px;
    z-index: 2;
}

/* --- Content Slider --- */
.testimonial-content-slider {
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* --- Testimonial Item --- */
.testimonial-item {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Client Profile Image --- */
.client-profile {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.client-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Client Review --- */
.client-review {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Client Name --- */
.client-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Client Location --- */
.client-location {
    color: #6fcfe8;
    font-size: 15px;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

/* --- Slider Dots --- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #6fcfe8;
}

.dot:hover {
    background-color: #6fcfe8;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- Tablet (769px - 1024px) - Single Image --- */
@media (max-width: 1024px) and (min-width: 769px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Hide left image, show only right image */
    .testimonial-left-image {
        display: none;
    }

    .testimonials-slider {
        min-height: 450px;
    }

    .testimonial-right-image {
        flex: 1;
        width: 100%;
    }

    .testimonial-right-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-content-wrapper {
        padding: 50px 40px;
    }

    .client-profile {
        width: 90px;
        height: 90px;
    }

    .client-review {
        font-size: 15px;
    }

    .client-name {
        font-size: 18px;
    }
}

/* --- Mobile (768px and below) - Single Image --- */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Hide left image, show only right image */
    .testimonial-left-image {
        display: none;
    }

    .testimonials-slider {
        flex-direction: column;
        min-height: 500px;
    }

    .testimonial-right-image {
        flex: 1;
        width: 100%;
        max-height: 500px;
    }

    .testimonial-right-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-content-wrapper {
        padding: 62px 24px;
    }

    .testimonial-content-slider {
        max-width: 100%;
    }

    .client-profile {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .client-review {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .client-name {
        font-size: 17px;
    }

    .client-location {
        font-size: 14px;
    }

    .slider-dots {
        margin-top: 30px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* --- Small Mobile (480px and below) --- */
@media (max-width: 480px) {
    .testimonials-section .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .testimonials-slider {
        min-height: 450px;
    }

    .testimonial-right-image {
        min-height: 450px;
    }

    .testimonial-content-wrapper {
        padding: 35px 20px;
    }

    .client-profile {
        width: 70px;
        height: 70px;
    }

    .client-review {
        font-size: 13px;
    }

    .client-name {
        font-size: 16px;
    }
}








/* Offers Section */
.offers-section {
  padding: 80px 0 60px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.offer-image-wrapper {
  position: relative;
  overflow: hidden;
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-image {
  transform: scale(1.1);
}



/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */

.blogs-faq-wrapper {
  padding: 80px 0;
  background: #fff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Section Headers */
.section-header-custom {
  margin-bottom: 30px;
}

.section-title-custom {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  text-align: center;
  margin: 0 auto;
}

.section-subtitle-custom {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Blogs Grid (Flexbox) */
.blogs-grid-custom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card-custom {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
}

.blog-link-custom {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-image-wrapper-custom {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image-wrapper-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1a1a2e;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

.blog-content-custom {
  background: #fff;
  padding: 25px 20px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-description-custom {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-underline-custom {
  width: 40px;
  height: 2px;
  background: #ccc;
  margin-top: 15px;
  transition: background 0.3s ease;
}

/* Hover Effects */
.blog-card-custom:hover .blog-description-custom {
  color: var(--topbar-blue);
}

.blog-card-custom:hover .blog-underline-custom {
  background: var(--topbar-blue);
}

/* ============================================
   READ ARTICLE BUTTON STYLES
   ============================================ */

.blog-read-more {
  margin-top: 20px;
}

.read-article-btn {
  display: inline-block;
  color: var(--topbar-blue);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 25px;
}

.read-article-btn::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.blog-card-custom:hover .read-article-btn {
  color: var(--topbar-blue);
}

.blog-card-custom:hover .read-article-btn::after {
  transform: translateY(-50%) translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN (UPDATED & FIXED)
   ============================================ */

/* Tablet View (769px - 1024px) - 2 Columns */
@media (max-width: 1024px) and (min-width: 769px) {
  .blogs-faq-wrapper {
    padding: 70px 0;
  }

  .two-columns-row {
    gap: 40px;
  }

  .blogs-grid-custom {
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 280px;
  }

  .blog-image-wrapper-custom {
    height: 220px;
  }

  .blog-description-custom {
    font-size: 15px;
  }
}

/* Mobile View (768px and below) - 1 Column */
@media (max-width: 768px) {
  .blogs-faq-wrapper {
    padding: 60px 0;
  }

  .two-columns-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title-custom {
    font-size: 24px;
  }

  .blogs-grid-custom {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .blog-image-wrapper-custom {
    height: 250px;
  }

  .blog-description-custom {
    font-size: 15px;
  }

  .faq-question-custom {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer-content-custom {
    padding: 0 20px 18px 38px;
    font-size: 13px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .blogs-faq-wrapper {
    padding: 50px 0;
  }

  .section-title-custom {
    font-size: 22px;
  }

  .section-subtitle-custom {
    font-size: 14px;
  }

  .blog-image-wrapper-custom {
    height: 200px;
  }

  .blog-content-custom {
    padding: 20px 15px 15px;
  }

  .blog-description-custom {
    font-size: 14px;
  }

  .blog-title-bar-custom h3 {
    font-size: 14px;
  }

  .faq-question-custom {
    font-size: 14px;
    padding: 15px 18px;
  }

  .faq-answer-content-custom {
    padding: 0 18px 15px 35px;
  }
}