:root {
    /* Brand Colors */
    --bg1-color: #1A4174;
    --bg2-color: #000000;
    --bg3-color: #ffffff;
    --button-color: #e9292f;
    --text-color: #111928;
    --sub-text: #4b5563;
    --gold-color: #dda83d;
    --text-primary: #1A4174;


    --bg-primary: #FFFFFF;
    --bg-sections: #EAEEF4;


    --para-text: #4B5563;
    --bg-danger: #C81E1E;
    --bg-dark: #010169;
    --strong-black: #141415;
    --bg-light-blue: #0D4ABC;
    --bg-red-dark: #E9292F;



    /* Radius */
    --radius4: 4px;
    --radius8: 8px;
    --radius12: 12px;
    --radius16: 16px;
    --radius24: 24px;
    --radius50: 50px;
    --radius999: 999px;

    /* Spacing */
    --pm4: 4px;
    --pm8: 8px;
    --pm12: 12px;
    --pm16: 16px;
    --pm24: 24px;
    --pm32: 32px;
    --pm48: 48px;
    --pm64: 64px;
}

/* =========================
   Hero Section
========================= */
.btn:hover {
    color: var(--bg3-color) !important;
}

.hero {
    position: relative;
    height: 100%;
    /* min-height: 650px;
    max-height: 700px; */
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.1) 55%,
            rgba(0, 0, 0, 0) 80%);
}

.hero .overlay-bg {
    inset: 0;
    z-index: 0;
}

.overlay-image {
    inset: 0;
    opacity: 0;
    transform: translateX(120px);
    transition: all 1s ease;
}

