﻿/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;
    padding: 50px 7%;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #faf7ff 100% );
}

    /* Background Glow */

    .about-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(224,171,60,0.12);
        border-radius: 50%;
        top: -180px;
        right: -120px;
        filter: blur(80px);
    }

.about-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =========================
   IMAGE SIDE
========================= */

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 30px;
        object-fit: cover;
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

/* Floating Card */

.about-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-left: 5px solid #e0ab3c;
    animation: floatCard 4s ease-in-out infinite;
}

    .about-card h3 {
        font-size: 36px;
        color: #411166;
        margin-bottom: 8px;
    }

    .about-card p {
        color: #666;
        font-size: 15px;
        font-weight: 500;
    }

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   CONTENT SIDE
========================= */

.about-content .sub-title {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #1c1230;
    margin-bottom: 25px;
}

    .about-content h2 span {
        color: #411166;
    }

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 22px;
}

/* Mission Box */

.mission-box {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-item {
    background: #fff;
    padding: 24px;
    border-radius: 22px;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .mission-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(65,17,102,0.12);
    }

    .mission-item h4 {
        color: #411166;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .mission-item p {
        margin: 0;
        font-size: 14px;
        line-height: 1.8;
        color: #666;
    }

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    padding: 16px 36px;
    background: #411166;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    /* Shine */

    .about-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: rgba(255,255,255,0.25);
        transform: skewX(-25deg);
        transition: 0.8s;
    }

    .about-btn:hover::before {
        left: 130%;
    }

    .about-btn:hover {
        background: #e0ab3c;
        color: #411166;
        transform: translateY(-4px);
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }
}

@media(max-width:768px) {

    .about-section {
        padding: 40px 5%;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .mission-box {
        grid-template-columns: 1fr;
    }

    .about-card {
        right: -12px;
        bottom: -60px;
        padding: 20px;
    }

        .about-card h3 {
            font-size: 28px;
        }
}

@media(max-width:576px) {

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-btn {
        width: 100%;
    }
}








/* =========================
   MINISTRIES SECTION
========================= */

.ministries-section {
    position: relative;
    padding: 50px 7%;
    background: #f8f6fc;
    overflow: hidden;
}

    /* Background Glow */

    .ministries-section::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(224,171,60,0.08);
        top: -180px;
        right: -120px;
        filter: blur(70px);
    }

/* =========================
   HEADER
========================= */

.ministries-header {
    position: relative;
    z-index: 2;
    text-align: center;
   /* max-width: 850px;*/
    margin: auto;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.ministries-header h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 800;
    color: #181028;
    margin-bottom: 22px;
}

    .ministries-header h2 span {
        color: #411166;
    }

.ministries-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   GRID
========================= */

.ministries-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.ministry-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

    /* Hover */

    .ministry-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 30px 60px rgba(65,17,102,0.14);
    }

/* Image */

.ministry-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .ministry-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.7s ease;
    }

.ministry-card:hover .ministry-image img {
    transform: scale(1.12);
}

/* Overlay */

.ministry-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(10,8,25,0.65), rgba(10,8,25,0.10) );
    z-index: 1;
}

/* Content */

.ministry-content {
    padding: 35px;
    position: relative;
}

    .ministry-content span {
        position: absolute;
        top: -35px;
        right: 30px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #411166;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        border: 5px solid #fff;
    }

    /* Title */

    .ministry-content h3 {
        font-size: 28px;
        color: #1c1230;
        margin-bottom: 15px;
        font-weight: 700;
    }

    /* Text */

    .ministry-content p {
        color: #666;
        line-height: 1.9;
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Link */

    .ministry-content a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #411166;
        font-weight: 700;
        transition: 0.4s ease;
    }

        .ministry-content a:hover {
            color: #e0ab3c;
            transform: translateX(5px);
        }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .ministries-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .ministries-section {
        padding: 40px 5%;
    }

    .ministries-header h2 {
        font-size: 40px;
    }

    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .ministry-image {
        height: 240px;
    }
}

@media(max-width:576px) {

    .ministries-header h2 {
        font-size: 32px;
    }

    .ministries-header p {
        font-size: 15px;
    }

    .ministry-content {
        padding: 28px;
    }

        .ministry-content h3 {
            font-size: 24px;
        }
}













/* =========================
   COUNTER SECTION
========================= */

.counter-section {
    position: relative;
    padding:50px 7%;
    background: linear-gradient( 135deg, #2a0b42 0%, #411166 50%, #1a0829 100% );
    overflow: hidden;
}

    /* Background Glow */

    .counter-section::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(224,171,60,0.08);
        border-radius: 50%;
        top: -180px;
        right: -120px;
        filter: blur(80px);
    }

