/* Global Styles */
:root {
    --primary-color: #2d2d86;
    --secondary-color: #ffc107;
    --dark-color: #333;
    --light-color: #f4f4f4;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.text-indigo {
    color: #1d114f;
}

.text-para {
    color: rgb(33, 4, 83);
}

/* Top Bar */
s .top-bar {
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

.language-select {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.language-select option {
    background-color: #333;
    color: #fff;
}

.search-box .form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 0.8rem;
}

.search-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box .btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 1rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    background-color: #fdfdff;
    border: 1px solid #ddd;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-top: 0.2rem !important;
    border-radius: 0 0 0.375rem 0.375rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    padding-left: 1.25rem;
}

/* Hero Carousel */
.carousel-item {
    height: 500px;
    position: relative;
}

/* Apply the gradient overlay to the image within the carousel item */
.carousel-item img {
    object-fit: cover;
    height: 80%;
    width: 100%;
    position: absolute;
    /* Position the image relative to its parent carousel-item */
    top: 0;
    left: 0;
    z-index: -1;
    /* Place image behind the content */
}

/* Desktop gradient overlay */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    /* Adjust width of the white area */
    height: 100%;

}

.carousel-caption {
    text-align: left;
    bottom: 20%;
    left: 0;
    right: 0;
    padding-left: 0;
    z-index: 1;
    /* Ensure text is above the gradient */
}

/* Apply Open Sans font and lighter color to hero section text */
.carousel-caption h1 {
    font-family: 'Open Sans', sans-serif;
    color: #f0f0f0;
    /* A very light gray, close to white */
    text-shadow: none;
    /* Removed text-shadow */
}

.carousel-caption p {
    font-family: 'Open Sans', sans-serif;
    color: #e0e0e0;
    /* A slightly darker light gray for paragraphs */
    text-shadow: none;
    /* Removed text-shadow */
}

/* Improved carousel button styling */
.carousel-caption .btn {
    border: 2px solid var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 45, 134, 0.3);
}

.carousel-caption .btn:hover {
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Mobile-specific carousel adjustments */
@media (max-width: 768px) {

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Center all section titles on mobile */
    .services-section h2,
    .about-quality-section h2,
    .main-content h2 {
        text-align: center !important;
    }

    /* Center underlines for left-aligned titles */
    .services-section .yellow-underline,
    .about-quality-section .yellow-underline {
        margin: 0 auto !important;
    }

    .carousel-item {
        height: 400px;
    }

    /* Remove gradient overlay on mobile for clean look */
    .carousel-item::before {
        display: none;
    }

    /* Improve image positioning on mobile */
    .carousel-item img {
        object-position: center center;
    }

    .carousel-caption h1 {
        font-size: 2rem;
        text-shadow: none;
        /* Removed text-shadow for mobile */
    }

    .carousel-caption {
        text-align: center;
        left: 0;
        right: 0;
        padding: 0 15px;
        bottom: 15%;
    }

    /* Removed stronger text shadow for better readability on mobile */
    .carousel-caption p {
        text-shadow: none;
        /* Removed text-shadow for mobile */
    }

    /* Mobile button adjustments */
    .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 350px;
    }

    /* Keep gradient overlay hidden on small screens too */
    .carousel-item::before {
        display: none;
    }

    /* Ensure image remains clean */
    .carousel-item img {
        filter: brightness(0.8);
    }

    .carousel-caption {
        bottom: 10%;
    }
}



/* Main Content */
.title-underline {
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.yellow-underline {
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0;
}

.main-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}


/* Content with Watermark */
.content-with-watermark {
    position: relative;
    /* Ensure this is relative for absolute child positioning */
    z-index: 1;
    color: gray;
    /* Typo corrected: 'gra' to 'gray' */
}

