/* Main Styles - Optimized for PageSpeed */
/* Import fonts with display swap for better performance */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
    --primary-color: #000080;
    --accent-color: #ff0000;
    --text-color: #333;
    --light-color: #fff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-display: swap;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: var(--light-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.header.hidden {
    transform: translateY(-100%);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar a {
    color: var(--light-color);
    text-decoration: none;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Logo and Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 80px; /* Fixed height for nav container */
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px;
    height: auto;
    max-height: 50px; /* Prevent logo from changing height */
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%; /* Full height of parent */
}

.nav-menu li {
    position: relative;
    height: 100%; /* Consistent height */
    display: flex;
    align-items: center;
}

.nav-menu a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Left Animation for Nav Menu */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        /* Changed from right to left */
        width: 100%;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        /* Shadow adjusted for left side */
        transition: left 0.3s ease;
        /* Changed from right to left */
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
        /* Changed from right to left */
        animation: slideInFromLeft 0.5s ease forwards;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
    }
}

/* Hide mobile toggle in PC view */
@media (min-width: 769px) {

    .mobile-nav-toggle,
    .mobile-nav-close {
        display: none !important;
    }

    /* Ensure nav menu is always visible and properly displayed on larger screens */
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        height: auto;
        padding-top: 0;
    }
}

/* Hero Banner - Optimized for PageSpeed and LCP */
.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    contain: layout paint size; /* Full containment for layout stability */
    aspect-ratio: 16/9; /* Fixed aspect ratio */
    background-color: #f0f0f0; /* Placeholder color */
}

.hero-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateZ(0); /* Force GPU rendering */
    backface-visibility: hidden; /* Performance optimization */
    contain: paint; /* Optimize painting */
}

/* Image Optimization Styles */
.optimized-image {
    opacity: 1; /* Start visible to prevent flicker */
    transition: opacity 0.3s ease-in-out; /* Faster transition */
}

.optimized-image.loaded {
    opacity: 1;
    will-change: auto; /* Release GPU resources after load */
}

/* Placeholder styles */
.image-placeholder {
    background-color: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
    z-index: -1; /* Place below the image */
}

.image-placeholder.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Fade-in animation for hero image */
@keyframes fadeIn {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.hero-banner .optimized-image.loaded {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Service image containers */
.service-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 177/236; /* Lock in aspect ratio to prevent shifts */
    contain: layout paint size;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1; /* Square aspect ratio */
    contain: layout paint size;
}

.availability-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    contain: layout paint size;
    aspect-ratio: 1200/600; /* Based on image dimensions */
}

/* Fix for video containers */
.video-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4; /* Based on video dimensions */
    contain: layout paint size;
}

/* Main content containment */
main {
    overflow-x: hidden; /* Prevent horizontal overflow */
    width: 100%;
    position: relative;
    contain: layout paint; /* Layout containment for main */
}

/* Content Section Styles */
.content-section {
    padding: 40px 0;
    background-color: #f5f5f5; /* Light gray background */
    min-height: 200px; /* Minimum height to prevent layout shift */
    box-sizing: border-box;
    contain: layout paint; /* Improved performance with containment */
}

.content-section .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    color: inherit;
    contain: layout paint; /* Prevent layout shifts from title rendering */
}

/* Mobile-specific styles for more compact view */
@media (max-width: 768px) {
    .content-section {
        padding: 20px 0;
        min-height: 180px; /* Smaller minimum height for mobile */
    }
    
    .content-section .container {
        padding: 0 15px;
    }
    
    .content-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

/* Service List Section - Optimized for PageSpeed */
.service-list {
    padding: 50px 0;
    background-color: #fff;
}

.services-container {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-item {
    display: flex;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    contain: content; /* Performance optimization */
    position: relative; /* For proper image positioning */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    flex: 0 0 177px;
    height: 236px; /* Updated to match reference image aspect ratio */
    overflow: hidden;
    border-radius: 8px;
}

.service-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    transition: opacity 0.3s ease;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio and fills container */
    object-position: center top; /* Position from top to match reference */
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity; /* Performance hint */
    transform: translateZ(0); /* Force GPU rendering */
    border-radius: 8px;
}

.service-image.loaded {
    opacity: 1;
}

.service-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-location {
    font-size: 14px;
    color: #000000;
    font-weight: bold;
}

.service-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #ce120d;
    color: white;
}

.btn-secondary {
    background-color: #3f51b5;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/pattern-bg.webp');
    color: white;
}

.why-choose-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
}

.choose-us-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.choose-us-image img, .choose-us-image .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.book-now-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.book-now-button {
    display: inline-block;
    background-color: #e91e63;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.book-now-button:hover {
    background-color: #c2185b;
    transform: translateY(-3px);
}

.choose-us-image .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
}

.choose-us-image .image-placeholder.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.choose-us-content {
    flex: 0 0 55%;
    padding: 20px;
}

.choose-us-divider {
    width: 80px;
    height: 3px;
    background-color: #e91e63;
    margin: 15px 0 25px;
}

