﻿
/* mission vision */

.mission-vision-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

    .mission-vision-section .container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .mission-vision-section .row {
        display: contents;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        justify-content: space-between;
    }

.mission-block, .vision-block {
    background: #fff;
    border-radius: 23px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
    transition: transform 0.3s ease;
}

    .mission-block:hover, .vision-block:hover {
        transform: translateY(-5px);
    }

.icon-wrapper {
    font-size: 48px;
    color: #051650; /* color for icons */
    margin-bottom: 15px;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color:#d3af37 ;
}

.content-wrapper p {
    font-size: 16px;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-block, .vision-block {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .mission-vision-section .row {
        display: grid;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        justify-content: space-between;
    }
}










/* about gallery robeeta section */


.gallery-section {
    padding: 40px 0;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center;
}

.gallery-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-item {
    overflow: hidden; /* Prevents overflow during zoom */
    position: relative; /* For zoom effect positioning */
    margin-bottom: 20px;
}

    .gallery-item img {
        transition: transform 0.3s; /* Smooth transition for zoom effect */
    }

    .gallery-item:hover img {
        transform: scale(1.1); /* Zoom effect */
    }










/* effects CSS */
/* Animation for fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* Slightly shift it down initially */
    animation: fadeInEffect 1s ease-out forwards; /* Trigger on page load */
}

/* Slide-in effect from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px); /* Start slightly off-screen */
    animation: slideInLeftEffect 1.5s ease-out forwards;
}

/* Slide-in effect from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px); /* Start slightly off-screen */
    animation: slideInRightEffect 1.5s ease-out forwards;
}

/* Keyframes for animations */
@keyframes fadeInEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftEffect {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightEffect {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}