.blog-section {
    padding: 80px 30px;
    background-color: #f9fafc;
  }
  
  .blog-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #0b2e3f;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
  }
  
  .blog-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }
  
  .blog-card {
    overflow: hidden;
    border-radius: 8px;
  }
  
  .blog-card img {
    width: 100%;
    height: 200px; /* or adjust to your preferred height */
    object-fit: cover;
    object-position: 50% 30%;
    display: block;
  }
  main.blog-post img {
    width: 100%;
    height: auto; /* Allow the image to maintain its natural aspect ratio */
    object-fit: contain; /* Show the entire image without cropping */
    object-position: center center; /* Center the image both horizontally and vertically */
    display: block;
    border-radius: 8px; /* Optional: adds rounded corners */
  }
  
  
  .blog-card:hover img {
    transform: scale(1.05);
  }
  
  .blog-content {
    padding: 25px 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: center;
  }
  
  .blog-content h3 {
    font-size: 1.4rem;
    color: #093b56;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
  }
  
  .blog-content p {
    font-size: 1rem;
    color: #5f5f5f;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .read-more {
    color: #0b2e3f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .read-more:hover {
    color: #093b56;
    border-color: #093b56;
  }
  
  @media (max-width: 768px) {
    .blog-content h3 {
      font-size: 1.1rem;
    }
    .blog-content p {
      font-size: 0.9rem;
    }
    .blog-heading {
      font-size: 2rem;
    }
  }

  /* Blog Slider Section Container */
.blog-slider-section {
    padding: 80px 30px;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
  }
  .blog-slider-section.luxury {
    padding: 80px 30px;
    background: #f4f8fb;
    overflow: hidden;
  }
  
  /* Main Slider Wrapper */
  .blog-slider-wrapper.enhanced {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 30px;
  }
  
  /* Inner Slider (Track) */
  .blog-slider.premium-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
  }
  
  /* Each Card */
  .blog-card.premium {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: calc((100% - 50px) / 3); /* 3 cards visible with 25px gap */
    max-width: calc((100% - 50px) / 3);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .blog-card.premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }
  
  /* Card Image */
  .blog-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  /* Card Text */
  .blog-content {
    padding: 20px 20px 30px;
    text-align: center;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #093b56;
    margin-bottom: 10px;
  }
  
  .blog-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .read-more {
    text-decoration: none;
    color: #0b2e3f;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .read-more:hover {
    color: #093b56;
    border-color: #093b56;
  }
  
  /* Arrow Buttons */
  .arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(11, 46, 63, 0.85);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
  }
  
  .arrow:hover {
    background-color: #093b56;
  }
  
  .arrow.left {
    left: 0;
  }
  
  .arrow.right {
    right: 0;
  }
  
  /* Mobile Responsive */
  @media (max-width: 1024px) {
    .blog-card.premium {
      min-width: calc((100% - 25px) / 2);
      max-width: calc((100% - 25px) / 2);
    }
  }
  
  @media (max-width: 600px) {
    .blog-card.premium {
      min-width: 100%;
      max-width: 100%;
    }
  
    .arrow {
      display: none;
    }
  }
  




  .blog-post {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
    font-family: 'Inter', sans-serif;
  }
  .blog-post img:hover,
.hero-image-section img:hover,
.review-card img:hover {
  transform: scale(1.03); /* slight zoom on hover */
}
  .blog-post img,
.hero-image-section img,
.review-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* subtle depth */
  transition: transform 0.3s ease;
}
  .blog-post h1 {
    font-size: 2.4rem;
    color: #0b2e3f;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .blog-post .date {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .blog-post p {
    line-height: 1.75;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 24px;
  }
  .blog-post h2 {
    font-size: 1.5rem;
    color: #093b56;
    margin: 36px 0 16px;
  }
  .faq-wrapper {
    padding: 60px 20px;
    background-color: #f9fbfc;
    max-width: 960px;
    margin: 0 auto;
  }
  .faq-title {
    text-align: center;
    font-size: 2rem;
    color: #0b2e3f;
    margin-bottom: 30px;
    font-weight: 700;
  }
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .faq-item {
    border-radius: 40px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0b2e3f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
  }
  .faq-question:hover {
    background-color: #f0f5f9;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #444;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 30px 30px;
  }
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  .faq-question i {
    transition: transform 0.3s ease;
  }
  /* Add these styles to your blog.css or style.css file */

