* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: white;
}

/* Header Styles */
.header {
    background-color: #f5f5f5;
    background-image: url('../img/bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Navigation Tabs */
.nav-container {
    width: 100%;
    background-color: transparent;
    margin-top: 50px;
    margin-bottom: 30px;
    z-index: 10;
    position: relative;
}

.nav-tabs {
    display: flex;
    list-style: none;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.tab {
    padding: 8px 20px;
    cursor: pointer;
    font-size: 18px;
    color: black;
    transition: all 0.3s ease;
    /* border-right: 1px solid #e0e0e0; */
    font-weight: bold;
    letter-spacing: 0.3px;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.tab:last-child {
    border-right: none;
}

.tab:hover {
    color: white;
}

.tab.active {
    background-color: transparent;
    color: white;
    font-weight: bold;
    border-bottom: 2px solid white;
}

.tab a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.dropdown-menu li a:hover {
    background-color: #4285f4;
    color: white;
}

.dropdown-menu li.active {
    background-color: #4285f4;
}

.dropdown-menu li.active a {
    color: white;
    font-weight: bold;
}

/* Carousel Styles */
.slider-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;

    flex: none;
    z-index: 2;
}

.slider {
    display: flex;
    height: 450px;
    transition: transform 0.5s ease;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.slider-item {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    border: none;
    background: transparent;
    border-radius: 18px;
}

.slider-item.active {
    transform: translateX(0);
    z-index: 1;
}

.slider-item.prev {
    transform: translateX(-100%);
}

.slider-item.next {
    transform: translateX(100%);
}

.slider-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
     border-radius: 18px;
}

.slider-image img {
    width: 100%;
    height: 100%;
}

/* Carousel Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 5%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D6DEE4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.indicator.active {
    background-color: #175FF8;
    width: 8px;
    border-radius: 50%;
}

/* Main Content Section */
.main-content {
    max-width: 100%;
    margin: 0;
    background-color: #FFFEF5;
    border: none;
}



/* Section 3: List with Links */
.news-section {
    background-image: url('../img/bg-03.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 50px 100px;
    border-radius: 0;
    min-height: 400px;
    border: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.news-container {
    background-image: url('../img/bg-04.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    gap: 40px;
    padding: 40px 40px;
    max-width: 100%;
    box-sizing: border-box;
    flex: 1;
    height: auto;
    min-height: 300px;
}

.news-item {
    flex: 1;
}

.news-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.news-item li {
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
    background-color: transparent;
    border: none;
  
}

.news-item li a {
     display: block; 
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    width:500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
   
}

.news-item li a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Hosted By Section */
.hosted-by {
    background-color: #FFFEF5;
    padding: 20px 60px;
    margin: 0;
    width: 100%;
    text-align: center;
    border: none;
}

.host-logos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background-color: #FFFEF5;
    position: relative;
}

/* .host-logos h4::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #FFD700;
    opacity: 0.4;
    z-index: 0;
} */

.host-logos h4 {
    color: black;
    width: 120px;
    font-size: 18px;
    margin: 15px 0;
    letter-spacing: 0.5px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* News Header Styles */
.news-header {
    margin-bottom: 0;
    padding: 20px 60px;
    text-align: left;
}

/* .news-header h4::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #FFD700;
    opacity: 0.4;
    z-index: 0;
} */

.news-header h4 {
    color: black;
    width: 140px;
    font-size: 18px;
    margin: 15px 0;
    letter-spacing: 0.5px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
   
    position: relative;
    z-index: 1;
}

.logos-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    
    flex: 1;
   
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        flex: 1 1 auto;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #4285f4;
    }
    
    .slider-item {
        flex-direction: column;
        height: auto;
    }
    
    .slider-content {
        width: 100%;
        padding: 20px;
    }
    
    .slider-image {
        width: 100%;
        position: relative;
        height: 200px;
    }
    
    .news-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .host-logos {
        gap: 20px;
    }
    
    .host-logos img {
        height: 50px;
    }
}