/* =========================
   GRID
========================= */

.counter-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

/* =========================
   BOX
========================= */

.counter-box {
    position: relative;
    padding: 20px 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: 0.45s ease;
}

    /* Hover */

    .counter-box:hover {
        transform: translateY(-12px);
        border-color: rgba(224,171,60,0.35);
        box-shadow: 0 25px 60px rgba(0,0,0,0.22);
    }

/* Top Gradient Line */

.counter-line {
    width: 70px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient( to right, #e0ab3c, #ffffff );
    margin-bottom: 28px;
}

/* =========================
   NUMBER
========================= */

.counter-box h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

    /* Gold Plus */

    .counter-box h2 span {
        color: #e0ab3c;
    }

/* =========================
   TEXT
========================= */

.counter-box p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    max-width: 260px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .counter-container {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .counter-section {
        padding: 80px 5%;
    }

    .counter-container {
        grid-template-columns: 1fr;
    }

    .counter-box {
        padding: 40px 28px;
    }

        .counter-box h2 {
            font-size: 48px;
        }
}

@media(max-width:576px) {

    .counter-box h2 {
        font-size: 40px;
    }

    .counter-box p {
        font-size: 15px;
    }
}






/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section {
    position: relative;
    padding: 50px 7%;
    background: #f8f6fc;
    overflow: hidden;
}

    /* Background Glow */

    .why-choose-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(224,171,60,0.08);
        border-radius: 50%;
        top: -220px;
        right: -180px;
        filter: blur(90px);
    }

/* =========================
   HEADER
========================= */

.why-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

/* Tag */

.why-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Heading */

.why-header h2 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #181028;
    margin-bottom: 24px;
}

    .why-header h2 span {
        color: #411166;
    }

/* Text */

.why-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   GRID
========================= */

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================
   ITEM
========================= */

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 28px;
  /*  background: #fff;*/
    border-radius: 28px;
    transition: 0.45s ease;
   /* box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);*/
}

    /* Hover */

    .why-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(65,17,102,0.12);
        border-color: rgba(224,171,60,0.25);
    }

/* =========================
   ICON
========================= */

.why-icon {
    min-width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #411166, #2a0b42 );
    color: #fff;
    font-size: 24px;
    transition: 0.4s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient( 135deg, #e0ab3c, #f2c55e );
    color: #411166;
/*    transform: rotate(-6deg) scale(1.08);*/
}

/* =========================
   CONTENT
========================= */

.why-content h3 {
    font-size: 24px;
    color: #1b1230;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .why-choose-section {
        padding: 80px 5%;
    }

    .why-header h2 {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 26px;
    }

    .why-content h3 {
        font-size: 22px;
    }
}

@media(max-width:576px) {

    .why-header h2 {
        font-size: 32px;
    }

    .why-header p {
        font-size: 15px;
    }

    .why-item {
        flex-direction: column;
    }

    .why-icon {
        min-width: 60px;
        height: 60px;
        font-size: 22px;
    }
}











/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    position: relative;
    padding: 50px 7%;
    background: #fff;
    overflow: hidden;
}

    /* Background Glow */

    .testimonial-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(224,171,60,0.08);
        border-radius: 50%;
        top: -220px;
        right: -180px;
        filter: blur(90px);
    }

/* =========================
   HEADER
========================= */

.testimonial-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 10px;
}

.testimonial-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Heading */

.testimonial-header h2 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #181028;
    margin-bottom: 22px;
}

    .testimonial-header h2 span {
        color: #411166;
    }

/* Text */

.testimonial-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   SLIDER
========================= */

.testimonial-slider {
    position: relative;
    max-width: 950px;
    margin: auto;
    overflow: hidden;
}

/* Track */

.testimonial-track {
    display: flex;
    transition: 1s ease;
}

/* =========================
   ITEM
========================= */

.testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 0 50px;
    opacity: 0.4;
    transform: scale(0.88);
    transition: 0.8s ease;
}

    /* Active */

    .testimonial-item.active {
        opacity: 1;
        transform: scale(1);
    }

/* Quote */

.quote-mark {
    font-size: 80px;
    line-height: 0.7;
    color: #e0ab3c;
    font-family: serif;
/*    margin-bottom: 10px;*/
}

/* Text */

.testimonial-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #1b1230;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Name */