.content-with-watermark::before {
    content: "";
    position: absolute;
    /* Center the pseudo-element itself using transform */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Ensure it covers the full width of its parent */
    height: 100%;
    /* Ensure it covers the full height of its parent */
    background-image: url('logo-watermark.jpg');
    background-repeat: no-repeat;
    background-position: center;
    /* Center the background image within the pseudo-element */
    background-size: cover;
    /* Changed from 'contain' to 'cover' to ensure it fills the space */
    opacity: 0.05;
    z-index: -1;
}

/* Services Section */
.services-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.services-image {
    position: relative;
}

.services-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.services-content {
    display: flex;
    align-items: center;
}

.services-inner {
    width: 100%;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-weight: 500;
}

.service-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2d2d86;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.7rem;
}

/* Object Fit for Images */
.object-fit-cover {
    object-fit: cover;
}

/* Enhanced Products Section */
.products-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 45, 134, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(45, 45, 134, 0.05);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 45, 134, 0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #4a4aab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-card:hover .product-icon-wrapper::before {
    opacity: 1;
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-icon-wrapper i {
    color: white;
    font-size: 24px;
    z-index: 1;
}

.product-card:hover .product-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), #ffdb4d);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 13px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #4a4aab);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #ffdb4d;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .cta-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .product-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .product-icon-wrapper i {
        font-size: 20px;
    }

    .product-title {
        font-size: 16px;
    }
}

/* Responsive styles for products section */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image-container {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-item {
        padding: 10px 0;
        font-size: 14px;
    }

    .product-icon {
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 40px 0;
    }
}


/* Accreditation Section */
.accreditation-section {
    background-color: #ededde;
}

.accreditation-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cert-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Inquiry Button */
.inquiry-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.inquiry-button .btn {
    transform: rotate(-90deg);
    transform-origin: right bottom;
    border-radius: 5px 5px 0 0;
    padding: 10px 20px;
    font-weight: bold;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    /* Renamed from 'footer' to 'site-footer' to be more specific */
    background-color: var(--dark-color);
    /* Uses the dark color variable */
    color: #fff;
    font-size: 0.9rem;
    /* Slightly smaller font size for general text */
}

.site-footer .footer-link {
    color: #fff;
    transition: all 0.3s;
    padding: 0 15px;
    /* Spacing between links */
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    /* Separator */
    line-height: 1;
    /* Adjust line height to prevent separator from breaking */
}

.site-footer .footer-link:last-child {
    border-right: none;
    /* No separator for the last link */
}

.site-footer .footer-link:hover {
    color: var(--secondary-color);
    /* Yellow on hover */
}

.site-footer .footer-social-icons .social-icon {
    color: #fff;
    font-size: 1.1rem;
    margin-left: 15px;
    /* Space between social icons */
    transition: all 0.3s;
}

.site-footer .footer-social-icons .social-icon:hover {
    color: var(--secondary-color);
    /* Yellow on hover */
}

.site-footer .footer-text {
    color: rgba(255, 255, 255, 0.7);
    /* Lighter color for copyright/developer text */
    font-size: 0.85rem;
    /* Smaller font size */
}

.site-footer .developer-name {
    color: #fff;
    /* Keep "Savit" white as per image */
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }


}

@media (max-width: 768px) {
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 10px;
    }


    /* Footer adjustments for smaller screens */
    .site-footer .footer-link {
        border-right: none;
        /* Remove separators on smaller screens */
        padding: 5px 10px;
        /* Adjust padding */
        margin-bottom: 5px;
        /* Add some vertical spacing */
    }

    .site-footer .footer-social-icons {
        justify-content: center;
        /* Center social icons on small screens */
        display: flex;
        margin-top: 10px;
    }

    .site-footer .footer-social-icons .social-icon {
        margin: 0 10px;
        /* Adjust spacing */
    }

    .site-footer .text-md-end,
    .site-footer .text-md-start {
        text-align: center !important;
        /* Center text on mobile */
    }
}

