* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    background-color: #fff;
    color: #232122;
}

:root {
    --primary-color: #1BA84E;
    --primary-color-light: #b5ffd0;
    --secondary-color: #A6CC3B;
    --text-color: #333;
    --text-color-secondary: #696969;
    --text-color-hover: #232122;
    --text-white: #FFF;
    --border-color: #cbcbcb;
}

.shalimar-header-wrapper .nav-link {
    color: var(--text-color) !important;
    font-size: 14px;
    padding: 0 12px !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.shalimar-header-wrapper .nav-link:hover {
    color: var(--primary-color) !important;
}

.shalimar-header-wrapper .nav-divider {
    color: #999;
    font-weight: 300;
    list-style: none;
    font-size: 18px;
}

/* Dropdown hover functionality */
.shalimar-header-wrapper .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shalimar-header-wrapper .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 15px !important;
}

.shalimar-header-wrapper .dropdown-item {
    font-size: 13px;
    color: var(--text-color);
    padding: 8px 25px;
    transition: all 0.3s ease;
    position: relative;
}

.shalimar-header-wrapper .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-color);
    padding-left: 30px;
}

.shalimar-header-wrapper .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.shalimar-header-wrapper .dropdown-item:hover::before {
    transform: scaleY(1);
}

.shalimar-header-wrapper .dropdown-toggle::after {
    content: '\F282';
    font-family: "bootstrap-icons";
    border: none;
    font-size: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.shalimar-header-wrapper .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Gold Action Icons */
.shalimar-header-wrapper .icon-circle {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shalimar-header-wrapper .icon-circle:hover {
    background-color: var(--text-color-hover);
    transform: scale(1.1);
}

.creative-showcase--slider img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ============ Full Page Slider ================= */
.creative-showcase--slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 90vh;
    padding: 80px 0;
}

.creative-showcase--slider .swiper-slide .slide-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.creative-showcase--slider .swiper-slide .overlay-dark:before {
    opacity: .3;
    background: #1d1d1d;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.creative-showcase--slider .swiper-slide .video-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.creative-showcase--slider .swiper-slide .video-container video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.swiper-slide .slide-bg .slide-container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 7;
    padding-left: 15px;
    padding-right: 15px;
}

.slide-bg .slide-container .slide-row {
    display: flex;
    flex-wrap: wrap;
}

.slide-container .slide-row .slider-content {
    flex: 0 0 auto;
    width: 91.66666667%;
    margin-left: 8.33333333%;
    padding-left: 15px;
    padding-right: 15px;
}

.slider-content .slide-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 0px;
}

.slider-content .slide-heading {
    font-size: 100px;
    color: #fff;
    margin: 0px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: .2rem;
}

.slider-content .slide-heading a {
    text-decoration: none;
    color: #fff;
    outline: none;
}

.slider-content .slide-heading a span {
    display: inline-block;
}

.overlay-light .slider-content .slide-heading a {
    color: #000;
}

/* .overlay-light .slider-content .slide-subtitle {
color: #000;
} */
.creative-showcase--slider .creative-button--wrapper .swiper-button-prev,
.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: auto;
    color: #fff;
    z-index: 9;
    cursor: pointer;
    width: auto;
    bottom: 30px;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: normal;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next {
    right: 120px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-prev {
    left: 120px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next:after,
.creative-showcase--slider .creative-button--wrapper .swiper-button-prev:after {
    display: none;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-prev i {
    margin-right: 25px;
}

.creative-showcase--slider .creative-button--wrapper .swiper-button-next i {
    margin-left: 25px;
}

.creative-showcase--slider .banner-horizental .swiper-pagination {
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
}

.creative-showcase--slider .banner-horizental .swiper-pagination-bullet {
    background: transparent;
    margin: 0 10px !important;
}

.creative-showcase--slider .banner-horizental .path {
    display: none;
}

.creative-showcase--slider .banner-horizental .swiper-pagination-bullet-active .path {
    display: inline-block !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    -webkit-animation: dash linear 10s;
    animation: dash linear 10s;
    -webkit-animation-iteration-count: unset;
    animation-iteration-count: unset;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
    .slide-container .slide-row .slider-content {
        flex: 0 0 auto;
        width: 100%;
        margin-left: 0px;
    }

    .slider-content .slide-heading {
        font-size: 72px;
    }

    .creative-showcase--slider .banner-horizental .swiper-pagination {
        display: none;
    }

    .creative-showcase--slider .creative-button--wrapper .swiper-button-prev {
        left: 15px;
    }

    .creative-showcase--slider .creative-button--wrapper .swiper-button-next {
        right: 15px;
    }

}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
    .slide-container .slide-row .slider-content {
        padding-left: 0px;
        padding-right: 0px;
    }

    .slider-content .slide-heading {
        font-size: 40px;
    }

    .slider-content .slide-subtitle {
        margin-bottom: 15px;
    }
}

.theme-btn {
    display: inline-block;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.theme-btn:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-white) !important;
    transition: 0.3s ease-in-out;
}
/* In your CSS file (e.g., style.css or your main CSS) */

.gallery-item {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.gallery-item.hidden {
    opacity: 0 !important; 
    transform: scale(0.8) !important;
    pointer-events: none; 
}
.theme-btn-2 {
    display: inline-block;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Soft shadow using the primary color */
    box-shadow: 0 4px 15px rgba(27, 168, 78, 0.15);
}

.theme-btn-2:hover {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 168, 78, 0.3);
    border-color: var(--secondary-color);
    /* Subtle accent color switch on border */
}

/* Subtle "shine" effect on hover */
.theme-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s;
    z-index: -1;
}

