body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    background-color: #F5F7FA;
    overflow-x: hidden;
    overflow-y: scroll;
}

body.no-scroll {
    position: fixed;
    width: 100%;
}
a{
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* header-section */
.header-section {
    padding: 15px 0px 5px 0px;
    width: 80%;
    margin: 0 auto;
}
.header-section.b{
    display: none;
}
.header-section-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* THIS centers items vertically */
}


.read {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #000;
    margin: 0;
}

.read span {
    font-weight: 600;
}

.news {
    height: 15px;
    width: auto;
}

.menu {
    height: 20px;
    width: auto;
}

.logo {
    height: 25px;
    width: auto;
}

.b-line {
    height: 2px;
    background-color: #000;
    border: none;
    margin: 10px 0px;
    margin-bottom: 6px;
}

.cateagory-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cateagory-section-option {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}

/* welcome-section */
.welcome-section {
    padding: 10px 0px;
    background-color: #1C2839;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.welcome {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #6BD0CD;
    text-transform: uppercase;
}

.dollor-l {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.dollor {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.get {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: "Noto Serif", Georgia, serif;
}

.subscribe-btn {
    margin: 0;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    background-color: #6BD0CD;
    padding: 5px 15px;
    width: auto;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* sidebar */
/* Sidebar Container */
.sidebar {
    position: fixed;
    top: 160px;
    left: -350px;
    width: 350px;
    height: 100vh;
    padding: 20px;
    background-color: #fff;
    border-right: 1px solid #eee;
    transition: left 0.5s ease;
    z-index: 999;
}

.sidebar.active {
    left: 0;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background-color: #f7f9fc;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.search-box input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 8px;
    font-size: 14px;
    outline: none;
}

.search-box .search-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Menu List */
.side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    margin: 10px 0;
}

.side-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

/* Arrow Icon */
.arrow {
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Optional: If you'd like to show submenu on click/hover, JS would be needed */

/* subscribe-popup */
.subscribe-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.subscribe-popup.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    width: 50%;
    text-align: center;
    position: relative;
}

.popup-content h2 {
    margin-bottom: 15px;
    font-size: 20px;
}

.popup-content input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-content button {
    background-color: #1C2839;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
}

.close-popup {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-popup:hover {
    color: #333;
}

/* main-body-section */
.main-body-section {
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.main-body-section-l {
    width: 66.67%;
}

.main-body-section-s {
    width: 33.33%;
}

.two-grid-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    padding: 10px 0px;
}

.grid-section-l {
    width: 67.5%;
}

.grid-section-s {
    width: 32.5%;
}

.grid-section-l,
.grid-section-s {
    display: flex;
    flex-direction: column;
}

.news-section {
    background-color: #fff;
    padding: 15px 20px;
}

.news-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5972;
    padding-bottom: 10px;
}

.main-head {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2933;
    line-height: 2.2rem;
    padding-bottom: 20px;
}

.main-img {
    width: 100%;
    height: auto;
}

.summary {
    font-family: "Noto Serif", Georgia, serif;
    margin: 0;
    font-size: 18px;
    color: #1f2933;
    padding: 10px 0px;
    font-weight: 200;
    line-height: 1.4rem;
}

.date {
    margin: 0;
    font-size: 14px;
    color: #4b5972;
    font-weight: 400;
}

.grid-grey {
    background-color: #E9ECF0;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
}

.three-grid-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    padding: 10px 0px;
}

.grid-three {
    background-color: #fff;
    padding: 15px 20px;
}

.grid-three.g {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: transparent;
    padding: 0;
}

.grid-three.g div {
    background-color: #fff;
    padding: 15px 20px;
}

.grid-three.g .img-wrap {
    padding: 0;
}

.second-main-head {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1f2933;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.latest-news-grid {
    padding: 15px 0px;
}

.mini-head {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2933;
    padding-bottom: 5px;
    line-height: 1.2rem;
}

.img-wrap {
    width: 100%;
    /* Full width of the parent */
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f0f0f0;
}

.grid-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-grid-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.two-grid-box .grid-three {
    width: 50%;
}

.micro-head {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4b5972;
    padding: 10px 0px;
}

.two-grid-box .grid-three:first-child {
    display: flex;
    flex-direction: column;
}

.more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2760d1;
}

/* video-section */
.video-section {
    padding: 25px 0;
    width:80%;
    margin: 0 auto;
}

.grid-main-head {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2933;
}

.title-line {
    border: none;
    height: 0.5px;
    background-color: #e7e7e7;
}

.video-grid-section {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.video-grid-section-l {
    width: 85%;
    height: 520px;
}

.video-grid-section-l img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px;
}

.video-grid-section-s {
    width: 15%;
    height: 520px;
    overflow: hidden;
}

.video-grid-section-mini {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 5px;
    box-sizing: content-box;
}


.video-grid-section-mini {
    overflow-y: auto;
}

.video-grid-section-mini::-webkit-scrollbar {
    width: 6px;
}

.video-grid-section-mini::-webkit-scrollbar-thumb {
    background-color: #7f7f7f;
    border-radius: 4px;
}

.video-mini-grid {
    position: relative;
}

.video-thumb-wrap {
    position: relative;
    width: 100%;
}

.video-minigrid-img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
}