.overlay-image.active {
    opacity: 1;
    transform: translateX(0) !important;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-image-mobile {
    display: none;
}

.hero .swiper,
.hero .swiper-wrapper {
    height: 100%;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 60px 0;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.swiper-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 700;
    line-height: clamp(44px, 6vw, 50px);
}

.hero-content p {
    max-width: 520px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.hero-content .btn {
    margin-top: 15px;
}

.Indicators {
    position: absolute;
    bottom: 65px;
    left: 50%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    user-select: none;
    transform: translateX(-50%);
}

.numPagination {
    color: #fff;
    font-size: 14px;
}

.numPagination span {
    color: #fff;
}

.custom-indicators {
    display: flex;
    gap: 2px;
    width: 300px;
}

.indicator {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #fff;
}

.hero-nav {
    display: flex;
    gap: 20px;
}

.hero-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.hero-pause span {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.hero-pause:hover {
    border-color: #ff3b3b;
    background: #ff3b3b;
    transform: scale(1.1);
}

.hero-prev,
.hero-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.hero-prev span,
.hero-next span {
    margin: 0;
    color: #fff;
    transition: transform 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    transform: scale(1.1);
}

.hero-prev:hover span {
    transform: translateX(-3px);
}

.hero-next:hover span {
    transform: translateX(3px);
}


@media (max-width: 576px) {

    .hero-wrapper {
        top: -50px;
        left: 50%;
        transform: translate(-50%, 10%);
        padding: 0;
        position: absolute;
    }

    .overlay-image-mobile {
        display: flex;
    }

    .hero-content {
        width: 100% !important;
    }

    .hero .swiper-slide {
        padding: 0;
        align-items: center;
    }

    .Indicators {
        display: none;
    }

    .hero {
        height: 100%;
        max-height: 700px;
    }

    .hero .overlay-bg {
        position: relative;
        display: flex;
    }

    .overlay-image {
        flex: 0 0 100%;
    }

    .overlay-image.active {
        position: relative;
        z-index: 111;
    }

}

/* =========================
   MEDIA & NEWS SECTION
========================= */

/* Title */
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Card */
.news-card {
    border-radius: var(--radius16);
    background: var(--bg-primary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Image */
.news-img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: var(--radius16);
    border-top-right-radius: var(--radius16);
}

/* Meta */
.news-meta {
    font-size: 12px;
    color: var(--sub-text);
}

.meta-dot {
    width: 8px;
    height: 8px;
    background: var(--para-text);
    border-radius: 50%;
    display: inline-block;
}

.meta-source {
    font-weight: 600;
    color: var(--para-text);
    letter-spacing: 0.5px;
}

.meta-date {
    color: var(--sub-text);
}

/* Title */
.news-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Description */
.news-desc {
    font-size: 12px;
    color: var(--para-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Read More */
.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--button-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.read-more:hover {
    color: var(--bg-red-dark);
}

/* Load More Button */
.load-more-btn {
    background: var(--button-color);
    color: var(--bg3-color);
    padding: 10px 28px;
    border: none;
    border-radius: var(--radius8);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.load-more-btn:hover {
    background: var(--bg-red-dark);
}

/* =========================
   Neww News Section 
========================= */
body {
    background: linear-gradient(90deg, rgba(238, 243, 253, 0.3) 0%, rgba(252, 253, 253, 0.3) 100%);
    /* border: 1px solid #D8E4FF; */
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
}

.news-wrapper {
    /* margin-bottom: 10px; */
    background: linear-gradient(90deg, rgba(238, 243, 253, 0.3) 0%, rgba(252, 253, 253, 0.3) 100%);
    /* border: 1px solid #D8E4FF; */
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    padding-bottom: 30px;

}

.main-layout {
    box-shadow: 0 10px 30px rgba(17, 25, 40, 0.12);
}

aside {
    box-shadow: 0 10px 30px rgba(17, 25, 40, 0.12);
}

/* =========================
       HOT SECTION
    ==========================*/

.hot-section {

    padding: 50px;
    padding-bottom: 40px;
}

.section-title {
    background: radial-gradient(71.7% 135.42% at 49.77% 79.17%, #0059CF 0%, #111928 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hot-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 350px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(17, 25, 40, 0.12);
}

.hot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(17, 25, 40, 0.18);
}


.hot-card img {
    width: 100%;
    /* height: 200px; */
    height: 170px;
    object-fit: cover;
    display: block;
}

.hot-content {
    padding: 12px;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    background: var(--bg-red-dark);
    color: #fff;
    font-size: 12px;
    /* font-weight: 700; */
    padding: 2px 7px;
    border-radius: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hot-content h4 {
    /* font-size: 22px; */
    line-height: 1.5;
    height: 100px;
    color: #000;
    font-weight: 500;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--button-color);
    text-decoration: none;
    transition: 0.3s;
}

/* =========================
       MAIN LAYOUT
    ==========================*/

.main-layout {
    position: relative;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

/* =========================
       LEFT CONTENT
    ==========================*/

.india-section {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 20px;
}

.india-heading {
    background: #e9292f;
    color: #fff;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    width: 100%;
}

.featured-news {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.featured-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.featured-left img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.featured-left h2 {
    font-size: 20px;
    line-height: 1.3;
    /* margin: 18px 0 12px; */
    margin-top: 12px;
    color: #111;
}

.featured-left p {
    color: #4B5563;
    line-height: 1.7;
    font-size: 13px;
}

.featured-right .side-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid #fff;
    padding-bottom: 14px;
}

.side-item img {
    width: 110px;
    height: 75px;
    object-fit: cover;
}

.side-item h5 {
    font-size: 14px;
    /* line-height: 1.5; */
    color: #000;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background: #fff;
}

.news-card iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* .news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
} */

.news-card h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 14px;
    color: #111;
}

.news-card h3,
p {
    padding: 10px;
}

.news-card p {
    color: #777;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================
       SIDEBAR
    ==========================*/

.sidebar {
    position: sticky;
    /* width: 320px; */
    top: 20px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 20px;
}

.ad-box {
    background: #ddd;
    height: 250px;
    border-radius: 4px;
}

.sidebar-widget {
    background: #fff;
    padding: 18px;
}

.widget-title {
    background: #e9292f;
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    margin: -18px -18px 18px;
}

.latest-list {
    list-style: none;
}

.latest-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
    cursor: pointer;
    transition: 0.3s;
}

.latest-list li:hover {
    color: #e9292f;
}

.trending-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =========================
       RESPONSIVE
    ==========================*/

@media(max-width:1024px) {

    /* .news-wrapper {
        width: 95%;
    } */

    .hot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .hot-grid {
        grid-template-columns: 1fr;
    }

    .featured-news {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .featured-left h2 {
        font-size: 24px;
    }
}


/* Blog-Articles Css  */

/* =========================
   Breadcrumb
========================= */
.article-breadcrumb-nav {
    padding: 28px 0 0;
}

.article-breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
}

.article-breadcrumb-nav .breadcrumb-item a {
    color: var(--sub-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--bg-red-dark);
}

.article-breadcrumb-nav .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
    color: var(--sub-text);
}

/* =========================
   Article Page
========================= */
.article-page-section {
    padding-bottom: 60px;
}

.article-page {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.article-title-block {
    padding: 28px 0 0;
    text-align: center;
}

.article-title-block h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 600;
    font-family: "Source Serif Pro", serif;
    background: radial-gradient(71.7% 135.42% at 49.77% 79.17%, #0059CF 0%, #111928 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero image */
.article-hero-image {
    margin-top: 28px;
    border-radius: var(--radius16);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 25, 40, 0.12);
}

.article-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Body copy */
.article-body {
    margin: 36px auto 0;
    max-width: 700px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
}

.article-body p {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-body h3 {
    margin: 36px 0 16px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.article-body li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.article-body li p {
    margin: 4px 0 12px;
}

.article-body img {
    display: block;
    width: 100%;
    border-radius: var(--radius8);
    margin: 20px 0;
}

.article-body a {
    color: var(--bg-red-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
}

.article-body a:hover {
    color: var(--bg-dark);
}

.article-footer {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--button-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius999);
    transition: background 0.2s ease, gap 0.2s ease;
}

.back-to-news:hover {
    gap: 12px;
    background: var(--bg-red-dark);
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
    .article-page {
        max-width: 100%;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .article-hero-image img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 576px) {
    .article-title-block h1 {
        font-size: 26px;
    }

    .article-body p,
    .article-body li {
        font-size: 16px;
        line-height: 1.75;
    }
}