/* ===================================
   HOME PAGE STYLES - homeCss.css
   =================================== */

/* Banner Width Container - Matches banner width */
.banner-width-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Remove Bootstrap container constraints for banner-width sections */
.container-fluid.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Universal Banner Class - Use for all sections */
.universal-banner {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.universal-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.universal-banner:hover img {
    transform: scale(1.02);
}

.universal-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.universal-banner-content {
    max-width: 800px;
    color: white;
}

.universal-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.universal-banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.universal-banner-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Responsive Design for Universal Banner */
@media (max-width: 768px) {
    .universal-banner {
        height: 350px;
    }

    .universal-banner img,
    .universal-banner-placeholder {
        height: 350px;
    }

    .universal-banner-title {
        font-size: 2rem;
    }

    .universal-banner-subtitle {
        font-size: 1rem;
    }

    .universal-banner-overlay {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .universal-banner {
        height: 300px;
    }

    .universal-banner img,
    .universal-banner-placeholder {
        height: 300px;
    }

    .universal-banner-title {
        font-size: 1.5rem;
    }
}

/* Common Section Styles */
.home-section {
    padding: 4rem 0;
    margin-bottom: 3rem; /* Add gap between sections */
}

.home-section-light {
    background-color: #fff;
}

.home-section-gray {
    background-color: #f8f9fa;
}

.home-section-white {
    background-color: #fff;
}
    background-color: #f8f9fa;
}

/* Common Title and Subtitle Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Introductory Message Section */
.intro-message-section {
    background-color: #f8f9fa;
    border-bottom: 16px solid #e9ecef;
    padding: 3rem 0;
}

.intro-message {
    padding: 2rem 1rem;
}

.intro-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
    position: relative;
}

.intro-text::before,
.intro-text::after {
    content: '"';
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

.intro-text::before {
    margin-right: 0.25rem;
}

.intro-text::after {
    margin-left: 0.25rem;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    padding: 4rem 0;
}

.about-preview {
    max-width: 800px;
    margin: 0 auto;
}

/* Factory Section */
.factory-section {
    background-color: #fff;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

.factory-banner-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factory-banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.factory-banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.factory-banner-image[onclick] {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.factory-banner-image[onclick]:hover {
    filter: brightness(0.9);
}

.factory-banner-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px dashed #dee2e6;
}

.factory-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.factory-banner-placeholder p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.factory-video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.video-text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quality Certifications Section */
.quality-certifications-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

.certification-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.certification-image-container {
    margin-bottom: 1.5rem;
}

.certification-image {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.certification-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px dashed #dee2e6;
}

.certification-icon {
    font-size: 3rem;
    color: #667eea;
}

.certification-content {
    margin-top: auto;
}

.certification-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Brand Partners Section */
.brand-partner-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.brand-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.brand-partner-image-container {
    margin-bottom: 1.5rem;
}

.brand-partner-image {
    width: 100%;
    max-width: 150px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.brand-partner-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px dashed #dee2e6;
}

.brand-partner-icon {
    font-size: 2.5rem;
    color: #667eea;
}

.brand-partner-content {
    margin-top: auto;
}

.brand-partner-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.brand-partner-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Our Services Section */
.our-services-section {
    background-color: #fff;
    padding: 4rem 0;
}

.services-content {
    padding-right: 2rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
}

.service-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.service-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translate(5px, -5px);
}

/* Room Categories Grid */
.room-categories-grid {
    height: 400px;
}

.room-category {
    height: 190px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.room-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.kitchen-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23d4a574" width="400" height="300"/><rect fill="%23c19660" x="0" y="200" width="400" height="100"/><rect fill="%23f5f5f5" x="50" y="50" width="300" height="120"/><rect fill="%23333" x="80" y="80" width="240" height="60"/></svg>');
}

.dining-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e8d5b7" width="400" height="300"/><rect fill="%23d4a574" x="0" y="200" width="400" height="100"/><circle fill="%238b4513" cx="200" cy="150" r="80"/><rect fill="%23654321" x="180" y="230" width="40" height="70"/></svg>');
}

.bedroom-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23b8d4e3" width="400" height="300"/><rect fill="%23a0c4d4" x="0" y="200" width="400" height="100"/><rect fill="%23f0f8ff" x="80" y="120" width="240" height="80"/><rect fill="%23ddd" x="100" y="100" width="200" height="20"/></svg>');
}

.living-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f4e4bc" width="400" height="300"/><rect fill="%23e6d3a3" x="0" y="200" width="400" height="100"/><rect fill="%23d2691e" x="50" y="150" width="120" height="50"/><rect fill="%23cd853f" x="230" y="140" width="120" height="60"/></svg>');
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.room-category:hover .room-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.room-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Bootstrap-based Products Featured Grid */
.product-feature-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-bottom: 0;
}