.choose-us-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: white;
}

/* Responsive styles for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .choose-us-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .choose-us-content {
        width: 100%;
    }
}

.btn:hover {
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    contain: content;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio */
    overflow: hidden;
}

.gallery-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    transition: opacity 0.3s ease;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
    transform: translateZ(0);
    border-radius: 8px;
}

.gallery-image.loaded {
    opacity: 1;
}

/* Responsive styles for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-section {
        padding: 30px 0;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
}

/* Video FAQ Section Styles */
.video-faq-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.video-faq-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-faq-item {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-faq-item.reverse {
    flex-direction: row-reverse;
}

.video-faq-item.text-only .faq-content {
    max-width: 100%;
}

.video-container {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
    display: block;
}

.faq-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-content.full-width {
    max-width: 100%;
}

.faq-qa {
    margin-bottom: 15px;
}

.faq-question {
    font-size: 18px;
    color: #000080;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Video controls styling */
.faq-video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0);
}

.faq-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0);
}

/* Add loading animation for videos */
@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.faq-video.loaded {
    animation: videoFadeIn 0.5s ease-in;
}

/* Responsive styles for Video FAQ Section */
@media (max-width: 768px) {
    .video-faq-item, 
    .video-faq-item.reverse {
        flex-direction: column;
    }
    
    .video-container {
        flex: 0 0 auto;
        height: 300px;
        width: 100%;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

/* Pricing Tables Section */
.pricing-section {
    padding: 50px 0;
    background-color: #0c0054; /* Dark navy blue background */
    color: #fff;
}

.pricing-tables-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pricing-table {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #333;
    transition: transform 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background-color: #0a4c91; /* Darker blue for header */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-price {
    font-size: 26px;
    font-weight: 700;
}

.pricing-features {
    padding: 20px;
    background-color: #fff;
}

.pricing-feature {
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Responsive styles for Pricing Tables */
@media (max-width: 768px) {
    .pricing-tables-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-table {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .pricing-header {
        padding: 15px;
    }
    
    .pricing-title {
        font-size: 22px;
    }
    
    .pricing-price {
        font-size: 24px;
    }
    
    .pricing-feature p {
        font-size: 15px;
    }
}

/* Service Types Section */
.service-types-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.service-type-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.service-type-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-type-title {
    font-size: 20px;
    color: #000080;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Service Type Items Styles */
.service-type-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Content Section Styles for Escorts Service Content */
.content-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.content-section.alt-bg {
    background-color: #f0f8ff; /* Light blue background for alternating sections */
}

.content-text {
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
    color: #333;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for Content Sections */
@media (max-width: 768px) {
    .content-text p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .content-section {
        padding: 30px 0;
    }
}

/* Footer Styles */
.footer {
    margin-top: 50px;
}

.footer-top {
    background-color: #0c0054; /* Dark navy blue */
    color: #fff;
    padding: 40px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.footer-divider {
    height: 2px;
    background-color: #fff;
    width: 80px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.contact-name {
    font-weight: 600;
}

.contact-address, .contact-phone, .contact-email {
    margin-bottom: 8px;
}

.contact-email a {
    color: #fff;
    text-decoration: underline;
}

.contact-email a:hover {
    color: #ddd;
}

/* Footer Cities Section */
.footer-cities {
    background-color: #00a928; /* Bright green */
    padding: 20px 0;
}

.cities-grid {
        display: flex
;
    gap: 10px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0054; /* Dark navy blue */
    color: #fff;
    padding: 8px 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
    width: 115px; /* Fixed width for desktop */
    text-align: center;
    flex-grow: 1;
}

.city-link:hover {
    background-color: #150080; /* Slightly lighter blue */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .footer-text, .contact-info p {
        font-size: 14px;
    }
    
   
    
    .city-link {
        font-size: 13px;
        padding: 6px 5px;
    }
}

/* Copyright Section */
.copyright-section {
    background-color: #2a2e38; /* Dark gray background */
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    margin-bottom: 20px;
}

.website-rent {
    margin-bottom: 20px;
}

.rent-text {
    font-size: 14px;
}

.rent-text a {
    color: #fff;
    text-decoration: underline;
}

.rent-text a:hover {
    color: #ddd;
}

.dmca-container {
    margin-bottom: 30px;
}

.dmca-badge {
    display: inline-block;
    max-width: 150px;
}

.banner-container {
    margin: 50px auto;
    max-width: 800px;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Responsive Copyright Section */
@media (max-width: 768px) {
    .copyright-text, .rent-text {
        font-size: 12px;
    }
    
    .dmca-badge {
        max-width: 120px;
    }
    
    .banner-container {
        max-width: 100%;
    }
}

/* Availability Banner in Service Types Section */
.service-type-item.full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 30px;
    box-shadow: none;
    background-color: transparent;
}

.availability-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.availability-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.availability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-content {
    text-align: center;
    padding: 20px;
}

.availability-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff3232;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.availability-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6bbf;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.availability-satisfaction {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4169e1;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.satisfaction-badge {
    display: inline-block;
    margin-top: 10px;
}

.satisfaction-badge img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Responsive styles for Availability Banner */
@media (max-width: 768px) {
    .availability-title {
        font-size: 28px;
    }
    
    .availability-subtitle {
        font-size: 24px;
    }
    
    .availability-satisfaction {
        font-size: 20px;
    }
    
    .satisfaction-badge img {
        width: 80px;
        height: 80px;
    }
}

/* Responsive styles for Service Types */
@media (max-width: 768px) {
    .service-types-section {
        padding: 30px 0;
    }
    
    .service-type-item {
        padding: 15px 20px;
    }
    
    .service-type-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-type-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Responsive Design for Service List */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }
    
    .service-image-container {
        flex: 0 0 auto;
        height: 400px; /* Taller on mobile to show full image clearly */
        width: 100%;
        border-radius: 8px 8px 0 0; /* Rounded top corners only */
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content h3 {
        font-size: 16px;
    }
    
    .service-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-buttons {
        width: 100%;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 14px;
        flex: 1;
    }
}



 /* Blog section styles */
            .blog-section {
                padding: 40px 0;
                background-color: #f9f9f9;
            }
            
            .blog-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
                margin-bottom: 30px;
            }
            
            @media (max-width: 767px) {
                .blog-container {
                    grid-template-columns: 1fr;
                }
            }
            
            .blog-card {
                background: #fff;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
                height: 100%;
                display: flex;
                flex-direction: column;
                contain: content;
            }
            
            .blog-card:hover {
                transform: translateY(-5px);
            }
            
            .blog-image-container {
                position: relative;
                padding-top: 100%; /* 16:9 aspect ratio */
                overflow: hidden;
                background-color: #f0f0f0;
            }
            
            .blog-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .blog-card:hover .blog-image {
                transform: scale(1.05);
            }
            
            .blog-content {
                padding: 15px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }
            
            .blog-title {
                font-size: 18px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #333;
                line-height: 1.3;
            }
            
            .blog-excerpt {
                font-size: 14px;
                color: #666;
                margin-bottom: 15px;
                flex-grow: 1;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .blog-meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 12px;
                color: #888;
                margin-top: auto;
            }
            
            .blog-date {
                display: flex;
                align-items: center;
                font-size: 14px;
                color: #000;
            }
            
            .blog-author {
                color: #000080;
    font-size: 14px;
            }
            
            .read-more {
                display: inline-block;
                padding: 8px 15px;
                background-color: #ff0000;
                color: #fff;
                text-decoration: none;
                border-radius: 4px;
                font-size: 14px;
                font-weight: 500;
                transition: background-color 0.3s ease;
                margin-top: 15px;
                text-align: center;
            }
            
            .read-more:hover {
                background-color: #d61e1c;
            }
            
            .view-all-btn {
                padding: 10px 25px;
                background-color: #000080;
                color: #fff;
                border: none;
                border-radius: 4px;
                font-size: 16px;
                font-weight: 500;
                cursor: pointer;
                transition: background-color 0.3s ease;
                display: inline-block;
                margin-top: 10px;
            }
            
            .view-all-btn:hover {
                background-color: #d61e1c;
            }
            
            /* Loading spinner */
            .loading-spinner {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 200px;
            }
            
            .spinner {
                width: 40px;
                height: 40px;
                border: 4px solid rgba(0, 0, 0, 0.1);
                border-radius: 50%;
                border-top-color: #ff0000;
                animation: spin 1s ease-in-out infinite;
            }
            
            @keyframes spin {
                to { transform: rotate(360deg); }
            }




            .special-section {
    font-family: 'Poppins', Arial, sans-serif;
    padding: 40px 0;
  }
  .section-title {
    margin-bottom: 30px;
    font-size: 28px;
    color: #e91e63;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
  }
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e91e63;
  }
  .services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .category-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 180px;
  }
  .category-item {
    background-color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s ease;
  }
  
  .image-container {
    border: 2px solid #e91e63;
    border-radius: 8px;
    padding: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    border-radius: 5px;
    transition: transform 0.5s;
  }
  .image-container img:hover {
    transform: scale(1.05);
  }
  /* Responsive */
  @media (max-width: 768px) {
    .service-row {
      flex-direction: column;
      gap: 25px;
    }
    .category-column {
      width: 100%;
      max-width: 250px;
      order: 2;
    }
    .image-container {
      order: 1;
      margin: 0 auto;
    }
  }
  /* Additional responsive styles */
  @media (max-width: 480px) {
    .special-section {
      padding: 30px 0 20px;
    }
    .section-title {
      font-size: 22px;
      margin-bottom: 20px;
    }
    .services-wrapper {
      gap: 20px;
    }
    .category-column {
      gap: 8px;
    }
    .category-item {
      font-size: 13px;
      padding: 7px 10px;
    }
    
  }