@media (max-width: 576px) {

    .inquiry-button {
        display: none;
    }

    .accreditation-item {
        margin-bottom: 20px;
    }
}

/* =========================================
   PARALLAX BANNER SECTION (New Addition)
   ========================================= */

.parallax-banner {
    position: relative;
    /* This creates the scrollable effect */
    background-image: url('./images/backk.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    padding: 120px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay to make text readable over the image */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    /* Ensures text sits on top of overlay */
}

.parallax-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.parallax-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px auto;
    color: #e0e0e0;
    line-height: 1.6;
}

.parallax-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    /* Uses your yellow color */
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.parallax-btn:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Adjustment: Parallax doesn't work well on some mobile browsers, 
   so we turn off 'fixed' for small screens */
@media (max-width: 768px) {
    .parallax-banner {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .parallax-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   SHARED PARALLAX STYLES
   ========================================= */

/* 1. Define the shared parallax class */
.parallax-bg {
    background-image: url('./images/backk.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* 2. Override Products Section Background */
/* We remove the linear-gradient so the image shows */
.products-section.parallax-bg {
    background: none;
    background-color: transparent;
}

/* Optional: Hide the decorative circles in products section if they look busy over the image */
.products-section.parallax-bg::before,
.products-section.parallax-bg::after {
    display: none;
}

/* 3. Override Accreditations Background */
#accreditations.parallax-bg {
    background-color: transparent !important;
}

/* 4. Update the Parallax Banner to use this shared logic if desired, 
      or keep it separate. The previous .parallax-banner class works fine 
      for the middle section, so we leave it as is. */

/* Mobile Adjustment: Turn off fixed attachment on small screens for performance */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* =========================================
   PARALLAX CONTAINER TRANSPARENCY FIX
   ========================================= */

/* Keep all containers transparent to show parallax */
/* Keep "Savit" white as per image */
font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }


}

@media (max-width: 768px) {
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 10px;
    }


    /* Footer adjustments for smaller screens */
    .site-footer .footer-link {
        border-right: none;
        /* Remove separators on smaller screens */
        padding: 5px 10px;
        /* Adjust padding */
        margin-bottom: 5px;
        /* Add some vertical spacing */
    }

    .site-footer .footer-social-icons {
        justify-content: center;
        /* Center social icons on small screens */
        display: flex;
        margin-top: 10px;
    }

    .site-footer .footer-social-icons .social-icon {
        margin: 0 10px;
        /* Adjust spacing */
    }

    .site-footer .text-md-end,
    .site-footer .text-md-start {
        text-align: center !important;
        /* Center text on mobile */
    }
}

@media (max-width: 576px) {

    .inquiry-button {
        display: none;
    }

    .accreditation-item {
        margin-bottom: 20px;
    }
}

/* =========================================
   PARALLAX BANNER SECTION (New Addition)
   ========================================= */

.parallax-banner {
    position: relative;
    /* This creates the scrollable effect */
    background-image: url('./images/backk.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    padding: 120px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Dark overlay to make text readable over the image */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    /* Ensures text sits on top of overlay */
}

.parallax-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.parallax-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 35px auto;
    color: #e0e0e0;
    line-height: 1.6;
}

.parallax-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    /* Uses your yellow color */
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.parallax-btn:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile Adjustment: Parallax doesn't work well on some mobile browsers, 
   so we turn off 'fixed' for small screens */
