/* Base Styles */
/* body {
    
    overflow-x: hidden;
} */
html,
body {
    font-family: var(--font1);
    color: var(--light-dar1);
    background-color: var(--light);
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Feature Cards */
.features-grid {
    margin-top: 40px;
}

.feature-card,
.feature-card_hero {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: var(--light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 10px;
}

.bg-light-coral {
    background-color: var(--primary-light);
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--light-dark3);
    margin-bottom: 0;
}


/* ************* Up Page Button End *********** */

/* Feature Cards */

/* Integration Cards */
.integration-card {
    padding: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }

    h2.display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .integration-card {
        padding: 10px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }
}

/* ********* Sponser with image ******** */
.sponser_1 {
    background-color: #f9f9f9;
}

.client-logos .swiper {
    width: 100%;
    height: 100px;
}

.client-logos .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logos .swiper-slide img {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.client-logos .swiper-slide:hover img {
    transform: scale(1.05);
}

/* *********** Benefits ********* */
.benefits_content {
    text-align: left !important;
}

/* ******** Faq ********* */
.faq-container {
    max-width: 1000px;
    padding: 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 10px;
    color: var(--light-dark1);
    font-weight: 600;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-dark3);
    font-weight: 400;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(165, 165, 165);
    overflow: hidden;
}

.accordion-button {
    font-weight: 500;
    font-size: 18px;
    padding: 20px 25px;
    color: #444;
    background-color: var(--light);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--light-dark1);
    background-color: var(--light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--light-dark3);
    line-height: 1.6;
    background-color: var(--light);
}

/* Custom animation for the accordion */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Hover effect */
.accordion-button:hover {
    background-color: #f8f9fa;
}


/* contact us cards */
.addressCard {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.addressCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.addressCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.addressInfoCards .card-2 {
    /* background: linear-gradient(135deg, #FFD166 0%, #FF9A5A 50%, #FF6B6B 100%); */
    /* background: linear-gradient(135deg, #A8E6A3 0%, #6FAF6A 50%, #2D4E28 100%); */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.addressInfoCards .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.addressInfoCards .addressCard:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.addressInfoCards .glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(30px);
    animation: pulse 4s infinite alternate;
    opacity: 0;
    transition: all 0.5s ease;
}

.addressInfoCards .addressCard:hover .glow {
    opacity: 0.6;
}

/* gallery  */

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-section .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-section .gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .view-btn {
    padding: 6px 20px;
    background: #fff;
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-section .view-btn:hover {
    background: #343a40;
    color: #fff;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* slider */
.slider_1 {
    /* background-color: var(--dark); */
    color: var(--light);
}

.slider_1 .swiper-container {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.slider_1 .swiper {
    width: 100%;
    height: 100%;
}

.slider_1 .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    overflow: hidden;
    user-select: none;
    cursor: grab;
    border-radius: 20px 20px 20px 20px;
}

.slider_1 .swiper-slide img {
    width: 100%;
    object-fit: cover;
    /* border-radius: 50px; */
}

.slider_1 .swiper-pagination {

    display: flex !important;
    flex-direction: row !important;
    justify-content: center;

    position: absolute;
    /* right: 50px !important;
    left: auto !important;
    top: 50%;
    transform: translateY(-50%); */

    bottom: 20px;
    right: 0;

    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider_1 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1 !important;
    transition: all 0.3s ease;
    margin: 0 !important;
    position: relative;
}

.slider_1 .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.5);
}

.slider_1 .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.slider_1 .swiper-pagination-bullet-active::after {
    opacity: 1;
}

.slider_1 .swiper-button-next,
.slider_1 .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.slider_1 .swiper-button-next::after,
.slider_1 .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.slider_1 .swiper-button-next:hover,
.slider_1 .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.slider_1 .slide-counter {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.slider_1 .slide-counter span {
    color: white;
    font-size: 2.5rem;
}

.cursor-effect {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

@media (max-width: 992px) {
    .swiper-pagination {
        right: 30px !important;
    }

    .slide-counter {
        left: 30px;
    }
}

@media (max-width: 768px) {

    .slider_1 .swiper-container {
        height: 100%;
    }

    .swiper-pagination {
        right: 15px !important;
        gap: 15px;
    }

    .slide-counter {
        left: 15px;
        bottom: 30px;
        font-size: 1.2rem;
    }

    .slide-counter span {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}

/* youtube video */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.embed-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* counter */

.counter-section {
    /* background-color: var(--secondary); */
    color: white;
    padding: 3rem 0;
}

.counter-section .stats-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.counter-section .stats-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
}

.counter-section .stats-text {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.counter-section .border-light {
    border-color: rgba(255, 255, 255, 0.3) !important;
}