.theme-btn-2:hover::before {
    left: 100%;
}

section {
    padding: 100px 0;
}

.page-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.page-section .section-heading {
    font-size: 48px;
    font-family: "Philosopher", sans-serif;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-color);
}

.page-section .section-para {
    font-size: 24px;
    font-family: "lato", sans-serif;
    line-height: 1.5;
    font-weight: 300;
    color: var(--text-color-secondary);
}

.font-philosopher {
    font-family: "Philosopher", sans-serif;
}

.about-section {
    display: flex;
    flex-direction: column;
}

.number-text {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.number-text .number {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: "Philosopher", sans-serif;
}

.number-text .text {
    font-size: 16px;
    font-weight: 400;
}

.bg-gray {
    background-color: #f9f9f9;
}

.projects-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.projects-container .swiper-container {
    width: 100%;
    height: 100%;
}

.projects-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    border-radius: 24px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    z-index: 10;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 12px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 24px;
    height: auto;
}

.swiper-slide h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 12px;
    font-family: 'philosopher', sans-serif;
    display: none;
}

.swiper-slide {
    border-radius: 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.gallery-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(165 234 102 / 90%), rgb(23 58 3 / 90%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

.view-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gallery-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

/* Category badges */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Modal styling */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .gallery-card {
        height: 250px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

.modern-footer {
    background: #f5f5f5;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    /* Modern clean font */
    border-top: 1px solid var(--border-color);
}

/* Newsletter "Floating" Card */
.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 40px;
    margin-top: -140px;
    /* Overlaps previous section for modern look */
    box-shadow: 0 15px 35px rgba(27, 168, 78, 0.2);
    color: white;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-link {
    display: block;
    color: var(--text-color-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    /* Subtle slide effect */
}

/* Social Icon Circles */
.social-circle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-5px);
}

.copyright-section {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    margin-top: 50px;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50% 50% 5px 50%;
    /* Modern asymmetrical shape */
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(27, 168, 78, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(166, 204, 59, 0.4);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 168, 78, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(27, 168, 78, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 168, 78, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

.back-to-top {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 25px;
    }
}

body .text-primary {
    color: var(--primary-color) !important;
}


        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }


        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--text-white);
            padding: 10px 25px;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--text-white);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .form-control {
            border-color: var(--border-color);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem var(--primary-color-light);
        }

        .contact-info-icon {
            color: var(--primary-color);
            font-size: 1.8rem; /* Slightly larger icons */
            margin-right: 20px;
            flex-shrink: 0; /* Prevent icon from shrinking */
        }

        .contact-info p, .contact-info a {
            color: var(--text-color-secondary);
            margin-bottom: 0; /* Reset default p margin */
            line-height: 1.6;
        }

        .contact-info a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--primary-color);
        }

        .contact-card {
            background-color: var(--text-white);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
        }

        .map-responsive {
            overflow: hidden;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            position: relative;
            height: 0;
            border-radius: 8px;
            margin-top: 30px;
            height:750px;
        }
        .map-responsive iframe {
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            border: 0;
        }

        /* Basic header/footer for context - customize as needed */
        .page-header {
            background-color: var(--primary-color);
            padding: 40px 0;
            color: var(--text-white);
            text-align: center;
            margin-bottom: 50px;
        }
        .page-header h1 {
            font-weight: 800;
            margin-bottom: 10px;
        }
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .page-footer {
            background-color: var(--text-color-hover); /* Darker footer */
            color: var(--text-white);
            padding: 40px 0;
            margin-top: 80px;
            text-align: center;
        }

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color) ;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
}

  .vision-statement {
            background-color: var(--text-white);
            border-left: 5px solid var(--primary-color);
            padding: 30px;
            margin-bottom: 60px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            font-size: 1.4rem;
            font-style: italic;
            color: var(--text-color);
            line-height: 1.8;
        }
        .vision-statement strong {
            color: var(--primary-color);
        }

        .vision-item {
            background-color: var(--text-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensure equal height cards */
        }
        .vision-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .vision-item .icon-wrapper {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        .vision-item h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        .vision-item p {
            color: var(--text-color-secondary);
        }

         /* Paragraphs within main intro */
        .intro-paragraph {
            font-size: 1.15rem;
            color: var(--text-color-secondary);
            margin-bottom: 25px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Director Message Specific Styling */
        .director-message-section {
            padding: 80px 0; /* More vertical padding for sections */
        }
        .director-message-content h3 {
            color: var(--primary-color);
            font-size: 2.2rem; /* Adjust font size */
            font-weight: 700;
            margin-bottom: 25px;
            /* Assuming font-philosopher is defined elsewhere or will be loaded */
            /* font-family: 'Philosopher', serif; */
        }
        .director-message-content p {
            color: var(--text-color);
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

        .mission-intro-statement { /* Renamed from vision-statement */
            background-color: var(--text-white);
            border-left: 5px solid var(--primary-color);
            padding: 30px;
            margin-bottom: 60px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            font-size: 1.4rem;
            font-style: italic;
            color: var(--text-color);
            line-height: 1.8;
        }
        .mission-intro-statement strong {
            color: var(--primary-color);
        }

        .mission-item { /* Renamed from vision-item */
            background-color: var(--text-white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensure equal height cards */
        }
        .mission-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .mission-item .icon-wrapper {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        .mission-item h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        .mission-item p {
            color: var(--text-color-secondary);
        }