.product-feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-feature-item:hover img {
    transform: scale(1.05);
}

.product-feature-item.large {
    height: 400px;
}

.product-feature-item.square {
    height: 200px;
}

.product-feature-item.tall {
    height: 615px;
    /* 400 (large) + 200 (square) + 15 (gap) */
}

@media (max-width: 991px) {
    .product-feature-item.large {
        height: 350px;
    }

    .product-feature-item.square {
        height: 180px;
    }

    .product-feature-item.tall {
        height: 545px;
    }
}

@media (max-width: 767px) {

    .product-feature-item.large,
    .product-feature-item.square,
    .product-feature-item.tall {
        height: 250px;
    }
}

.product-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    padding: 20px;
    text-align: center;
}

.product-feature-item:hover .product-feature-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.product-feature-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .product-feature-title {
        font-size: 1.4rem;
    }
}



/* Contact Section */
.contact-preview {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
}

/* Common Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.text-primary {
    color: #667eea !important;
}

/* Video Modal Styles */
.video-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-content video {
    border-radius: 4px;
    max-height: 70vh;
}

.video-modal-content iframe {
    border-radius: 4px;
    min-height: 400px;
}

.video-modal-close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-modal-close:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large screens (992px and up) */
@media (max-width: 992px) {
    .services-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .room-categories-grid {
        height: auto;
    }

    .room-category {
        height: 150px;
    }

    .factory-banner-image,
    .factory-banner-placeholder {
        height: 300px;
    }

    .certification-image {
        max-width: 120px;
        height: 120px;
    }

    .certification-placeholder {
        height: 120px;
    }

    .certification-icon {
        font-size: 2.5rem;
    }

    .brand-partner-image {
        max-width: 120px;
        height: 100px;
    }

    .brand-partner-placeholder {
        height: 100px;
    }

    .brand-partner-icon {
        font-size: 2rem;
    }
}

/* Medium screens (768px and up) */
@media (max-width: 768px) {
    .intro-text {
        font-size: 1.25rem;
    }

    .intro-message {
        padding: 1.5rem 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .room-title {
        font-size: 1.2rem;
    }

    .factory-banner-image,
    .factory-banner-placeholder {
        height: 250px;
    }

    .factory-icon {
        font-size: 3rem;
    }

    .factory-video-label {
        bottom: 15px;
        left: 15px;
        padding: 6px 12px;
    }

    .video-text {
        font-size: 0.8rem;
    }

    .certification-card {
        padding: 1.5rem 1rem;
    }

    .certification-image {
        max-width: 100px;
        height: 100px;
    }

    .certification-placeholder {
        height: 100px;
    }

    .certification-icon {
        font-size: 2rem;
    }

    .certification-title {
        font-size: 1rem;
    }

    .brand-partner-card {
        padding: 1.5rem 1rem;
    }

    .brand-partner-image {
        max-width: 100px;
        height: 80px;
    }

    .brand-partner-placeholder {
        height: 80px;
    }

    .brand-partner-icon {
        font-size: 1.5rem;
    }

    .brand-partner-title {
        font-size: 0.9rem;
    }

    .video-modal-content {
        width: 95%;
        padding: 10px;
        max-height: 85vh;
    }

    .video-modal-content iframe {
        height: 250px !important;
        min-height: 250px;
    }

    .video-modal-content video {
        max-height: 60vh;
    }

    .video-modal-close {
        font-size: 28px;
        top: -5px;
        right: 5px;
    }
}

/* Small screens (576px and up) */
@media (max-width: 576px) {
    .intro-text {
        font-size: 1.1rem;
    }

    .intro-text::before,
    .intro-text::after {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .room-category {
        height: 120px;
    }

    .room-title {
        font-size: 1rem;
    }

    .factory-banner-image,
    .factory-banner-placeholder {
        height: 200px;
    }

    .factory-icon {
        font-size: 2.5rem;
    }

    .factory-video-label {
        bottom: 10px;
        left: 10px;
        padding: 4px 8px;
    }

    .video-text {
        font-size: 0.75rem;
    }

    .certification-card {
        padding: 1rem 0.75rem;
    }

    .certification-image {
        max-width: 80px;
        height: 80px;
    }

    .certification-placeholder {
        height: 80px;
    }

    .certification-icon {
        font-size: 1.5rem;
    }

    .certification-title {
        font-size: 0.9rem;
    }

    .brand-partner-card {
        padding: 1rem 0.75rem;
    }

    .brand-partner-image {
        max-width: 80px;
        height: 60px;
    }

    .brand-partner-placeholder {
        height: 60px;
    }

    .brand-partner-icon {
        font-size: 1.2rem;
    }

    .brand-partner-title {
        font-size: 0.8rem;
    }
}

/* ===================================
   SERVICES SECTION STYLES
   =================================== */

.services-content {
    padding-right: 2rem;
}

.services-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
}

.service-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.service-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translate(5px, -5px);
}

