* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'MonotypeCorsiva';
    src: url('../fonts/Monotype-Corsiva-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.message-quote p {
    font-family: 'Monotype Corsiva', cursive !important;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-align: justify;
       background-color: #ffffdddd !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}

/* Header Styles */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    animation: gradientShift 8s ease-in-out infinite;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 20% 80%, rgb(44 104 0), #ffb017), radial-gradient(circle at 80% 20%, rgb(255 205 40), #1d4200), radial-gradient(circle at 40% 40%, rgb(10 66 0), #246a00); */
    animation: gradientShift 8s ease-in-out infinite;
    background-image: linear-gradient(to right, #2c6400, #232f46);
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    /* background-color: #ffffff; */
}

.site-title {
    padding-left: 55px;
    padding-right: 55px;
}

.site-title h3 {
    color: #ff4a80;
    font-size: 30px;
    text-align: center;
}

.header h1 {
    font-weight: 900;
    font-size: 55px;
    font-family: 'Georgia', serif !important;
    /* text-shadow: 3px 3px 6px rgba(0,0,0,0.4); */
    /* animation: titleGlow 3s ease-in-out infinite alternate; */
    background: linear-gradient(45deg, #2e6500, #bd8e00, #ffc100);
    /* background: linear-gradient(45deg, #fff, #f0f8ff, #fff); */
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
    }
}

.header .subtitle {
    font-size: 1.6rem;
    opacity: 1.95;
    /* animation: subtitleFloat 4s ease-in-out infinite; */
    color: #02339a;
    font-weight: 900;
}

@keyframes subtitleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Advanced Navigation */
.nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 5px 0px 1px 0px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    position: absolute;
    left: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 3px 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    font-size: 17px;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.6px;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #ffd040f0);
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu li a:hover {
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.nav-menu li a:hover::before {
    left: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 2rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Quote Section with Parallax */
.quote-section {
    background-image: url('images/home/earth.png');
    /* background: linear-gradient(45deg, #0f0c29, #01339a, #2e2e2e); */
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-position: 100% 100%;
    background-size: cover;
}

.parallax-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(3px 3px at 20px 30px, rgb(255 255 255), #ffffff00), radial-gradient(2px 2px at 40px 70px, rgb(255 255 255), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), #ffffff00), radial-gradient(2px 2px at 130px 80px, rgb(255 255 255), #00000000), radial-gradient(1px 1px at 160px 30px, rgb(255 255 255), transparent);
    background-size: 200px 150px;
    animation: twinkle 15s linear infinite;
}

@keyframes twinkle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-150px) rotate(360deg);
        opacity: 1;
    }
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.statue-container {
    width: 350px;
    height: 450px;
    /* margin: 0 auto 4rem; */
    position: relative;
    perspective: 1000px;
    float: right;
    margin-top: -350px;
}

.statue-image {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    /* animation: levitate 8s ease-in-out infinite; */
    position: relative;
}

.statue-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background: linear-gradient(45deg, #ff6b6b00, #4ecdc500, #45b7d1, #96ceb402, #fec95700); */
    background-size: cover;
    background-position: top;
    border-radius: 25px;
    z-index: -1;
    /* animation: borderGlow 3s linear infinite; */
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    25% {
        transform: translateY(-15px) rotateY(2deg);
    }

    50% {
        transform: translateY(-10px) rotateY(0deg);
    }

    75% {
        transform: translateY(-20px) rotateY(-2deg);
    }
}

.statue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    padding-top: 60px;
}

.quote-author {
    font-size: 25px;
    font-family: 'Georgia', serif !important;
}