.testimonial-item h3 {
    font-size: 20px;
    color: #411166;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Role */

.testimonial-item span {
    color: #777;
    font-size: 16px;
    letter-spacing: 1px;
}

/* =========================
   DOTS
========================= */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1c7dc;
    cursor: pointer;
    transition: 0.4s ease;
}

    .dot.active {
        width: 38px;
        border-radius: 20px;
        background: #411166;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .testimonial-section {
        padding: 80px 5%;
    }

    .testimonial-header h2 {
        font-size: 40px;
    }

    .testimonial-item {
        padding: 0 15px;
    }

        .testimonial-item p {
            font-size: 22px;
        }

    .quote-mark {
        font-size: 90px;
    }
}

@media(max-width:576px) {

    .testimonial-header h2 {
        font-size: 32px;
    }

    .testimonial-header p {
        font-size: 15px;
    }

    .testimonial-item p {
        font-size: 18px;
        line-height: 1.9;
    }

    .testimonial-item h3 {
        font-size: 24px;
    }

    .quote-mark {
        font-size: 70px;
    }
}














/* =========================
   EVENTS SECTION
========================= */

.events-section {
    position: relative;
    padding: 50px 7%;
    background: #f8f6fc;
    overflow: hidden;
}

    /* Background Glow */

    .events-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(65,17,102,0.05);
        border-radius: 50%;
        top: -220px;
        right: -180px;
        filter: blur(90px);
    }

/* =========================
   HEADER
========================= */

.events-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 40px;
}

/* Tag */

.events-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Heading */

.events-header h2 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #181028;
    margin-bottom: 8px;
}

    .events-header h2 span {
        color: #411166;
    }

/* Text */

.events-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   GRID
========================= */

.events-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================
   ITEM
========================= */

.event-item {
    position: relative;
    height: 520px;
    border-radius: 35px;
    overflow: hidden;
    cursor: pointer;
}

    /* Image */

    .event-item img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: 0.7s ease;
    }

    .event-item:hover img {
        transform: scale(1.08);
    }

/* Overlay */

.event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient( to top, rgba(10,8,25,0.85), rgba(10,8,25,0.15), transparent );
    transition: 0.5s ease;
}

    /* Title */

    .event-overlay h3 {
        color: #fff;
        font-size: 28px;
        line-height: 1.3;
        font-weight: 700;
        margin-bottom: 20px;
        transform: translateY(40px);
        opacity: 0;
        transition: 0.5s ease;
    }

/* Button */

.event-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #411166;
    font-size: 20px;
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.5s ease;
}

    .event-btn:hover {
        background: #e0ab3c;
        color: #411166;
        transform: translateY(0) rotate(-45deg);
    }

/* Hover Effect */

.event-item:hover .event-overlay h3,
.event-item:hover .event-btn {
    transform: translateY(0);
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .events-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .events-section {
        padding: 40px 5%;
    }

    .events-header h2 {
        font-size: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        height: 450px;
    }

    .event-overlay h3 {
        font-size: 28px;
    }
}

@media(max-width:576px) {

    .events-header h2 {
        font-size: 32px;
    }

    .events-header p {
        font-size: 15px;
    }

    .event-overlay {
        padding: 28px;
    }

        .event-overlay h3 {
            font-size: 24px;
        }

    .event-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}


/* =========================
   VIEW ALL EVENTS BUTTON
========================= */

.events-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.view-events-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 34px;
    border-radius: 60px;
    background: linear-gradient( 135deg, #411166, #2a0b42 );
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(65,17,102,0.18);
}

    /* Hover Background */

    .view-events-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,0.18), transparent );
        transition: 0.7s ease;
    }

    .view-events-btn:hover::before {
        left: 100%;
    }

    /* Icon */

    .view-events-btn i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.12);
        transition: 0.4s ease;
    }

    /* Hover */

    .view-events-btn:hover {
        background: linear-gradient( 135deg, #e0ab3c, #f1c55d );
        color: #411166;
        transform: translateY(-6px);
    }

        .view-events-btn:hover i {
            background: #fff;
            transform: rotate(-45deg);
        }

/* Responsive */

@media(max-width:576px) {

    .view-events-btn {
        padding: 16px 26px;
        font-size: 15px;
    }

        .view-events-btn i {
            width: 38px;
            height: 38px;
        }
}







/* =========================
   FAQ SECTION
========================= */

.faq-section {
    position: relative;
    padding: 50px 7%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

    /* Background Glow */

    .faq-section::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(224,171,60,0.08);
        border-radius: 50%;
        top: -220px;
        left: -180px;
        filter: blur(90px);
    }

/* =========================
   LEFT
========================= */

.faq-left {
    position: relative;
    z-index: 2;
}

/* Tag */

.faq-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(224,171,60,0.12);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Heading */

.faq-left h2 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #181028;
    margin-bottom: 24px;
}

    .faq-left h2 span {
        color: #411166;
    }

