
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; 
    overflow-x: hidden; 
}


::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 10px;
}


.hero-background {
    background: linear-gradient(135deg, #4c51bf 0%, #6b46c1 100%); 
    background-size: cover;
    background-position: center;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}


.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }


.btn-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.mobile-menu-open {
    display: block;
}


.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; 
}


.carousel-item {
    flex-shrink: 0;
    box-sizing: border-box; 
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.carousel-button.left {
    left: 1rem;
}
.carousel-button.right {
    right: 1rem;
}


.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e0; 
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.dot.active {
    background-color: #4c51bf;
    transform: scale(1.2);
}


.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.header-title-effect {
    transition: all 0.3s ease;
    display: inline-block;
}
.header-title-effect:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); 
}


.desktop-nav-links-container {
    background-color: #e0e7ff; 
    border-radius: 9999px; 
    padding: 0.5rem 1rem; 
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1); 
    display: flex; 
    align-items: center;
}


.desktop-nav-link {
    color: #434a54; 
    padding: 0.5rem 1rem; 
    border-radius: 9999px; 
    transition: all 0.3s ease;
    font-weight: 500; 
}

.desktop-nav-link:hover {
    background-color: #c3dafe; 
    color: #1a202c; 
    transform: translateY(-2px); 
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px; 
    margin: 0 auto;
}


.mother-teresa-img {
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.7); 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); 
    margin-bottom: 1.5rem;
    width: 150px; 
    height: 150px; 
    object-fit: cover;
}


@media (max-width: 767px) {
    .mother-teresa-img {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    .hero-content h1 {
        font-size: 2.5rem; 
    }
    .hero-content p {
        font-size: 1rem; 
    }
}


.leadership-img {
    border-radius: 50%; 
    width: 180px; 
    height: 180px; 
    object-fit: cover; 
    margin-bottom: 1rem;
    border: 3px solid #6b46c1; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 767px) {
    .leadership-img {
        width: 140px; 
        height: 140px;
    }
}


.message-box {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4CAF50; 
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001; 
    text-align: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.message-box.show {
    display: block;
    opacity: 1;
}