
/* Slider Area */
.slider1-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px;
}

.slider1-area .slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Slider Text */
.slider-content .title1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    animation: slideFade 2s ease-in-out forwards;
}

@keyframes slideFade {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* VMV Overlapping Section */
.vmv-section-overlap {
    width: 100%;
    position: relative;
    top: -120px;  /* Overlap slider */
    z-index: 50;  
    padding-bottom: 80px;
}

.vmv-container-overlap {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* VMV Cards */
.vmv-box-overlap {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-top: 6px solid #1c59a8;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vmv-box-overlap:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.20);
    border-top-color: #ff4081;
}

.vmv-box-overlap h3 {
    font-size: 26px;
    font-weight: 800;
    color: #103a66;
    margin-bottom: 15px;
}

.vmv-box-overlap p {
    font-size: 16.5px;
    line-height: 1.7;
    color: #333;
}

/* Link wrapper */
.vmv-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
}


/* Responsive */
@media (max-width: 992px) {
    .vmv-container-overlap {
        flex-wrap: wrap;
    }

    .vmv-box-overlap {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .vmv-section-overlap {
        top: 0; /* Remove overlap on mobile */
}}


/* Section background & spacing */
.about-page1-area {
    padding: 70px 0;
    background: #f8f9fc;
}

/* Centering row content */
.about-page1-inner {
    display: flex;
    justify-content: center;
}

/* Card-style content */
.about-page-content-holder {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
}

/* Section heading */
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
    position: relative;
}

/* Decorative underline */
.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #007bff;
    display: block;
    margin-top: 8px;
    border-radius: 3px;
}

/* Paragraph styling */
.about-page-content-holder p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

/* List styling */
.list-5 {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.list-5 li {
    font-size: 15.5px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

/* Custom bullet icon */
.list-5 li::before {
    content: "\f058"; /* check-circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-page-content-holder {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 22px;
    }
}/* Sub section title */
.sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #103a66;
    margin: 30px 0 15px;
    position: relative;
    padding-left: 15px;
}



.white-form-shadow img {
    transition: transform 0.4s ease;
}

.white-form-shadow:hover img {
    transform: scale(1.05);
}
/* Reduce vertical gap between stacked sections */
.tight-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Extra-tight (for gallery below content) */
.tight-section-top {
    padding-top: 20px !important;
}