/* Text */

.faq-top-text {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 45px;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item {
    background: #f8f6fc;
    border-radius: 24px;
    margin-bottom: 22px;
    padding: 26px 30px;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

    /* Active */

    .faq-item.active {
        background: #411166;
        box-shadow: 0 20px 45px rgba(65,17,102,0.14);
    }

/* Question */

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

    .faq-question h3 {
        font-size: 22px;
        color: #1a112b;
        line-height: 1.5;
        transition: 0.4s ease;
    }

/* Icon */

.faq-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #411166;
    font-size: 24px;
    font-weight: 600;
    transition: 0.4s ease;
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
}

    .faq-answer p {
        color: #666;
        font-size: 15px;
        line-height: 1.9;
        padding-top: 20px;
    }

/* Active Answer */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-answer p {
    color: rgba(255,255,255,0.82);
}

.faq-item.active .faq-icon {
    background: #e0ab3c;
    color: #411166;
    transform: rotate(45deg);
}

/* Hover */

.faq-item:hover {
    transform: translateY(-5px);
}

/* =========================
   RIGHT IMAGE
========================= */

.faq-right {
    position: relative;
    z-index: 2;
}

.faq-image {
    position: relative;
    height: 760px;
    border-radius: 40px;
    overflow: hidden;
}

    .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Floating Shape */

   /* .faq-image::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 35px;
        background: linear-gradient( 135deg, rgba(224,171,60,0.8), rgba(65,17,102,0.7) );
        top: 30px;
        left: -50px;
        backdrop-filter: blur(10px);
    }*/

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

    .faq-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-image {
        height: 500px;
    }
}

@media(max-width:768px) {

    .faq-section {
        padding: 80px 5%;
    }

    .faq-left h2 {
        font-size: 40px;
    }

    .faq-question h3 {
        font-size: 19px;
    }

    .faq-item {
        padding: 22px 24px;
    }
}

@media(max-width:576px) {

    .faq-left h2 {
        font-size: 32px;
    }

    .faq-top-text {
        font-size: 15px;
    }

    .faq-question {
        gap: 15px;
    }

        .faq-question h3 {
            font-size: 17px;
        }

    .faq-image {
        height: 380px;
    }

        .faq-image::before {
            width: 120px;
            height: 120px;
        }
}




/* =========================
   CONTACT CTA SECTION
========================= */

.contact-cta-section {
    position: relative;
    padding: 50px 7%;
    background: linear-gradient( 135deg, #411166, #2a0b42 );
    overflow: hidden;
    text-align: center;
}

/* =========================
   SHAPES
========================= */

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.shape-one {
    width: 320px;
    height: 320px;
    background: rgba(224,171,60,0.25);
    top: -120px;
    left: -120px;
}

.shape-two {
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.08);
    bottom: -100px;
    right: -80px;
}

/* =========================
   CONTENT
========================= */

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

/* Tag */

.cta-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: #e0ab3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Heading */

.contact-cta-content h2 {
    font-size: 30px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    margin-bottom: 5px;
}

    .contact-cta-content h2 span {
        color: #e0ab3c;
    }

/* Text */

.contact-cta-content p {
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
}

    /* Phone Link */

    .contact-cta-content p a {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid rgba(224,171,60,0.6);
        transition: 0.4s ease;
    }

        .contact-cta-content p a:hover {
            color: #e0ab3c;
        }

/* =========================
   BUTTON
========================= */

.contact-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 25px;
    border-radius: 60px;
    background: #fff;
    color: #411166;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    transition: 0.45s ease;
}

    /* Shine Effect */

    .contact-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,0.5), transparent );
        transition: 0.8s ease;
    }

    .contact-cta-btn:hover::before {
        left: 100%;
    }

    /* Icon */

    .contact-cta-btn i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #411166;
        color: #fff;
        transition: 0.4s ease;
    }

    /* Hover */

    .contact-cta-btn:hover {
        background: #e0ab3c;
        color: #411166;
        transform: translateY(-6px);
    }

        .contact-cta-btn:hover i {
            background: #fff;
            color: #411166;
            transform: rotate(-45deg);
        }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .contact-cta-section {
        padding: 90px 5%;
    }

    .contact-cta-content h2 {
        font-size: 42px;
    }

    .contact-cta-content p {
        font-size: 17px;
    }
}

