/* ===================== Video Slider Styles ===================== */
.video-slider-section {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.video-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 80vh;
    max-height: 800px;
    min-height: 500px;
}

.video-slide {
    min-width: 100%;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
    padding: 20px;
    box-sizing: border-box;
}

.video-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.video-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.1s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Animation for content */
.video-content h2,
.video-content p,
.video-content a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.video-slide.active .video-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.video-slide.active .video-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.video-slide.active .video-content a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.button-color {
    background: #6699ff;
}

/* Responsive Video Slider */
@media (max-width: 1200px) {
    .video-slider {
        height: 70vh;
    }

    .video-content h2 {
        font-size: 3rem;
    }

    .video-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .video-slider {
        height: 60vh;
    }

    .video-content h2 {
        font-size: 2.5rem;
    }

    .video-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-slider {
        height: 50vh;
        min-height: 400px;
    }

    .video-content h2 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1.1rem;
    }

    .slider-nav {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .video-slider {
        height: 45vh;
        min-height: 350px;
    }

    .video-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .video-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===================== Blog & Pagination ===================== */
.blog-posts-area {
    padding: 60px 0;
}

.blog-post-item {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 20px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #6c5ce7;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
}

.pagination .page-item .page-link {
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 6px;
    min-width: 50px;
    min-height: 50px;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.pagination .page-item .page-link:hover {
    background-color: #0056b3;
    color: white;
}

.text-muted {
    color: rgba(5, 5, 5, 0.75) !important;
}

/* Form Inputs */
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    background: transparent;
    box-shadow: none;
    padding: 0 15px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #495057 !important;
}

/* Blog Search */
.blog-search {
    margin-bottom: 40px;
}

.blog-search .form-control {
    height: 50px;
    border-radius: 30px 0 0 30px;
    border-right: none;
}

.blog-search .btn-primary {
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
    background: #6c5ce7;
    border-color: #6c5ce7;
}

.blog-search .btn-primary:hover {
    background: #5649c0;
    border-color: #5649c0;
}

/* Dark Mode */
[data-theme="dark"] .blog-post-item {
    background: #2a2a2a;
}

[data-theme="dark"] .blog-title a {
    color: #f5f5f5;
}

[data-theme="dark"] .blog-excerpt {
    color: #b0b0b0;
}

[data-theme="dark"] .pagination li a {
    background: #3a3a3a;
    color: #f5f5f5;
}

/* ===================== Buttons ===================== */
.custom-btn {
    background-color: #213f9a;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
    background-color: #002c7f;
    transform: translateY(-2px);
}

/* ===================== Read More Truncation ===================== */
#ecommerce-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#ecommerce-text.expanded {
    display: block;
}

/* ===================== Features Sections ===================== */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    flex: 1 1 250px;
    padding: 20px;
    border-right: 1px solid #ddd;
    text-align: center;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
}

/* ===================== Partner/Clients ===================== */
.clients-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-width: 150px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.fixed-image {
    position: sticky;
    top: 0;
    max-width: 100%;
}

/* ===================== Responsive Consolidation ===================== */
@media (max-width: 768px) {
    .feature-list {
        flex-direction: column;
    }

    .feature-box {
        border-right: none;
        text-align: left;
    }
}

#languageSelect {
background-position: 6px center;
background-repeat: no-repeat;
background-size: 16px 12px;
border: 1px solid #444;
border-radius: 4px;
padding-right: 20px;
cursor: pointer;
background-color: #000000;
color: #ffffff;
}
#languageSelect option {
background-color: #000000;
color: #ffffff;
}
/* Hide Google Translate widget but keep it functional */
#google_translate_element,
.goog-te-gadget,
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Don’t disable pointer events on the combo */
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.goog-te-balloon-frame {
    display: none !important;
}
body {
    top: 0px !important;
}

/* Keep the combo “invisible” but clickable so JS can trigger change */
.goog-te-combo {
    opacity: 0;
    height: 0;
}

.goog-te-combo option[value=""] {
    display: none !important;
}

            .header-top-news {
            background: transparent; /* Transparent background */
            color: #fff; /* Text color */
            padding: 0px;
        }
        
        .scroll-container {
            overflow: hidden;
            white-space: nowrap;
        }
        
        .scroll-text {
            display: inline-block;
            /* padding-left: 100%;  */
            animation: scroll-left 30s linear infinite; /* Slow scroll */
        }
        
        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Pause scroll on hover */
        .scroll-container:hover .scroll-text {
            animation-play-state: paused;
        }
        .scrol-text {
    margin-top: 10px;
    margin-bottom: 0px;
}
  /* about */

/* Default (light mode) */
.mission-card {
    background-color: #ffffff; /* Light background */
    color: #212529;           /* Dark text */
    border-color: #dee2e6;    /* Light border */
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .mission-card {
        background-color: #212529; /* Dark background */
        color: #ffffff;            /* White text */
        border-color: #495057;     /* Dark border */
    }
}