﻿:root {
    --primary-color: #0067b8;
    --secondary-color: #f2f2f2;
    --accent-color: #ff6a00;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --light-text: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
}

.top-nav {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
}

    .top-nav a {
        color: white;
        text-decoration: none;
    }

.website-header {
    background: linear-gradient(135deg, var(--primary-color), #004a8f);
    color: white;
    padding: 30px 0;
    margin-bottom: 20px;
}

.website-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.website-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

    .carousel-caption h3 {
        font-weight: bold;
        margin-bottom: 10px;
    }

.section-title {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin: 30px 0 20px;
    font-weight: bold;
    color: var(--dark-color);
}

.news-card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s;
    margin-bottom: 20px;
    height: 100%;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .news-card img {
        height: 200px;
        object-fit: cover;
    }

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-text {
    color: var(--light-text);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

    .read-more:hover {
        color: #004a8f;
        text-decoration: underline;
    }

.category-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.trending-news {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
}

.trending-list {
    list-style: none;
    padding: 0;
}

    .trending-list li {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

        .trending-list li:last-child {
            border-bottom: none;
        }

    .trending-list a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
    }

        .trending-list a:hover {
            color: var(--primary-color);
        }

.weather-widget {
    background: linear-gradient(135deg, #0067b8, #0091ff);
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: bold;
}

/*footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: white;
    }*/
.footer-links-row {
    padding: 20px 0px 0px 0px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: white;
        text-decoration: underline;
    }

.copyright {
    padding: 20px 0 10px;
    margin-top: 0;
}

    .copyright p {
        margin: 0;
        color: #aaa;
        font-size: 0.9rem;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-link {
        margin: 0 10px 10px;
        display: inline-block;
    }

    .footer-links-row {
        padding: 20px 0 15px;
    }
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}

.category-section {
    margin-bottom: 30px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .category-header h3 {
        margin: 0;
    }

    .category-header a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

.trending-carousel-item {
    padding: 10px;
}

.trending-carousel-card {
    height: 100%;
    border: none;
    border-radius: 0;
    transition: transform 0.3s;
}

    .trending-carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .trending-carousel-card img {
        height: 150px;
        object-fit: cover;
    }

/* Trending Carousel Controls */
#trendingCarousel .carousel-control-prev,
#trendingCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#trendingCarousel .carousel-control-prev {
    left: -20px;
}

#trendingCarousel .carousel-control-next {
    right: -20px;
}

    #trendingCarousel .carousel-control-prev:hover,
    #trendingCarousel .carousel-control-next:hover {
        opacity: 1;
        background-color: #004a8f;
    }

.category-nav {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

    .category-nav h4 {
        margin-bottom: 15px;
        color: var(--primary-color);
    }

.category-list {
    list-style: none;
    padding: 0;
}

    .category-list li {
        margin-bottom: 10px;
    }

    .category-list a {
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .category-list a:hover {
            color: var(--primary-color);
        }

    .category-list i {
        margin-right: 10px;
        color: var(--primary-color);
    }

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .go-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .go-to-top:hover {
        background-color: #004a8f;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }

    .carousel-caption h3 {
        font-size: 1.3rem;
    }

    .website-title {
        font-size: 2rem;
    }

    #trendingCarousel .carousel-control-prev {
        left: 10px;
    }

    #trendingCarousel .carousel-control-next {
        right: 10px;
    }
}



/* News Details Page Specific Styles */
.news-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.news-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-date {
    margin-right: 20px;
}

.news-category {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.news-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 5px;
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

    .news-content p {
        margin-bottom: 20px;
    }

.news-video {
    margin: 40px 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.external-link-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}

    .external-link-btn:hover {
        background-color: #004a8f;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .external-link-btn i {
        margin-left: 8px;
    }

.share-section {
    margin: 40px 0;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.share-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

    .share-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}


/*--------------- Photo Gallery -----------------*/
#GalarySection .column-title {
    font-size: 140%;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 20px;
    margin: 10px 20px;
    border-bottom: none;
    text-indent: 10px;
}

    #GalarySection .column-title::first-letter {
        color: #009FEE;
    }

    #GalarySection .column-title:before {
        content: "";
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 2px;
        background: #ebebeb;
    }

    #GalarySection .column-title:after {
        content: "";
        position: absolute;
        width: 18%;
        bottom: 0;
        left: 0%;
        height: 2px;
        background: #009FEE;
    }

#GalarySection .thumb a {
    border-radius: 0px;
    padding: 0px;
    color: Black;
    text-decoration: none;
}

    #GalarySection .thumb a:hover {
        color: #009FEE;
        border-color: #DDDDDD;
    }

#GalarySection .thumbnail img {
    height: 160px;
    width: 100%;
}

#GalarySection .thumbnail h4 {
    text-align: center;
    height: 75px;
    overflow: hidden;
    line-height: 26px;
}

.modal-dialog {
    color: Black;
}

/*---------------------- Video Gallery ------------------*/
#vGalarySection .column-title {
    font-size: 140%;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 20px;
    margin: 10px 20px;
    border-bottom: none;
    text-indent: 10px;
}

    #vGalarySection .column-title::first-letter {
        color: #009FEE;
    }

    #vGalarySection .column-title:before {
        content: "";
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 2px;
        background: #ebebeb;
    }

    #vGalarySection .column-title:after {
        content: "";
        position: absolute;
        width: 18%;
        bottom: 0;
        left: 0%;
        height: 2px;
        background: #009FEE;
    }

#vGalarySection h4:hover {
    color: #009FEE;
    border-color: #DDDDDD;
}

#vGalarySection .thumbnail {
    border-radius: 0px;
    padding: 0px;
}

    #vGalarySection .thumbnail iframe {
        height: 225px;
        width: 100%;
        color: Black;
    }

    #vGalarySection .thumbnail h4 {
        text-align: center;
        height: 75px;
        overflow: hidden;
        line-height: 26px; /*color: white;     background-color:Black;*/
        padding: 10px;
        margin: 0px;
    }

        #vGalarySection .thumbnail h4:hover {
            color: #009FEE;
            border-color: #DDDDDD;
        }



