/* Two-Part Header Styles */
.top-header {
    background: #05c46b;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-header a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header a:hover {
    color: #4dabf7;
}

.top-header-left ul,
.top-header-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.top-header-left ul li,
.top-header-right ul li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.top-header-left ul li:last-child,
.top-header-right ul li:last-child {
    margin-right: 0;
}

.top-header-left ul li i {
    margin-right: 8px;
    color: #4dabf7;
}

.top-header-right ul {
    justify-content: flex-end;
}

.top-header-right .social-icons a {
    margin-right: 10px;
    font-size: 16px;
}

.top-header-right .social-icons a:last-child {
    margin-right: 0;
}

.header {
    position: relative;
    z-index: 999;
}

.header-inner {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .top-header-left,
    .top-header-right {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .top-header-left ul,
    .top-header-right ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .top-header-left ul li,
    .top-header-right ul li {
        margin-right: 10px;
        margin-bottom: 5px;
    }
    
    .top-header-right .social-icons {
        display: none; /* Hide social icons on mobile to save space */
    }
}

@media (max-width: 576px) {
    .top-header {
        font-size: 11px;
    }
    
    .top-header-left ul li,
    .top-header-right ul li {
        margin-right: 8px;
    }

    
}

/* Option 1: Simple arrow after text (Recommended) */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    position: relative;
    padding-right: 20px !important;
}

.has-dropdown > a:after {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #05c46b;
    transition: transform 0.3s ease;
    font-weight: normal;
}

.has-dropdown:hover > a:after {
    transform: translateY(-50%) rotate(180deg);
    color: #333;
}

/* Option 2: FontAwesome icon */
.has-dropdown > a .fa-chevron-down {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Option 3: Plus/Minus indicator */
.has-dropdown > a .dropdown-indicator {
    margin-left: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.has-dropdown > a .dropdown-indicator:before {
    content: '+';
}

.has-dropdown:hover > a .dropdown-indicator:before {
    content: '-';
}

/* Mobile styles */
@media (max-width: 768px) {
    .has-dropdown > a:after {
        right: 15px;
    }
    
    .has-dropdown.active > a:after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Make dropdown touch friendly on mobile */
    .has-dropdown > a {
        cursor: pointer;
    }
    
    .dropdown {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
}


.home-slider {
    position: relative;
    overflow: hidden;
}

.single-slider.video-slider {
    position: relative;
    min-height: 100vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the whole area */
    z-index: -1; /* Places video behind content */
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2; /* Keeps content above video and overlay */
}