/* For elegant section dividers */
.content-divider {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  margin: 40px 0;
}

/* For highlighting key sections */
.highlight-section {
  background-color: #f9f9f9; /* A very light grey */
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
  border-left: 5px solid #007bff; /* A subtle accent color */
}

/* Style for lists with icons */
.icon-list li {
  list-style-type: none;
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.icon-list li .fa-icon {
  color: #007bff; /* Match your brand color */
  font-size: 20px;
  margin-right: 15px;
  margin-top: 4px;
}

/* ============================================== */
/* STRONGER STYLES FOR PREMIUM CTA BOX */
/* ============================================== */

.cta-box {
  background-color: #002349;
  color: #ffffff !important; /* This forces the text to be white */
  padding: 50px 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  color: #ffffff !important; /* Force heading to be white */
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-box p {
  color: #ffffff !important; /* Force paragraph to be white */
  font-size: 1.15em;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #ffffff;
  color: #002349 !important; /* Force button text to be dark blue */
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* ============================================== */
/* PREMIUM SERVICE CARD STYLES */
/* ============================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
  gap: 30px; /* Space between cards */
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Subtle border */
  border-radius: 12px; /* Softer corners */
  padding: 35px 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px); /* Lifts the card on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

.service-icon {
  font-size: 2.5em;
  color: #0056b3; /* A deep, professional blue */
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5em;
  color: #002349; /* Consistent dark blue heading */
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  line-height: 1.6;
  flex-grow: 1; /* Ensures all cards have same height */
  margin-bottom: 20px;
}

.service-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #002349;
  text-decoration: underline;
}
/* ============================================== */
/* MOBILE-FRIENDLY STYLES FOR CTA BOX - REVISED   */
/* Ensures full button text without breaking on mobile */
/* ============================================== */

@media (max-width: 768px) {
  .cta-box {
    padding: 40px 20px; /* Slightly more reduced padding to give button space */
    text-align: center;
    /* Important: Add min-width to prevent box from getting too small for button on very narrow screens */
    min-width: 280px; /* Ensures the box has a minimum width to comfortably hold the button */
  }

  .cta-box h2 {
    font-size: 1.8em;
    line-height: 1.3;
    margin-bottom: 15px; /* Reduce space if needed */
  }

  .cta-box p {
    font-size: 1em;
    padding: 0 5px; /* Add slight horizontal padding to paragraph to prevent it from touching edges */
  }

  .cta-button {
    /* Critical changes for full text on mobile */
    white-space: nowrap; /* Forces text to stay on one line */
    overflow-x: auto; /* Allows horizontal scrolling *within the button itself* if needed */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    display: inline-block; /* Essential for it to behave like a block but sit inline */
    max-width: 90%; /* Allows the button to take up most of the width */
    padding: 15px 25px; /* Adjusted padding to fit */
    font-size: 1em; /* Adjusted font size for readability on smaller screens */
    box-sizing: border-box; /* Include padding in the element's total width */
  }
}

/* You might also want to ensure the main content area is responsive */
@media (max-width: 768px) {
    main.blog-post {
        padding: 20px 15px; /* Adjust main content padding for mobile */
    }
    h1 {
        font-size: 2em; /* Adjust main title size */
    }
    h2 {
        font-size: 1.6em; /* Adjust section title size */
    }
    p {
        font-size: 0.95em; /* Adjust paragraph text size */
    }
    .services-grid {
        grid-template-columns: 1fr; /* Stack service cards vertically on mobile */
    }
    .service-card {
        padding: 25px 20px;
    }
    .service-icon {
        font-size: 2em;
    }
    .service-card h3 {
        font-size: 1.3em;
    }
    .bold-feature-list li {
        font-size: 1em;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    .bold-feature-list li strong {
        font-size: 1.1em;
    }
    .faq-title {
        font-size: 1.8em;
    }
    .faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .faq-answer p {
        font-size: 0.9em;
        padding: 10px 15px;
    }
    /* Ensure the main container doesn't get too wide on small screens if it has fixed width */
    .blog-post {
        max-width: 100%;
        overflow-x: hidden; /* Prevent horizontal scroll from main content */
    }
    .highlight-section {
        padding: 30px 20px;
    }
}