@media(max-width:576px) {

    .contact-cta-content h2 {
        font-size: 34px;
    }

    .contact-cta-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .contact-cta-btn {
        padding: 16px 28px;
        font-size: 15px;
    }

        .contact-cta-btn i {
            width: 38px;
            height: 38px;
        }
}





/*about use page css start*/


/* =========================================
   WHY EXIST SECTION
========================================= */

.why-exist-section {
    padding: 50px 5%;
    background: #f8f6fc;
}

.why-exist-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 32px;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

    .why-card:hover {
        transform: translateY(-10px);
    }

.why-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient( 135deg, #411166, #2b083f );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

    .why-icon i {
        color: #fff;
        font-size: 30px;
    }

.why-card h3 {
    font-size: 28px;
    color: #181028;
    margin-bottom: 16px;
}

.why-card p {
    color: #666;
    line-height: 2;
}


/* =========================================
   CORE VALUES
========================================= */

.core-values-section {
    padding: 50px 5%;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.value-item {
    position: relative;
    padding: 45px 30px;
    border-radius: 28px;
    background: #f8f6fc;
    transition: .4s;
}

    .value-item:hover {
        transform: translateY(-10px);
        background: #411166;
        color:white;
    }

    .value-item span {
        font-size: 56px;
        font-weight: 800;
        color: rgba(65,17,102,.12);
        display: block;
        margin-bottom: 22px;
    }
    .value-item:hover span {
        color: #fff;
    }
    .value-item h3 {
        color: #181028;
        margin-bottom: 16px;
        transition: .4s;
    }

    .value-item p {
        color: #666;
        line-height: 1.9;
        transition: .4s;
    }

    .value-item:hover h3,
    .value-item:hover p {
        color: #fff;
    }


/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
    padding: 50px 5%;
    background: #f8f6fc;
}

.journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.journey-content h2 {
    font-size: 56px;
    line-height: 1.2;
    color: #181028;
    margin: 22px 0;
}

.journey-content p {
    color: #666;
    line-height: 2;
    margin-bottom: 35px;
}

.journey-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.journey-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .journey-item i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #e0ab3c;
        color: #411166;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .journey-item span {
        font-weight: 600;
        color: #181028;
    }

.journey-image {
    position: relative;
}

    .journey-image img {
        width: 100%;
        border-radius: 35px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px) {

    .why-exist-grid,
    .values-grid,
    .journey-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .why-exist-grid,
    .values-grid,
    .journey-wrapper {
        grid-template-columns: 1fr;
    }

    .journey-content h2,
    .section-heading h2 {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .journey-content h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .why-card,
    .value-item {
        padding: 35px 25px;
    }
}










/* =========================================
   POC SERVICES SECTION
========================================= */

.poc-services-section {
    padding: 50px 5%;
    background: #fff;
}

.poc-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}


/* Heading */

.poc-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .poc-heading span {
        display: inline-block;
        padding: 10px 24px;
        border-radius: 50px;
        background: rgba(224,171,60,.12);
        color: #e0ab3c;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .poc-heading h2 {
        font-size: 30px;
        line-height: 1.2;
        color: #181028;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .poc-heading p {
        max-width: 760px;
        margin: auto;
        color: #666;
        font-size: 17px;
        line-height: 2;
    }


/* Grid */

.poc-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 80px 50px;
}


/* Item */

.poc-service-box {
    position: relative;
}


/* Image */

.poc-service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 360px;
    margin-bottom: 32px;
}

    .poc-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

.poc-service-box:hover .poc-service-image img {
    transform: scale(1.08);
}


/* Content */

.poc-service-content h3 {
    font-size: 30px;
    line-height: 1.3;
    color: #181028;
    font-weight: 700;
    margin-bottom: 18px;
    transition: .4s ease;
}

.poc-service-box:hover h3 {
    color: #411166;
}

.poc-service-content p {
    color: #666;
    font-size: 16px;
    line-height: 2;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px) {

    .poc-services-grid {
        grid-template-columns: 1fr;
    }

    .poc-heading h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .poc-services-section {
        padding: 40px 5%;
    }

    .poc-heading {
        margin-bottom: 55px;
    }

        .poc-heading h2 {
            font-size: 32px;
        }

        .poc-heading p {
            font-size: 15px;
        }

    .poc-services-grid {
        gap: 60px;
    }

    .poc-service-image {
        height: 240px;
        border-radius: 25px;
    }

    .poc-service-content h3 {
        font-size: 24px;
    }

    .poc-service-content p {
        font-size: 15px;
    }
}