.video-summary {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 3px;
    line-height: 1.2;
}

/* main-body-section */
.partner-content-section {
    padding: 15px 0;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.grid-three.g .news-grid {
    background-color: #fff;
    padding: 15px 0px;
}

/* btn-grid-section */
.btn-grid-section {
    padding: 25px 0;
    width: 80%;
    margin: 0 auto;
}

.btn-two-grid-section {
    display: flex;
    gap: 20px;
    padding: 15px 0px;
}

.btn-two-grid {
    width: 50%;
}

.img-wrap-l {
    width: 100%;
    /* Full width of the parent */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f0f0f0;
}

.img-wrap-l {
    position: relative;
    display: inline-block;
    /* Ensures positioning works correctly */
}

.btn-img-head {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #000;
    padding: 5px 0px;
}

.btn-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-option {
    font-size: 12px;
    margin: 0;
    color: #405070;
    font-weight: 700;
}

.btn-option .b {
    font-weight: 500;
}

.button-section {
    font-size: 12px;
    margin: 0;
    color: #405070;
    font-weight: 700;
    border: 1px solid #405070;
    padding: 5px 10px;
}

.btn-three-grid-section {
    display: flex;
    gap: 20px;
    padding: 15px 0px;
}

.btn-three-grid {
    flex: 1;
}

.popular-section {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    padding: 5px 10px;
    background-color: #A30202;
    display: inline-block;
}

.btn-img-summary {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2rem;
    color: #000;
    display: -webkit-box;
    /* Required for line clamping */
    display: box;
    /* Old spec fallback (not widely used) */
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard (future) support */

    overflow: hidden;
    text-overflow: ellipsis;
}



/* footer */
.site-footer {
    background-color: #f7f9fc;
    color: #1a1a1a;
    padding: 40px 0px;
    font-size: 14px;
    padding-bottom: 20px;
    margin-top: 50px;
}

.footer-top {
    display: flex;
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}
.footer-column p a{
    color: #000;
}
.footer-column h4 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: #1a1a1a;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-middle {
    text-align: center;
    font-size: 12px;
    color: #333;
    margin-bottom: 30px;
}
.footer-middle p a{
    color: #000;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.footer-bottom a {
    color: #1a1a1a;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}







/* Add these new rules to maintain the same styling for links inside paragraphs */
p a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
    text-transform: inherit;
    font-family: inherit;
}

/* Specific cases where we need to maintain the original styling */
.header-section p.read a {
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-section .cateagory-section-option a {
    color: #000;
    text-transform: uppercase;
}

.welcome-section p.welcome a {
    color: #6BD0CD;
    text-transform: uppercase;
}

.welcome-section p.dollor-l a,
.welcome-section p.dollor a {
    color: #fff;
    text-transform: uppercase;
}

.welcome-section p.get a {
    color: #fff;
    font-family: "Noto Serif", Georgia, serif;
}

.welcome-section p.subscribe-btn a {
    color: #000;
    background-color: #6BD0CD;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* For news sections */
.news-title a {
    color: #4b5972;
}

.main-head a,
.second-main-head a,
.mini-head a,
.btn-img-head a {
    color: #1f2933;
}

.summary a {
    color: #1f2933;
    font-family: "Noto Serif", Georgia, serif;
}

.date a,
.micro-head a {
    color: #4b5972;
}

.more a {
    color: #2760d1;
}

/* Footer links */
.footer-column ul li a {
    color: #1a1a1a;
}

/* Popup modal */
.popup-content h2 a {
    color: inherit;
}

.popup-content button a {
    color: #ffffff;
}
.header-section p.read a {
    color: #000;
    display: flex;
    gap: 10px;
    align-items: center;
}