@media (max-width: 768px) {
    .parallax-banner {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .parallax-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   SHARED PARALLAX STYLES
   ========================================= */

/* 1. Define the shared parallax class */
.parallax-bg {
    background-image: url('./images/backk.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* 2. Override Products Section Background */
/* We remove the linear-gradient so the image shows */
.products-section.parallax-bg {
    background: none;
    background-color: transparent;
}

/* Optional: Hide the decorative circles in products section if they look busy over the image */
.products-section.parallax-bg::before,
.products-section.parallax-bg::after {
    display: none;
}

/* 3. Override Accreditations Background */
#accreditations.parallax-bg {
    background-color: transparent !important;
}

/* 4. Update the Parallax Banner to use this shared logic if desired, 
      or keep it separate. The previous .parallax-banner class works fine 
      for the middle section, so we leave it as is. */

/* Mobile Adjustment: Turn off fixed attachment on small screens for performance */
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* =========================================
   PARALLAX CONTAINER TRANSPARENCY FIX
   ========================================= */

.parallax-bg .container,
.parallax-bg .row {
    background-color: transparent !important;
}

/* Style text content for readability over parallax WITHOUT white boxes */
.parallax-bg p,
.parallax-bg ul,
.parallax-bg ol,
.parallax-bg h1,
.parallax-bg h2,
.parallax-bg h3,
.parallax-bg h4,
.parallax-bg h5 {
    background-color: transparent !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
    padding: 10px 0 !important;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Stronger styling for headings */
.parallax-bg h1,
.parallax-bg h2,
.parallax-bg h3 {
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.7);
}

/* Keep images fully visible */
.parallax-bg img,
.parallax-bg .facility-image {
    background-color: #ffffff !important;
    padding: 10px !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Exception for page headers - keep them solid */
.page-header {
    background-color: #f5f5f5 !important;
}

/* =========================================
   FOOTER STYLING - UPDATED
   ========================================= */

/* Updated footer with primary color and consistent height */
.site-footer {
    background-color: #2d2d86 !important;
    color: #ffffff !important;
    padding: 30px 0 !important;
    min-height: 120px;
}

.site-footer .footer-link {
    color: #ffffff !important;
    opacity: 0.9;
}

.site-footer .footer-link:hover {
    color: #ffc107 !important;
    opacity: 1;
}

.site-footer .footer-text {
    color: #ffffff !important;
    opacity: 0.9;
}

.site-footer .developer-name {
    color: #ffc107 !important;
}

.site-footer .social-icon {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.site-footer .social-icon:hover {
    background-color: #ffc107;
    color: #2d2d86 !important;
    transform: translateY(-3px);
}

/* =========================================
   SIMPLE CLEAN DESIGN - NO WHITE BOXES
   ========================================= */

/* All text - NO white boxes, transparent background */
.parallax-bg p,
.parallax-bg ul,
.parallax-bg ol,
.parallax-bg li,
.parallax-bg h1,
.parallax-bg h2,
.parallax-bg h3,
.parallax-bg h4,
.parallax-bg h5 {
    background-color: transparent !important;
    color: #000000 !important;
    padding: 10px 0 !important;
    margin-bottom: 15px !important;
    border-radius: 0 !important;
    border: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    line-height: 1.6;
    font-weight: 400;
}

/* Headings - slightly bolder */
.parallax-bg h1,
.parallax-bg h2,
.parallax-bg h3 {
    font-weight: 600 !important;
}

/* Lists */
.parallax-bg ul,
.parallax-bg ol {
    padding-left: 40px !important;
}

.parallax-bg li {
    padding: 5px 0 !important;
    margin-bottom: 5px !important;
}

/* Images - keep white background */
.parallax-bg img,
.parallax-bg .facility-image {
    background-color: #ffffff !important;
    padding: 15px !important;
    border-radius: 4px;
}

/* Containers transparent */
.parallax-bg .container,
.parallax-bg .row {
    background-color: transparent !important;
}

/* Page header */
.page-header {
    background-color: #f5f5f5 !important;
}

/* Footer - dark blue */
.site-footer {
    background-color: #2d2d86 !important;
    color: #ffffff !important;
    padding: 30px 0 !important;
    min-height: 120px !important;
}

.site-footer .footer-link {
    color: #ffffff !important;
}

.site-footer .footer-link:hover {
    color: #ffc107 !important;
}

.site-footer .footer-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer .developer-name {
    color: #ffc107 !important;
}