/*
vision misson page css

*/


.poc-vision-section,
.poc-mission-section {
    padding: 50px 5%;
}

.poc-mission-section {
    background: var(--light);
}

.poc-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse-grid {
    direction: rtl;
}

    .reverse-grid > * {
        direction: ltr;
    }


/* Image */

.poc-vm-image {
    position: relative;
}

    .poc-vm-image img {
        width: 100%;
        border-radius: 35px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }


/* Content */

.poc-vm-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224,171,60,.12);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.poc-vm-content h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #181028;
    font-weight: 800;
    margin-bottom: 28px;
}

.poc-vm-content p {
    color: var(--text);
    font-size: 17px;
    line-height: 2;
    margin-bottom: 20px;
}


/* =========================================
   PURPOSE
========================================= */

.poc-purpose-section {
    padding: 50px 5%;
    background: linear-gradient( 135deg, #2b083f, #411166 );
}

.poc-purpose-box {
    text-align: center;
    max-width: 950px;
    margin: auto;
}

    .poc-purpose-box span {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 50px;
        background: rgba(255,255,255,.08);
        color: white;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 28px;
    }

    .poc-purpose-box h2 {
        color: #fff;
        font-size: 35px;
        line-height: 1.5;
        font-weight: 700;
    }


/* =========================================
   POINTS SECTION
========================================= */

.poc-points-section {
    padding: 50px 5%;
    background: #fff;
}

.poc-points-heading {
    text-align: center;
    margin-bottom: 10px;
}

    .poc-points-heading span {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 50px;
        background: rgba(224,171,60,.12);
        color: var(--secondary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .poc-points-heading h2 {
        font-size: 30px;
        color: #181028;
        font-weight: 800;
    }


/* Grid */

.poc-points-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}


/* Item */

.poc-point-item {
    position: relative;
    padding: 40px 30px;
    border-radius: 28px;
    background: var(--light);
    transition: .4s ease;
}

    .poc-point-item:hover {
        transform: translateY(-10px);
    }


/* Number */

.poc-point-number {
    font-size: 52px;
    font-weight: 800;
    color: rgba(65,17,102,.12);
    margin-bottom: 18px;
}


/* Heading */

.poc-point-item h3 {
    font-size: 24px;
    color: #181028;
    margin-bottom: 16px;
}


/* Paragraph */

.poc-point-item p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}


/* Responsive */

@media(max-width:1100px) {

    .poc-points-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .poc-points-grid {
        grid-template-columns: 1fr;
    }

    .poc-point-item {
        padding: 35px 25px;
    }
}

/* Content */

.poc-point-item h3 {
    font-size: 30px;
    color: #181028;
    margin-bottom: 18px;
}

.poc-point-item p {
    color: var(--text);
    line-height: 2;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px) {

    .poc-vm-grid,
    .poc-points-grid {
        grid-template-columns: 1fr;
    }

    .vm-banner-content h1,
    .poc-vm-content h2,
    .poc-purpose-box h2,
    .poc-points-heading h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .vm-banner-section {
        height: 70vh;
    }

    .vm-banner-content h1 {
        font-size: 34px;
    }

    .vm-banner-content p {
        font-size: 15px;
    }

    .poc-vm-content h2,
    .poc-purpose-box h2,
    .poc-points-heading h2 {
        font-size: 30px;
    }

    .poc-vm-content p,
    .poc-point-item p {
        font-size: 15px;
    }

    .poc-point-item {
        padding: 35px 28px;
    }

        .poc-point-item h3 {
            font-size: 24px;
        }
}




/* =========================================
   POC STAFF SECTION
========================================= */

.poc-staff-section {
    padding: 50px 5%;
    background: #f8f6fc;
    overflow: hidden;
}

.poc-staff-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
}

/* =========================================
   HEADING
========================================= */

.poc-staff-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .poc-staff-heading span {
        display: inline-block;
        padding: 10px 24px;
        border-radius: 50px;
        background: rgba(224,171,60,.12);
        color: #e0ab3c;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .poc-staff-heading h2 {
        font-size: 30px;
        line-height: 1.2;
        color: #181028;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .poc-staff-heading p {
        max-width: 760px;
        margin: auto;
        color: #666;
        line-height: 2;
        font-size: 17px;
    }

/* =========================================
   GRID
========================================= */

.poc-staff-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* =========================================
   STAFF ITEM
========================================= */

.poc-staff-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    transition: .5s ease;
}

    .poc-staff-item:hover {
        transform: translateY(-10px);
    }