.quote-text {
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    /* animation: textReveal 3s ease-out 1s both; */
    background: linear-gradient(174deg, #ffffff, #ffffff, #fff59d, #fff59d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 40px;
    padding-top: 80px;
    font-family: 'Georgia', serif !important;
    text-align:left;
    padding-left: 30px;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Varied Section Designs */
.section {
    position: relative;
    overflow: hidden;
}

/* About Section - Split Layout */
.about-section {
    background: linear-gradient(90deg, rgb(3 125 125 / 48%) 0%, rgb(0 128 128 / 70%) 35%, rgb(49 103 1 / 45%) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
    color: white;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-left h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
    color: #000;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-left p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    color: #000;
}

.content-right p,
.content-right li {
    color: #000;
    letter-spacing: 0.7px;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
}

.split-layout1 .owl-item {
    padding: 10px;
    border-right: 5px solid #c32c2c;
    border-left: 5px solid #c32c2c;
    border-radius: 8px;
}

.content-right .timeline-title {
    color: #00359a;
    font-size: 40px;
    margin-bottom: 25px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.9px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: scaleIn 1s ease-out;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
}

/* History Section - Timeline */
.history-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 8rem 0;
    color: white;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    animation: timelineSlide 1s ease-out;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@keyframes timelineSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    margin: 0 2rem;
    backdrop-filter: blur(15px);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-year {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Ministries Section - Card Grid */
.ministries-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 8rem 0;
    color: white;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ministry-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.ministry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.ministry-card:hover::before {
    transform: translateX(100%);
}

.ministry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Education Section - Feature Layout */
.education-section {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 8rem 0;
    color: white;
}

.feature-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-header {
    text-align: center;
    margin-bottom: 5rem;
}

.feature-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/*.feature-card {*/
/*    background: rgb(255, 255, 255);*/
/*    padding: 30px;*/

/*    backdrop-filter: blur(15px);*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);*/
/*}*/

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #4ecdc4);
    border-radius: 20px 20px 0 0;
}

/*.feature-card:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 6px 17px rgb(50 103 0 / 34%);*/
/*}*/
/*.subpages-content-area img{*/
/*    width:100% !important;*/
/*}*/

@media (min-width: 1400px) {
    .founder-text1{
    display:block ;
}
}
@media (max-width: 1399px) {
       .founder-text1{
    display:none ;
} 
}

@media (max-width: 767px) {
    .split-layout1 .owl-stage-outer{
        height: auto;
}

.filament-tiptap-grid-builder__column {
grid-column: span 6 !important;
}
.subpages-content-area img{
    width:100% !important;
}
        .main-header img{
        width: 100% !important;
    }
    .main-header .site-title{
            padding-left: 0px !important;
    padding-right: 0px !important;
    }
    .site-title h3 {
    font-size: 17px !important;
    text-align: center;
            display: none;
}
.site-title h1 {
    font-size: 16px !important;
}
.founder-text {
    color: #000;
    letter-spacing: 0.7px;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    text-align: left !important;
}
.split-layout1 .owl-stage-outer {
    height: auto !important;
    margin-top: 80px;
}
#social .custom-next,
#social .custom-prev{
   display: none; 
}
}
/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-menu li a {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        width: 80%;
    }

    .nav-menu li a {
        display: block;
        text-align: center;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 15px;
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        font-weight: 700;
    }

    .nav-menu li a:hover {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        transform: scale(1.05);
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        margin-left: 2rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .statue-container {
        width: 280px;
        height: 360px;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .features-grid,
    .hexagon-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .vocation-circle {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Additional Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation {
    animation: staggerIn 0.6s ease-out;
}

.stagger-animation:nth-child(2) {
    animation-delay: 0.1s;
}

.stagger-animation:nth-child(3) {
    animation-delay: 0.2s;
}

.stagger-animation:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* message */
.message-section {
    background-image: linear-gradient(rgb(18 49 113 / 54%), rgb(15 45 100 / 85%)), url(images/home/leadership-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.message-section:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #1a75bb0d;
    z-index: 0;
}

.section-title h2 {
    color: #fff;
    font-size: 40px;
}

.flying-element.graduation-cap {
    top: 10%;
    left: 10%;
    animation: fly-diagonal 15s infinite linear alternate;
}

@keyframes fly-diagonal {
    0% {
        transform: translate(0) rotate(0)
    }

    50% {
        transform: translate(100px, 100px) rotate(180deg)
    }

    to {
        transform: translate(0) rotate(360deg)
    }
}

@keyframes fly-horizontal {
    0% {
        transform: translate(0) rotate(0)
    }

    50% {
        transform: translate(100px) rotate(180deg)
    }

    to {
        transform: translate(0) rotate(360deg)
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pulse {
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

.flying-element.book {
    top: 20%;
    right: 10%;
    animation: fly-diagonal 12s infinite linear alternate-reverse;
}

.flying-element.pencil {
    bottom: 15%;
    left: 15%;
    animation: fly-horizontal 10s infinite linear;
}

.flying-element {
    position: absolute;
    z-index: 0;
    opacity: .1;
}

.message-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

.message-image img {
    transition: transform .5s ease;
    border-width: 5px !important;
    box-shadow: 0 5px 15px #0000001a;
    width: 300px;
    height: 300px;
    border-radius: 50% !important;
    border: 5px solid #ffab57 !important;
}

.message-image h6 {
    color: #00307e;
    font-weight: 600;
}

.message-content {
    position: relative;
    z-index: 1;
}

.title-underline {
    width: 106px;
    height: 4px;
    background-image: linear-gradient(to bottom right, yellow, red);
    text-align: center;
    margin: 0px auto;
}

.message-quote {
    position: relative;
    padding: 20px;
    background-color: #ffe1c400;
    border-radius: 10px;
    box-shadow: 0 4px 8px #0000000d;
}

.message-section .lead-sr-shobha,
.message-section .lead-sr-sharon {
    font-weight: 300 !important;
    font-size: 24px;
    letter-spacing: 0.5px;
    font-family: 'Monotype Corsiva', cursive !important;
     line-height:30px;

}

.lead {
    font-size: 1.25rem;
    font-weight: 500 !important;
    color: #273614 !important;

}

.btn-outline-primary {
        background: linear-gradient(to right, #b41642, #e0be01);
    border: #245600;
    color: #ffffff !important;
    border-color: #ffffff !important;
    padding: 10px 30px !important;
   
    font-weight: 600 !important;
}
.btn-outline-primary:hover {
    background: linear-gradient(to right, #e0be01 ,#b41642);  
}
.active {
    background: linear-gradient(135deg, #ffffff, #ffd040f0);
    color: #000 !important;
}

#news {
    background-image: linear-gradient(135deg, #009999 0%, #806dff00 100%),
        url(images/home/news-bg.jpg);
    padding: 4rem 0;
    color: white;
    background-size: auto;

}

#news h2 {
    color: #02339a;
    text-align: center;
    font-size: 40px;
}

#news .title-underline {
    width: 106px;
    height: 4px;
    margin-top: 10px;
    background-image: linear-gradient(to bottom right, yellow, red);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 40px;
}

.news-item {
    background: rgb(0 37 106);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.news-image img {
    border-radius: 50%;
    width: 50%;
    height: 195px;
    margin: 0px auto;
    display: block;
        margin-bottom: 30px;
}

#watch-video {
    padding: 4rem 0;
}

#watch-video .quote-text {
    padding-left: 0px !important;
    padding-top: 0px !important;
    padding-right: 0px;
    font-size: 5rem;
    text-shadow: 2px 2px 8px rgb(255 255 255 / 60%) !important;
}

#watch-video {
    background-image: linear-gradient(rgb(18 49 113 / 54%), rgb(15 45 100 / 85%)), url(images/home/join-us.png);
    background-size: cover;
    background-position: top;
}

.service-carousel .active {
    background: none !important;
}

.service-carousel .social-card {
    padding: 20px;
    border-radius: 25px;
}
 .read-more:hover{
         background: linear-gradient(to right, #e0be01, #b41642);
         color:#fff;
 }
 .read-more{
        background: linear-gradient(to right, #b41642, #e0be01);
         padding: 2px 15px 5px 15px;
    font-size: 17px;
    color: #fff; 
         border-radius: 20px;
  
      /*background-size: 1000% 100%;*/
      /*-webkit-background-clip: text;*/
      /*-webkit-text-fill-color: transparent;*/
      /*animation: moveGradient 5s linear infinite;*/
}
@keyframes moveGradient {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }

.read-more:hover{
    transform: translateY(-3px);
    text-decoration: underline;
    color: #00359a;
}
#social {
    background-image: linear-gradient(rgb(241 238 238 / 84%), rgb(243 247 255 / 65%)),
        url(images/home/our-service.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 0;
    background-position: 100% 100%;
    color: white;
}

#social h2 {
    text-align: center;
    font-size: 40px;
    animation: flipInX 1s ease-out;
    color: #00359a;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: #fdec6680;
    border-radius: 10%;
    opacity: .5;
    animation: rise 10s infinite ease-in
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s
}

.bubble:nth-child(7) {
    width: 30px;
    height: 30px;
    left: 70%;
    animation-duration: 7s;
    animation-delay: 2s
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 1s
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s
}

.bubble:nth-child(10) {
    width: 90px;
    height: 90px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translate(0)
    }

    50% {
        transform: translate(100px)
    }

    to {
        bottom: 100vh;
        transform: translate(-200px)
    }
}

.footer {
    background-image: linear-gradient(to right, #b31443, #e1c100);
    position: relative;
    overflow: hidden;
    padding-left: 20px;
}

.footer .address {
    display: inline-flex;
}

.footer a,
.footer p {
    color: #fff !important;

    font-family: "Poppins", sans-serif;
}

.footer h4,
.footer h5 {
    position: relative;
    padding-bottom: 15px
}

.footer h4:after,
.footer h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent)
}

.footer .contact-info li {
    margin-bottom: 10px;

    font-family: "Poppins", sans-serif;
}

.footer a {
    transition: all .3s ease;
    text-decoration: none
}

.copy-right a {
    color: #f5f5f5 !important;
}

.copy-right a:hover {
    color: #fcfcfc !important;
}

.footer a:hover {
    opacity: .8;
    text-decoration: underline
}

.copy-right p {
    text-align: center;
}

.links li::before {
    content: "\f101";
    font-family: FontAwesome;
    font-size: 13px;
    color: #fff;
    margin-right: 10px
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0;
    box-shadow: 0 2px 5px #0000004d;
    transition: all .3s ease
}

#back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px)
}

.contact-info i {
    margin-top: 06px;
}

#vocations {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 4rem 0;
    color: #02339a;
    overflow: hidden;
    position: relative;
}

#vocations h2 {
    font-size: 40px !important;
}

.gallery-grid img {
    border-radius: 30px;
}
#vocations img{
    width 100%;
        height: 350px;
}
@media (min-width: 1500px) {
    .container-fluid {
        width: 1450px !important;
    }
}

.services {
    margin-left: auto;
    margin-right: auto;
    display: table;
    margin-top: 30px;
}

.services .btn-outline-primary {
    background: linear-gradient(135deg, #ffffff, #2c6204);
    color: #1e1e1e !important;
}

.founder-message {
    border-radius: 10px;
    background: linear-gradient(135deg, #ffd040f0, #ffffff);
    padding: 30px;
    background-position: right;
}

.founder-title {
    color: #00359a;
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.9px;
    text-align: center;
}

.founder-text {
    color: #000;
    letter-spacing: 0.7px;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    text-align: justify;
}

.founder-content {
    padding: 20px;
}

.founder-image img {
    float: left;
    height: 262px;
    padding-right: 30px;
    background-size: auto;
}

.founder-content .btn-primary {
    float: right;
        background: linear-gradient(to right, #b41642, #e0be01);
    border: #b41642;
    color: #ffffff;
}
#vocations{
    background-image: linear-gradient(rgb(255 253 231 / 54%), rgb(255 250 211 / 85%)), url(images/home/photo-gallery-bg.png);
    background-size: cover;
    background-position: center -105px;
}

.communities .social-card {
    background: linear-gradient(135deg, #afafaf 0%, #ffecad 100%);
    border-radius: 40%;
}

.communities .social-card h3 {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 0px !important;
    padding: 20px;
    font-size: 27px !important;

}

.communities {
    background: linear-gradient(135deg, #ffffff, #fffffff0) !important;
}

.house h3 {
    color: #c51d00;
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}

.house img {
    margin: 0px auto;
    display: grid
}

.house p {
    color: #c51d00;
    font-size: 18px;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px !important;
}

#social h3 {
    color: #00359a !important;
}

#social p {
    color: #9c0736 !important;
    font-weight: 500;
    line-height: 25px;
}

.align-center .btn-outline-primary {
    text-align: center;
    margin: 0px auto;
    display: table;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .news-grid {
        display: contents;
    }

    .founder-image img {
        float: none;
        margin: 0px auto;
        display: block;
    }

    .header img {
        width: 50px;
    }

    .header h1 {
        font-size: 25px;
    }

    .header .subtitle {
        font-size: 11px;
    }

    .quote-text {
        padding: 0px
    }

    .statue-container {
        float: none;
        margin: 0;
    }

    .quote-author {
        font-size: 18px;
    }
}

.message-btn {
    display: flex;
    justify-content: end;
}

.quote-section-1 {
    background: linear-gradient(90deg, rgb(56 255 34 / 44%) 0%, rgb(87 199 133 / 45%) 50%, rgb(42 123 155 / 74%) 100%);
}

.quote-section-1 h2 {
    color: #00359a;
    text-align: center;
}

.quote-section-1 p {
    text-align: center;
    color: #072a7c !important;
    font-size: 26px;
    font-weight: 800 !important;
    font-style: italic;

    letter-spacing: 0.5px;
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Georgia', serif !important;


}

.right-txt {
    text-align: right !important;
    font-style: italic;
    color: #252233 !important;
    font-size: 18px !important;
    font-family: 'Georgia', serif !important;
    font-weight: 600 !important;
}

.guide {
    display: inline-flex;
}

.page-title-area {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/frontend/images/news-bg.jpg);
    background-size: contain;

    background-position: center;
    padding: 30px 0px 10px 0px;
}

/* 04-08-2025 */
.title-item ul {
    display: inline-flex;
    list-style: none;
    padding: 0px;
}

.page-title-area li,
.page-title-area h2 {
    color: #fff;
}

.title-item li i {
    padding-left: 5px;
    font-size: 10px;
    color: #ffef9c;
}

.contact-info-area {
    padding-top: 10px;
    padding-bottom: 0px;
}

.subpages-content-area h2 {
    color: #06259b;
    font-size: 30px;
}
.subpages-content-area h4{
       color: #5f8900; 
       font-size: 26px;
       margin-bottom: 30px;
}
.subpages-content-area h4:not(:first-child) {
    margin-top: 30px; /* Only applies to h4s that are not the first one */
}
.title-item li a {
    color: #ffef9c;
}

.subpages-content-area h3 {
    color: #bd0707;
    font-size: 23px;
    margin-bottom: 25px;
}

.page-title-area {
    background-image: linear-gradient(rgb(0 0 0 / 32%), rgb(0 0 0 / 7%)), url(../frontend/images/home/breadcrumb.jpg);
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    padding: 100px 0px 50px;
}

.subpages-content-area p,
.subpages-content-area li,
.subpages-content-area a {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
}

.subpages-content-area .container {
    /*box-shadow: rgb(119 147 251) 0px 5px 15px;*/
    border-radius: 10px;
    /*background-color: #deceff;*/
        padding: 0px 25px;
}

.sr-sharon {
    font-size: 20px;
    color: #fbff63;
    font-weight: 500;
    margin: 0px;
}

.leader {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin: 0px;
}

.services-para {
    color: #2c6204 !important;
    font-size: 23px;
    text-align: center;
    font-weight: 600 !important;
}

.service-carousel .item:nth-child(1) .social-card {
    background-color: #27d3f57a !important;
}

.message-section h2,
.align-center {
    text-align: center;
}

.social-card p{
    font-size:18px !important;
     font-family: "Poppins", sans-serif;
}

/* 05-08-2025 */
.main-header .presentation-sisters-logo {
    margin-left: auto;
    width: 137px;
    width: 137px;
    margin-top: 8px;
}

.main-header .logo-years {
    margin-top: 5px;
    width: 125px;
}

.main-header {
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgb(255 255 255), rgb(255 255 255 / 65%)), url(images/logo/header.jpeg);
    background-size: cover;
    background-position: unset;
    padding: 10px 0px;
}

.site-title h1 {
    background: linear-gradient(to right, #353bf3 20%, #324c6b 30%, #0190cd 70%, #764ada 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    text-align: center;
    font-size: 51px;

}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.site-title h3 {
    font-size: 31px;
    text-align: center;
}

.quote-text {
    font-size: 30px;
    line-height: 1.8;
    font-style: italic;
    color: #333;
}

.quote-author {
    font-size: 20px;
    margin-top: 10px;
    color: #ffffff;
      text-align: left;
    padding-left: 50px; 
}

.statue-image img {
    max-width: 280px;
    height: auto;
}

.logo-years,
.dance-three {
    animation: zoomInOut 4s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Zoom in scale */
    }
}

.featured-news h3 {
    color: #990033;
    text-align: center;
}
.nav-link:focus, .nav-link:hover {
background: linear-gradient(135deg, #ffffff, #ffd040f0) !important;
    color: #000 !important;
}
.subpage{
        background-color: #ffffdddd !important;
         
}  
.services-section{
        margin-top: 24px;
} 

.services-section .container{
 background-color: #deceff;
    padding: 0px 35px;

}
.gallery .container{
     background-color: #deceff;
    padding: 35px 35px;
}
.services-section .row{
border-bottom: 1px dashed #deceff;
}
.subpage h3{
        color: rgb(189, 7, 7);
}
.subpage p{
        color: #000 !important;
    letter-spacing: 0.7px;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    text-align: justify;
}
.subpage .btn-outline-primary{
        padding: 8px 25px !important;
}

.subpage h4{
        color:#2c6400;
        margin-bottom: 30px;
}

.subpage h5{
        color:#0d0e0d;
}
.gallery h5,
.gallery span{
  text-align: center;
}
.gallery h5 a{
       color: rgb(189, 7, 7) !important;
       text-decoration: none;
        text-align: center;
        font-weight:300 !important;
}
.gallery span a{
           color: #306601;
       text-decoration: none;
       text-align: center;
}
    .news-meta-item i,
     .news-meta-item span{
            color: #bd0707;
    }
.split-layout1 .owl-stage-outer{
        height: 373px;
}
.quote-section-1  .quote-logo img{
    margin:50px 0px;
}
.featured-news p{
        letter-spacing: 0.5px;
        margin-top: 30px;   
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
    top:30px !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
      top:30px !important;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: auto !important;
    height: auto;
        margin-left: auto !important;
    margin-right: auto !important;
    display: table;
        background-color: #ffeaf0;
    
}
.year-gallery img{
    height:200px;
}

@media(max-width:767px) {
    html{
            overflow-x: hidden !important;
    }
}
.tiptap-content .address{
    margin-bottom:0px !important;
}
.remembering-sisters{
    margin-left:auto;
    margin-right:auto;
    display:table;
    padding-bottom:50px;
}
a {
    color: #0d6efd;
    text-decoration: none !important;
}
