/* ==========================================
   HERO SECTION - RESPONSIVE STYLES
   ==========================================
*/

.hero-style12 {
    height: 90vh;
    min-height: 90vh;
    display: flex;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 0 80px 0 !important;
    box-sizing: border-box;
}

.hero-12 .swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-width: 1199px) {
    .hero-12 .swiper-pagination {
        bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-12 .swiper-pagination {
        bottom: 15px;
    }

    .hero-style12 {
        height: auto;
        min-height: auto;
        aspect-ratio: 16/9;
        width: 100%;
        max-width: 100vw;
    }

    .hero-12 .swiper-slide {
        aspect-ratio: 16/9;
        height: auto !important;
    }

    .hero-12 .swiper-slide img,
    .hero-12 .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 16/9;
    }

    .hero-12 .hero-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 5;
    }
}

/* ==========================================
   END OF HERO SECTION RESPONSIVE STYLES
   ========================================== */

/* ==========================================
   ABOUT SECTION - RESPONSIVE STYLES
   ==========================================
*/

@media (max-width: 1199.98px) {
    .about-area-10 .title-area {
        text-align: center !important;
    }

    .about-area-10 .title-area .sub-title4 {
        text-align: center !important;
        display: inline-block !important;
        width: auto !important;
    }

    .about-area-10 .title-area .sec-title {
        text-align: center !important;
    }

    .about-area-10 .title-area .sec-text {
        text-align: justify !important;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .about-area-10 .img-box10 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .about-area-10 .img-box10 .img1,
    .about-area-10 .img-box10 .img2,
    .about-area-10 .img-box10 .img3 {
        margin: 10px 0 !important;
        text-align: center !important;
    }

    .about-area-10 .img-box10 img {
        margin: 0 auto !important;
        display: block !important;
    }
}

/* ==========================================
   END OF ABOUT SECTION RESPONSIVE STYLES
   ========================================== */

/* ==========================================
   VISION AND MISSION SECTION - RESPONSIVE STYLES
   ==========================================
*/


.vision-card {
    background: transparent;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vision-card_text {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.vision-card_profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vision-card_profile .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vision-card_profile .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-card_profile-details {
    flex: 1;
}

.vision-card_name {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.vision-card_desig {
    color: #000;
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================================
   END OF VISION AND MISSION SECTION RESPONSIVE STYLES
   =================================================== */

/* ==========================================
PARTNERS SECTION - RESPONSIVE STYLES
==========================================
*/

.partners-section {
    background: transparent;
}

.partner-image-container {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shimmer-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #f8f8f8 20%,
            #ffffff 35%,
            #f8f8f8 50%,
            #f0f0f0 65%,
            #e8e8e8 80%,
            #f0f0f0 100%);
    background-size: 400% 100%;
    animation: shimmer 2s ease-in-out infinite;
    border-radius: 8px;
    opacity: 0.9;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.partner-img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.partner-img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* ===================================================
   END OF PARTNERS SECTION RESPONSIVE STYLES
   =================================================== */

/* ==========================================
EVENTS SECTION - RESPONSIVE STYLES
==========================================
*/

.property-card6 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-card-text {
    flex-grow: 1;
}

.swiper-slide {
    height: auto !important;
    display: flex;
}

/* ===================================================
   END OF EVENTS SECTION RESPONSIVE STYLES
   =================================================== */

/* ==========================================
INSTAGRAM SECTION - RESPONSIVE STYLES
==========================================
*/
.instagram-image-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}


.instagram-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.05);
}

/* ===================================================
   END OF INSTAGRAM SECTION RESPONSIVE STYLES
   =================================================== */