/* =========================================
   IMAGE
========================================= */

.poc-staff-image {
    position: relative;
    height: 460px;
    overflow: hidden;
}

    .poc-staff-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: 1s ease;
    }

.poc-staff-item:hover .poc-staff-image img {
    transform: scale(1.06);
}

/* =========================================
   OVERLAY
========================================= */

.poc-staff-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to top, rgba(10,10,20,.92) 0%, rgba(10,10,20,.35) 38%, rgba(10,10,20,0) 70% );
}

/* =========================================
   CONTENT
========================================= */

.poc-staff-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 26px;
    background: linear-gradient( to top, rgba(8,8,18,.95), rgba(8,8,18,.55), transparent );
}

    /* NAME */

    .poc-staff-content h3 {
        color: #fff;
        font-size: 28px;
        line-height: 1.3;
        font-weight: 800;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    /* DESIGNATION */

    .poc-staff-content span {
        display: block;
        color: rgba(255,255,255,.88);
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: .4px;
    }

/* =========================================
   LARGE SCREEN
========================================= */

@media(max-width:1400px) {

    .poc-staff-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px) {

    .poc-staff-section {
        padding: 70px 30px;
    }

    .poc-staff-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

    .poc-staff-image {
        height: 420px;
    }

    .poc-staff-content h3 {
        font-size: 24px;
    }

    .poc-staff-content span {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .poc-staff-section {
        padding: 60px 20px;
    }

    .poc-staff-heading h2 {
        font-size: 32px;
    }

    .poc-staff-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .poc-staff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .poc-staff-item {
        border-radius: 24px;
    }

    .poc-staff-image {
        height: 450px;
    }

    .poc-staff-content {
        padding: 24px 20px;
    }

        .poc-staff-content h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .poc-staff-content span {
            font-size: 13px;
            line-height: 1.7;
        }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px) {

    .poc-staff-section {
        padding: 50px 15px;
    }

    .poc-staff-heading span {
        font-size: 11px;
        padding: 8px 18px;
    }

    .poc-staff-heading h2 {
        font-size: 28px;
    }

    .poc-staff-heading p {
        font-size: 14px;
    }

    .poc-staff-image {
        height: 380px;
    }

    .poc-staff-content {
        padding: 20px 18px;
    }

        .poc-staff-content h3 {
            font-size: 19px;
            line-height: 1.4;
        }

        .poc-staff-content span {
            font-size: 12px;
            line-height: 1.6;
        }
}









/* =========================================
        MODERN INNER PAGE BANNER
========================================= */

.modern-page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    /* IMAGE */
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg7.jpeg') center center/cover no-repeat;
    /* FIXED EFFECT */
    background-attachment: fixed;
}

/* DARK OVERLAY */

.banner-overlay {
    position: absolute;
    inset: 0;
  /*  background: linear-gradient( to right, rgba(0,0,0,.75), rgba(0,0,0,.35), rgba(0,0,0,.15) );*/
}

/* CONTENT */

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

    .banner-content h1 {
        color: #fff;
        font-size: 45px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1;
        font-family: serif;
    }

    .banner-content p {
        color: rgba(255,255,255,.95);
        font-size: 20px;
        line-height: 1.3;
        font-weight: 500;
    }

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:992px) {

    .modern-page-banner {
        height: 420px;
        padding: 0 7%;
        background-attachment: scroll;
    }

    .banner-content h1 {
        font-size: 54px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .modern-page-banner {
        height: 360px;
        padding: 0 20px;
    }

    .banner-content {
        max-width: 100%;
    }

        .banner-content h1 {
            font-size: 40px;
            margin-bottom: 18px;
        }

        .banner-content p {
            font-size: 15px;
            line-height: 1.7;
        }
}

@media(max-width:480px) {

    .modern-page-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 14px;
    }
}


.about-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg1.jpeg') center center/cover no-repeat;
}

.events-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg3.jpeg') center center/cover no-repeat;
}

.vison-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg4.jpeg') center center/cover no-repeat;
}

.contact-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg8.jpeg') center center/cover no-repeat;
}

.leadership-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg6.jpeg') center center/cover no-repeat;
}

.Christian-banner {
    background: linear-gradient( rgba(0,0,0,0.45), rgba(0,0,0,0.45) ), url('/newimages/bg/bg1.jpeg') center center/cover no-repeat;
}





/* =========================================
        POC EVENTS SECTION
========================================= */

.poc-events-section {
    padding: 50px 7%;
    background: #fff;
}