.services-cta .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Room Categories Grid */
.room-categories-grid {
    height: 400px;
}

.room-category {
    height: 190px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.room-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.kitchen-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23d4a574" width="400" height="300"/><rect fill="%23c19660" x="0" y="200" width="400" height="100"/><rect fill="%23f5f5f5" x="50" y="50" width="300" height="120"/><rect fill="%23333" x="80" y="80" width="240" height="60"/></svg>');
}

.dining-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23e8d5b7" width="400" height="300"/><rect fill="%23d4a574" x="0" y="200" width="400" height="100"/><circle fill="%238b4513" cx="200" cy="150" r="80"/><rect fill="%23654321" x="180" y="230" width="40" height="70"/></svg>');
}

.bedroom-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23b8d4e3" width="400" height="300"/><rect fill="%23a0c4d4" x="0" y="200" width="400" height="100"/><rect fill="%23f0f8ff" x="80" y="120" width="240" height="80"/><rect fill="%23ddd" x="100" y="100" width="200" height="20"/></svg>');
}

.living-category {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f4e4bc" width="400" height="300"/><rect fill="%23e6d3a3" x="0" y="200" width="400" height="100"/><rect fill="%23d2691e" x="50" y="150" width="120" height="50"/><rect fill="%23cd853f" x="230" y="140" width="120" height="60"/></svg>');
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.room-category:hover .room-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.room-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Responsive Design for Services Section */
@media (max-width: 992px) {
    .services-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .services-intro-title {
        font-size: 1.8rem;
    }

    .room-categories-grid {
        height: auto;
    }

    .room-category {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .services-intro-title {
        font-size: 1.6rem;
    }

    .services-intro-text {
        font-size: 1rem;
    }

    .room-title {
        font-size: 1rem;
    }

    .room-category {
        height: 120px;
    }

    .service-item {
        padding: 0.75rem 0;
    }

    .service-text {
        font-size: 1rem;
    }

    .service-arrow {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-intro-title {
        font-size: 1.4rem;
    }

    .room-category {
        height: 100px;
    }

    .room-title {
        font-size: 0.9rem;
    }
}

/* ===================================
   EXPERIENCE CENTRE SECTION STYLES
   =================================== */

.experience-banner-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-banner-image {
    width: 100%;
    height: 500px;
    /*    min-height: 400px;*/
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-banner-image:hover {
    transform: scale(1.02);
}

.experience-banner-placeholder {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Responsive Design for Experience Centre */
@media (max-width: 768px) {
    .experience-banner-image {
        min-height: 250px;
    }

    .experience-banner-placeholder {
        min-height: 250px;
        padding: 2rem 1rem;
    }

    .experience-icon {
        font-size: 3rem;
    }
}

/* ===================================
   HOME FAQ SECTION STYLES
   =================================== */

.home-faq-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.home-faq-item .accordion-button {
    background: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.home-faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.home-faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.home-faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.home-faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.home-faq-answer {
    padding: 1.25rem 1.5rem;
    background: white;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}

.home-faq-question {
    flex: 1;
    text-align: left;
}

.home-faq-placeholder {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Hover effects */
.home-faq-item .accordion-button:hover {
    background: #f8f9fa;
}

.home-faq-item .accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Responsive Design for Home FAQ */
@media (max-width: 768px) {
    .home-faq-item .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .home-faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 2.5rem;
    }
}

/* TalkTown Section Styles */
.talktown-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.talktown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.talktown-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: #f8f9fa;
}

.talktown-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.talktown-card:hover .talktown-card-image img {
    transform: scale(1.05);
}

.talktown-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px);
}

.talktown-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.talktown-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.talktown-view-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
}

.talktown-view-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.talktown-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.talktown-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.talktown-placeholder h3 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.talktown-placeholder p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive Design for TalkTown Cards */
@media (max-width: 992px) {
    .talktown-card-image {
        height: 160px;
    }

    .talktown-card-content {
        padding: 1.25rem;
        height: calc(100% - 160px);
    }
}

@media (max-width: 768px) {
    .talktown-card {
        margin-bottom: 1.5rem;
    }

    .talktown-card-image {
        height: 200px;
    }

    .talktown-card-content {
        padding: 1.5rem;
        height: calc(100% - 200px);
    }

    .talktown-card-title {
        font-size: 1.2rem;
    }

    .talktown-card-description {
        font-size: 1rem;
    }

    .talktown-placeholder {
        padding: 3rem 1.5rem;
    }

    .talktown-icon {
        font-size: 3rem;
    }
}

/* ===================================
   PORTFOLIO SECTION STYLES
   =================================== */

.portfolio-carousel {
    position: relative;
    margin-top: 2rem;
/*    padding: 0 60px;*/
    /* Add padding for navigation buttons */
}

.portfolio-grid {
    padding: 0 15px;
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image-container {
    height: 100%;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.portfolio-icon {
    font-size: 3rem;
    color: #6c757d;
}

/* Portfolio Carousel Controls */
.portfolio-carousel .carousel-control-prev,
.portfolio-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.portfolio-carousel .carousel-control-prev {
    left: -25px;
}

.portfolio-carousel .carousel-control-next {
    right: -25px;
}

.portfolio-carousel .carousel-control-prev-icon,
.portfolio-carousel .carousel-control-next-icon {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.portfolio-carousel .carousel-control-prev:hover,
.portfolio-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Portfolio Carousel Indicators */
.portfolio-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.portfolio-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
}

.portfolio-indicators button.active {
    background-color: #667eea;
}

/* Portfolio Placeholder Section */
.portfolio-placeholder-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem 0;
}

.portfolio-section-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.portfolio-placeholder-section h3 {
    color: #495057;
    margin-bottom: 1rem;
}

.portfolio-placeholder-section p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design for Portfolio */
@media (max-width: 992px) {
    .portfolio-card {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .portfolio-card {
        height: 200px;
        margin-bottom: 1rem;
    }

    .portfolio-carousel .carousel-control-prev,
    .portfolio-carousel .carousel-control-next {
        display: flex;
        width: 40px;
        height: 40px;
        left: 5px;
    }

    .portfolio-carousel .carousel-control-next {
        right: 5px;
        left: auto;
    }

    .portfolio-indicators {
        bottom: -30px;
    }

    .portfolio-grid {
        padding: 0 5px;
    }

    .portfolio-grid .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .portfolio-grid .row .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        display: block !important;
    }
}

@media (max-width: 576px) {
    .portfolio-card {
        height: 180px;
    }

    .portfolio-icon {
        font-size: 2rem;
    }
}

/* ===================================
   TALKTOWN CAROUSEL STYLES
   =================================== */

.talktown-carousel {
    position: relative;
    margin-top: 2rem;
/*    padding: 0 60px;*/
    /* Add padding for navigation buttons */
}

.talktown-grid {
    padding: 0 15px;
}

/* TalkTown Carousel Controls */
.talktown-carousel .carousel-control-prev,
.talktown-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.talktown-carousel .carousel-control-prev {
    left: -25px;
}

.talktown-carousel .carousel-control-next {
    right: -25px;
}

.talktown-carousel .carousel-control-prev-icon,
.talktown-carousel .carousel-control-next-icon {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.talktown-carousel .carousel-control-prev:hover,
.talktown-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* TalkTown Carousel Indicators */
.talktown-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.talktown-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
}

.talktown-indicators button.active {
    background-color: #667eea;
}

/* Responsive Design for TalkTown Carousel */
@media (max-width: 992px) {
    /* No specific changes needed */
}

@media (max-width: 768px) {

    .talktown-carousel .carousel-control-prev,
    .talktown-carousel .carousel-control-next {
        display: flex;
        width: 40px;
        height: 40px;
        left: 5px;
    }

    .talktown-carousel .carousel-control-next {
        right: 5px;
        left: auto;
    }

    .talktown-indicators {
        bottom: -30px;
    }

    .talktown-grid {
        padding: 0 5px;
    }

    .talktown-grid .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .talktown-grid .row .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        display: block !important;
    }

    .talktown-card {
        margin-bottom: 1rem;
    }
}

/* ===================================
   GUARANTEE SECTION STYLES
   =================================== */

.guarantee-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guarantee-icon-container {
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.guarantee-placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.guarantee-placeholder-icon i {
    font-size: 2rem;
    color: white;
}

.guarantee-fontawesome-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.guarantee-fontawesome-icon i {
    font-size: 2rem;
    color: white;
}

.guarantee-icon-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.guarantee-content {
    margin-top: 1rem;
}

.guarantee-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Guarantee */
@media (max-width: 768px) {
    .guarantee-card {
        padding: 1.5rem;
    }

    .guarantee-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-placeholder-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-fontawesome-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-placeholder-icon i {
        font-size: 1.5rem;
    }

    .guarantee-fontawesome-icon i {
        font-size: 1.5rem;
    }

    .guarantee-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .guarantee-card {
        padding: 1rem;
    }

    .guarantee-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   PROCESS SECTION STYLES
   =================================== */

.process-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-image img {
    max-width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.process-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Section Responsive */
@media (max-width: 768px) {
    .process-card {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }

    .process-image img {
        max-width: 80px;
        height: 80px;
    }

    .process-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process-card {
        margin-bottom: 2.5rem;
    }
}

/* ===================================
   AWARDS & RECOGNITION SECTION STYLES
   =================================== */

.award-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*    background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);*/
}

.award-image-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.award-image {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.award-card:hover .award-image {
    transform: scale(1.05);
}

.award-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.award-icon {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.award-content {
    text-align: center;
}

.award-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.award-year {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.award-organization {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Awards Section Responsive */
@media (max-width: 768px) {
    .award-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .award-image {
        max-width: 80px;
        max-height: 80px;
    }

    .award-icon {
        font-size: 2.5rem;
    }

    .award-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .award-card {
        margin-bottom: 1.5rem;
    }

    .award-image-container {
        min-height: 100px;
    }
}

/* ===================================
   WHY CHOOSE US SECTION STYLES
   =================================== */

/* Why Choose Us - Grey Card Wrapper */
.why-choose-us-card-wrapper {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
}

/* Responsive padding for card wrapper */
@media (max-width: 768px) {
    .why-choose-us-card-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us-card-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
}

/* Why Choose Us - Full Width Layout like Banner */
.home-section-gray .banner-width-container,
.home-section-white .banner-width-container {
    width: 100%;
    padding: 0;
}

.home-section-gray .banner-width-container > .row,
.home-section-white .banner-width-container > .row {
    margin: 0;
    width: 100%;
}

/* Keep standard Bootstrap column gutters */
.home-section-gray .banner-width-container > .row > [class*="col-"],
.home-section-white .banner-width-container > .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.why-choose-us-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-us-image img:hover {
    transform: translateY(-5px);
}

.why-choose-us-content {
    padding: 2rem 0;
}

.why-choose-us-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.why-choose-us-item:last-child {
    border-bottom: none;
}

.why-choose-us-number {
    flex-shrink: 0;
}

.number-badge {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a574;
    min-width: 50px;
}

.why-choose-us-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.why-choose-us-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #6c757d;
}

.why-choose-us-text {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .why-choose-us-content {
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .section-title.text-start {
        text-align: center !important;
    }

    .why-choose-us-item {
        padding: 1.5rem 0;
    }

    .number-badge {
        font-size: 1.3rem;
    }

    .why-choose-us-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-us-item {
        padding: 1rem 0;
    }

    .number-badge {
        font-size: 1.2rem;
        min-width: 40px;
    }

    .why-choose-us-title {
        font-size: 1rem;
    }

    .why-choose-us-description {
        font-size: 0.9rem;
    }
}

/* Why Choose Us Placeholder Styles */
.why-choose-us-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    color: #6c757d;
}

.placeholder-content i {
    opacity: 0.5;
}

/* Why Choose Us Accordion Styles */
.why-choose-us-item {
/*    margin-bottom: 1rem;*/
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.why-choose-us-item .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.why-choose-us-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.why-choose-us-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.why-choose-us-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.why-choose-us-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.why-choose-us-answer {
    padding: 1.5rem;
    background: white;
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}

.why-choose-us-number {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
    min-width: 40px;
}

.why-choose-us-item .accordion-button:not(.collapsed) .why-choose-us-number {
    color: white;
}

.why-choose-us-question {
    flex: 1;
    text-align: left;
}

/* Process Banner Styles */
.process-banner-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.process-banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.process-banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-banner-image:hover img {
    transform: scale(1.02);
}

/* Process Cards Enhancement */
.process-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.process-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-subtitle {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.process-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us-item .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .why-choose-us-answer {
        padding: 1rem;
    }

    .why-choose-us-number {
        font-size: 1rem;
        min-width: 35px;
    }
}


/* ===================================
   PRODUCT SECTION STYLES
   =================================== */

/* Category Header Styles */
.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f8f9fa;
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
/*    text-transform: uppercase;*/
    letter-spacing: 1px;
}

.category-image-container {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.product-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.5rem;
    }

    .product-image-container,
    .product-placeholder {
        height: 200px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .category-header {
        padding: 1rem 0;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .category-image-container {
        width: 60px;
        height: 60px;
    }

    .product-image-container,
    .product-placeholder {
        height: 180px;
    }

    .product-content {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }
}

/* Set As Apart - Grey Card Wrapper */
.set-as-apart-card-wrapper {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
}

/* Responsive padding for Set As Apart card wrapper */
@media (max-width: 768px) {
    .set-as-apart-card-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .set-as-apart-card-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
}

/* Set As Apart Section - Table Responsive Styles */
.set-as-apart-item .table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 1rem 0;
}

.set-as-apart-item .table-responsive::-webkit-scrollbar {
    height: 8px;
}

.set-as-apart-item .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.set-as-apart-item .table-responsive::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.set-as-apart-item .table-responsive::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.set-as-apart-item table {
    min-width: 600px;
    margin-bottom: 0;
}

.set-as-apart-item table th,
.set-as-apart-item table td {
    white-space: nowrap;
    padding: 12px 15px;
    vertical-align: top;
}

.set-as-apart-item table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .set-as-apart-item .table-responsive {
        font-size: 0.9rem;
    }

    .set-as-apart-item table th,
    .set-as-apart-item table td {
        padding: 8px 10px;
    }
}

/* ===================================
   TESTIMONIALS SECTION STYLES
   =================================== */

/* Google Rating Summary */
.google-rating-summary {
    margin-bottom: 3rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    letter-spacing: 1px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    font-size: 1.2rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.google-logo {
    height: 20px;
    width: auto;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    margin-top: 2rem;
    padding: 0 60px;
}

.testimonials-grid {
    padding: 0 15px;
}

/* Testimonial Card Styles - New Layout */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

/* New Layout Structure */
.testimonial-layout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

/* Left Side: Profile Image */
.testimonial-profile {
    flex-shrink: 0;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Center: Main Content */
.testimonial-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.testimonial-rating {
/*    display: flex;*/
    align-items: center;
    gap: 2px;
}

.testimonial-rating .star {
    font-size: 1.1rem;
    color: #ffc107;
}

.testimonial-rating .star.filled {
    color: #ffc107;
}

.testimonial-rating .star.empty {
    color: #e9ecef;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    font-style: italic;
}

/* Right Side: Google Icon */
.testimonial-source {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.google-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .google-icon {
    opacity: 1;
}

/* Testimonials Carousel Controls */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.testimonials-carousel .carousel-control-next {
    right: -25px;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Testimonials Carousel Indicators */
.testimonial-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
}

.testimonial-indicators button.active {
    background-color: #667eea;
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonials-carousel {
        padding: 0 40px;
    }

    .rating-badge {
        padding: 0.75rem 1.5rem;
        gap: 10px;
    }

    .rating-text {
        font-size: 1rem;
    }

    .profile-image,
    .profile-image-placeholder {
        width: 50px;
        height: 50px;
    }

    .profile-image-placeholder {
        font-size: 1.2rem;
    }

    .google-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 20px;
    }

    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        display: flex;
        width: 40px;
        height: 40px;
        left: 5px;
    }

    .testimonials-carousel .carousel-control-next {
        right: 5px;
        left: auto;
    }

    .testimonial-indicators {
        bottom: -30px;
    }

    .testimonials-grid {
        padding: 0 5px;
    }

    .testimonials-grid .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .testimonials-grid .row .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        display: block !important;
    }

    .testimonial-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-layout {
        gap: 0.75rem;
    }

    .profile-image,
    .profile-image-placeholder {
        width: 45px;
        height: 45px;
    }

    .profile-image-placeholder {
        font-size: 1.1rem;
    }

    .customer-name {
        font-size: 1rem;
    }

    .testimonial-rating .star {
        font-size: 1rem;
    }

    .google-icon {
        width: 24px;
        height: 24px;
    }

    .rating-badge {
        padding: 0.5rem 1rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rating-text {
        font-size: 0.9rem;
    }

    .rating-stars .star {
        font-size: 1rem;
    }

    .rating-count {
        font-size: 0.8rem;
    }

    .google-logo {
        height: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-layout {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .testimonial-profile {
        align-self: center;
    }

    .testimonial-source {
        align-self: center;
    }

    .profile-image,
    .profile-image-placeholder {
        width: 50px;
        height: 50px;
    }

    .profile-image-placeholder {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }

    .google-icon {
        width: 28px;
        height: 28px;
    }

    .rating-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .rating-text {
        font-size: 0.8rem;
    }

    .rating-stars .star {
        font-size: 0.9rem;
    }

    .rating-count {
        font-size: 0.75rem;
    }
}

/* Home Section White Background for Testimonials */
.home-section-white {
    background-color: #ffffff;
    padding: 4rem 0;
}

/* ===================================
   VIDEO TESTIMONIALS SECTION STYLES
   =================================== */

/* Video Testimonials Carousel */
.video-testimonials-carousel {
    position: relative;
    margin-top: 2rem;
    padding: 0 60px;
}

.video-testimonials-grid {
    padding: 0 15px;
}

/* Video Testimonial Card Styles */
.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #000;
    overflow: hidden;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Video Testimonial Content */
.video-testimonial-content {
    padding: 2rem;
}

.video-testimonial-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.video-testimonial-rating .star {
    font-size: 1.2rem;
    color: #ffc107;
}

.video-testimonial-rating .star.filled {
    color: #ffc107;
}

.video-testimonial-review {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Testimonials Carousel Controls */
.video-testimonials-carousel .carousel-control-prev,
.video-testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.video-testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.video-testimonials-carousel .carousel-control-next {
    right: -25px;
}

.video-testimonials-carousel .carousel-control-prev-icon,
.video-testimonials-carousel .carousel-control-next-icon {
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.video-testimonials-carousel .carousel-control-prev:hover,
.video-testimonials-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Video Testimonials Carousel Indicators */
.video-testimonial-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.video-testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(102, 126, 234, 0.3);
    border: none;
}

.video-testimonial-indicators button.active {
    background-color: #667eea;
}

/* Play Button Overlay for Videos */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.video-testimonial-card:hover .video-container::before {
    background: rgba(0, 0, 0, 0.05);
}

/* Responsive Design for Video Testimonials */
@media (max-width: 992px) {
    .video-testimonials-carousel {
        padding: 0 40px;
    }

    .video-container {
        height: 250px;
    }

    .video-testimonial-content {
        padding: 1.5rem;
    }

    .video-testimonial-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .video-testimonials-carousel {
        padding: 0 20px;
    }

    .video-testimonials-carousel .carousel-control-prev,
    .video-testimonials-carousel .carousel-control-next {
        display: none;
    }

    .video-testimonial-indicators {
        bottom: -30px;
    }

    .video-testimonials-grid {
        padding: 0 5px;
    }

    .video-container {
        height: 220px;
    }

    .video-testimonial-content {
        padding: 1.25rem;
    }

    .video-testimonial-title {
        font-size: 1.1rem;
    }

    .video-testimonial-rating .star {
        font-size: 1rem;
    }

    .video-testimonial-review {
        font-size: 0.95rem;
        -webkit-line-clamp: 3;
    }

    .video-placeholder-icon {
        font-size: 3rem;
    }

    .video-placeholder p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .video-container {
        height: 200px;
    }

    .video-testimonial-content {
        padding: 1rem;
    }

    .video-testimonial-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .video-testimonial-rating {
        margin-bottom: 0.75rem;
    }

    .video-testimonial-rating .star {
        font-size: 0.9rem;
    }

    .video-testimonial-review {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }

    .video-placeholder-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .video-placeholder p {
        font-size: 0.9rem;
    }
}

/* Video Loading States */
.video-container.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Video Testimonial Card Hover Effects */
.video-testimonial-card:hover .video-testimonial-title {
    color: #667eea;
}

.video-testimonial-card:hover .video-testimonial-rating .star {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Custom Scrollbar for Video Reviews */
.video-testimonial-review::-webkit-scrollbar {
    width: 4px;
}

.video-testimonial-review::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.video-testimonial-review::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 2px;
}

.video-testimonial-review::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* ===================================
   ABOUT US SECTION STYLES
   =================================== */

.about-us-image-container {
    position: relative;
    height: 100%;
}

.about-us-banner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-us-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-us-banner:hover img {
    transform: scale(1.02);
}

.about-us-placeholder {
    height: 400px;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    border-radius: 15px;
}

.about-us-overlay-content {
    color: white;
}

.about-us-overlay-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    color: #fff;
}

.about-us-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-us-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-us-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-us-description p {
    margin-bottom: 1rem;
}

.about-us-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-us-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.about-us-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-us-overlay-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .about-us-title {
        font-size: 2rem;
    }

    .about-us-content {
        padding: 1.5rem;
        text-align: center;
    }

    .about-us-banner,
    .about-us-placeholder {
        height: 300px;
        margin-bottom: 2rem;
    }

    .about-us-banner img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-us-overlay-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .about-us-title {
        font-size: 1.8rem;
    }

    .about-us-description {
        font-size: 1rem;
    }
}

/* ===================================
   ABOUT US CAROUSEL STYLES
   =================================== */

.about-us-carousel {
    position: relative;
}

.about-us-carousel .carousel-control-prev,
.about-us-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-us-carousel .carousel-control-prev:hover,
.about-us-carousel .carousel-control-next:hover {
    background: rgba(102, 126, 234, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.about-us-carousel .carousel-control-prev {
    left: -25px;
}

.about-us-carousel .carousel-control-next {
    right: -25px;
}

.about-us-carousel .carousel-control-prev-icon,
.about-us-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.about-us-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.about-us-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.about-us-indicators button.active {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.2);
}

.about-us-indicators button:hover {
    background: rgba(102, 126, 234, 0.7);
    transform: scale(1.1);
}

/* Responsive adjustments for About Us carousel */
@media (max-width: 768px) {

    .about-us-carousel .carousel-control-prev,
    .about-us-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .about-us-carousel .carousel-control-prev {
        left: -20px;
    }

    .about-us-carousel .carousel-control-next {
        right: -20px;
    }

    .about-us-carousel .carousel-control-prev-icon,
    .about-us-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {

    .about-us-carousel .carousel-control-prev,
    .about-us-carousel .carousel-control-next {
        display: none;
    }

    .about-us-indicators {
        bottom: -30px;
    }
}

/* ===================================
   PRODUCT SHOWCASE STYLES - IMAGE OVERLAY DESIGN
   =================================== */

.category-section {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
/*    text-transform: uppercase;*/
    letter-spacing: 2px;
}

.product-showcase-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 500px; /* Reduced height since no separate content area */
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image-wrapper {
    position: relative;
    height: 100%; /* Full height of card */
    overflow: hidden;
    flex: 1;
}

.product-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-showcase-card:hover .product-showcase-image {
    transform: scale(1.05);
}

.product-placeholder-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
}

.product-placeholder-showcase i {
    font-size: 4rem;
}

/* Image Overlay Styles */
.product-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.product-showcase-card:hover .product-image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.product-overlay-content {
    text-align: center;
}

.product-overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-overlay-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Remove old content styles */
.product-showcase-content {
    display: none;
}

/* Ensure equal height columns */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-showcase-card {
        height: 320px;
    }
    
    .category-title {
        font-size: 2.2rem;
    }
    
    .product-overlay-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
    
    .product-showcase-card {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .product-image-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .product-overlay-title {
        font-size: 1.2rem;
    }
    
    .product-overlay-description {
        font-size: 0.8rem;
    }
    
    .product-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .product-showcase-card {
        height: 280px;
    }
    
    .product-image-overlay {
        padding: 1.2rem 0.8rem 0.8rem;
    }
    
    .product-overlay-title {
        font-size: 1.1rem;
    }
    
    .product-overlay-description {
        font-size: 0.75rem;
    }
    
    .product-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ===================================
   ADDITIONAL UNIFORM CARD ENHANCEMENTS
   =================================== */

/* Ensure all cards in a row have equal height */
.category-section .row {
    align-items: stretch;
}

.category-section .col-lg-4,
.category-section .col-md-6,
.category-section .col-sm-12 {
    display: flex;
    margin-bottom: 2rem;
}

/* Add subtle animation to numbers */
.product-number {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Improve text readability */
.product-showcase-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add subtle border to cards */
.product-showcase-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Improve hover effects */
.product-showcase-card:hover .product-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Add loading state for images */
.product-showcase-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Ensure consistent spacing */
.category-section:last-child {
    margin-bottom: 3rem;
}

/* ===================================
   MISSION & VALUES SECTIONS STYLES
   =================================== */

/* Mission Section Specific Styles */
.home-section-light .about-us-overlay-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.home-section-white .about-us-overlay-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Ensure consistent spacing between sections */
.home-section {
    padding: 1.5rem 0;
}

.home-section-gray {
    background-color: #f8f9fa;
}

.home-section-light {
    background-color: #ffffff;
}

.home-section-white {
    background-color: #fafafa;
}

/* Section titles consistency */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .home-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .home-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}
/* ===================================
   DYNAMIC ABOUT US SECTIONS STYLES
   =================================== */

/* Border styling for Mission and Values subsections */
.border-top {
    border-top: 2px solid #e9ecef !important;
}

/* Alternating section backgrounds */
.home-section-gray {
    background-color: #f8f9fa;
}

.home-section-light {
    background-color: #ffffff;
}

.home-section-white {
    background-color: #fafafa;
}

/* Subsection titles styling */
.about-us-content h3.section-title,
.about-us-content h4.about-us-title {
    color: #333;
    font-weight: 700;
}

/* Ensure proper spacing for dynamic sections */
.home-section + .home-section {
    margin-top: 0;
}

/* Mission and Values subsection styling */
.about-us-content h4.about-us-title {
    position: relative;
    margin-bottom: 1.5rem;
}

.about-us-content h4.about-us-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Responsive adjustments for dynamic sections */
@media (max-width: 768px) {
    .about-us-content h4.about-us-title {
        font-size: 1.5rem !important;
        text-align: center;
    }
    
    .about-us-content h4.about-us-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .border-top {
        margin-top: 3rem !important;
        padding-top: 3rem !important;
    }
}

@media (max-width: 576px) {
    .about-us-content h4.about-us-title {
        font-size: 1.3rem !important;
    }
    
    .border-top {
        margin-top: 2rem !important;
        padding-top: 2rem !important;
    }
}


/* Ensure paragraphs and content use serif */
p, span, div, li, td, th, .section-description, .section-subtitle {
    font-family: serif !important;
}