/* FILTER BUTTONS */

.poc-event-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.poc-filter-btn {
    border: none;
    outline: none;
    padding: 14px 28px;
    background: #f3f3f3;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s ease;
}

    .poc-filter-btn:hover,
    .poc-filter-btn.active {
        background: #411166;
        color: #fff;
    }

/* GRID */

.poc-events-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================================
        ITEM
========================================= */

.poc-event-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 370px;
    cursor: pointer;
}

    .poc-event-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

/* =========================================
        OVERLAY
========================================= */

.poc-event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.2), transparent );
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

/* HOVER PE SHOW */

.poc-event-item:hover .poc-event-overlay {
    opacity: 1;
    visibility: visible;
}

/* TITLE */

.poc-event-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 260px;
    margin-bottom: 25px;
    transform: translateY(30px);
    transition: .5s ease;
}

/* BUTTON */

.poc-event-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #411166;
    font-size: 18px;
    text-decoration: none;
    transform: translateY(30px);
    transition: .5s ease;
}

/* HOVER ANIMATION */

.poc-event-item:hover .poc-event-overlay h3,
.poc-event-item:hover .poc-event-btn {
    transform: translateY(0);
}

/* BUTTON HOVER */

.poc-event-btn:hover {
    background: #411166;
    color: #fff;
    transform: rotate(-45deg);
}

/* IMAGE ZOOM */

.poc-event-item:hover img {
    transform: scale(1.1);
}
/* RESPONSIVE */

@media(max-width:991px) {

    .poc-events-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .poc-events-section {
        padding: 70px 20px;
    }

    .poc-events-grid {
        grid-template-columns: 1fr;
    }

    .poc-event-item {
        height: 320px;
    }

    .poc-event-overlay h3 {
        font-size: 22px;
    }
}




/* =========================================
        POC CONTACT SECTION
========================================= */

.poc-contact-section {
    padding: 50px 7%;
    background: #f8f8f8;
}

/* CONTAINER */

.poc-contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}

/* LEFT */

.poc-contact-subtitle {
    color: #7b2cbf;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: inline-block;
}

.poc-contact-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
    font-weight: 700;
}

.poc-contact-left p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    max-width: 520px;
}

/* SOCIAL */

.poc-social-area {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .poc-social-area h4 {
        font-size: 22px;
        color: #111;
    }

.poc-social-icons {
    display: flex;
    gap: 14px;
}

    .poc-social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #7b2cbf;
        text-decoration: none;
        transition: .3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

        .poc-social-icons a:hover {
            background: #7b2cbf;
            color: #fff;
            transform: translateY(-5px);
        }

/* FORM */

.poc-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.poc-input-box input,
.poc-input-box select,
.poc-input-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    outline: none;
    background: transparent;
    padding: 18px 22px;
    border-radius: 40px;
    font-size: 15px;
    transition: .3s ease;
}

.poc-input-box textarea {
    height: 180px;
    border-radius: 28px;
    resize: none;
    margin-top: 20px;
}

    .poc-input-box input:focus,
    .poc-input-box select:focus,
    .poc-input-box textarea:focus {
        border-color: #7b2cbf;
    }

/* BUTTON */

.poc-contact-btn {
    border: none;
    outline: none;
    margin-top: 25px;
    padding: 16px 38px;
    border-radius: 50px;
    background: #7b2cbf;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

    .poc-contact-btn i {
        margin-left: 10px;
    }

    .poc-contact-btn:hover {
        background: #411166;
        transform: translateY(-4px);
    }

/* CONTACT CARDS */

.poc-contact-cards {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.poc-contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .poc-contact-card:hover {
        transform: translateY(-8px);
    }

.poc-contact-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(123,44,191,.1);
    color: #7b2cbf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.poc-contact-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111;
}

.poc-contact-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.poc-contact-details a {
    display: block;
    color: #7b2cbf;
    text-decoration: none;
    margin-bottom: 10px;
}

.poc-contact-details span {
    color: #111;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .poc-contact-container {
        grid-template-columns: 1fr;
    }

    .poc-contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .poc-contact-left h2 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .poc-contact-section {
        padding: 30px 20px;
    }

    .poc-form-grid {
        grid-template-columns: 1fr;
    }

    .poc-contact-cards {
        grid-template-columns: 1fr;
    }

    .poc-contact-left h2 {
        font-size: 34px;
    }

    .poc-social-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:480px) {

    .poc-contact-left h2 {
        font-size: 28px;
    }

    .poc-contact-card {
        padding: 10px;
    }
}