:root {
    --primery: #0C0140;
    --primery-light: #12006F;
    --primery-dark: #040020;
    --secondary: #B10F00;
    --secondary-light: #C40000;
    --secondary-dark: #3d0500;
    --white: #FFFFFF;
    --black: #000000;
    --text: #4E4E4E;
    --gray: #2D2D2D;
    --gradient: linear-gradient(90deg, #A31D03 0%, #EB2303 100%);
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    width: 6px;
    background-color: var(--text);
    border-radius: 8px;
}

body::-webkit-scrollbar-track {
    box-shadow: none
}

body::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    outline: none;
    border-radius: 10px;
}

.top-header-news-slide {
    display: flex;
    overflow-x: visible;
    width: 200%;
    animation: slide 15s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.latestnews-text {
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    transition: 0.4s;
}

.top-header {
    background-color: var(--gray);
    padding: 10px 0;
}

.top-header-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-header-right {
    display: flex;
    text-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.top-header-btn.btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--secondary);
    border: none !important;
    border-radius: 6px;
    padding: 2px 12px;
    text-wrap: nowrap;
    z-index: 6;
    min-width: fit-content;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    max-width: 800px;
}

.latestnews-text:hover {
    color: var(--secondary);
}

.top-header-follow-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}

.follow-icon-link {
    font-size: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--white);
    transition: 0.4s;
}

.top-header-follows {
    display: flex;
    align-items: center;
    gap: 6px;
}

.follow-icon-link:hover {
    -webkit-text-fill-color: transparent;
}

.header-section .navbar-brand .header-logo {
    max-width: 180px;
    width: 100%;
}

.header-section .navbar-brand {
    padding: 0;
}

.header-section {
    min-height: 100px;
}

.header-section .navbar {
    padding: 10px 0;
}

.header-section.header-fix .navbar {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    animation: fadeIn 0.5s ease-in-out;
    box-shadow: 0 4px 6px #ccc;
}

@keyframes fadeIn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-header-contact {
    border: 1px solid var(--primery) !important;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    background: var(--white);
}

.btn-header-contact p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--secondary);
    padding: 4px 24px;
    margin-bottom: 0;
}

.btn-header-contact .contact-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    padding: 6px;
    display: block;
}

.nav-link.header-our-content p {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.nav-link.header-our-content {
    padding: 0;
    cursor: auto;
}

.nav-link.header-our-content p span {
    color: var(--primery);
}

.header-search-section .header-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-section .header-search-form .btn-search {
    font-size: 16px;
    font-weight: 600;
    color: var(--white) !important;
    background: var(--primery);
    border: 1px solid var(--primery);
    text-wrap: nowrap;
    border-radius: 10px;
    padding: 6px 18px;
    min-width: fit-content;
}

.header-search-section .header-search-form input.form-control {
    border-radius: 10px;
    border-color: var(--gray);
    box-shadow: none !important;
}

.hero-content-slider {
    position: relative;
    z-index: 12;
    overflow: hidden;
    border-radius: 10px;
}

.hero-slider-card {
    position: relative;
    z-index: 9;
    width: 100%;
}

.hero-slider-card .hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.hero-slider-card .hero-content .btn-hero-contact {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.hero-slider-card .hero-content .hero-text {
    position: absolute;
    z-index: 2;
    left: 50%;
    width: calc(100% - 60px);
    transform: translateX(-50%);
    top: auto;
    bottom: 40px;
}

.hero-slider-card .hero-content .hero-text .heading {
    text-align: center;
    font-size: 46px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 130%;
}

.hero-content-slider .owl-nav .owl-prev,
.hero-content-slider .owl-nav .owl-next {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white) !important;
    background: #00000060 !important;
    font-size: 16px !important;
    width: 36px;
    height: 26px;
    border-radius: 24px;
    transition: 0.4s;
}

.hero-content-slider .owl-nav .owl-prev {
    left: 12px;
    right: auto;
}

.hero-content-slider .owl-nav .owl-next {
    right: 12px;
    left: auto;
}

.hero-content-slider .owl-nav .owl-prev:hover,
.hero-content-slider .owl-nav .owl-next:hover {
    background-color: #000 !important;
}

.hero-content-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 100%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hero-content-slider .owl-dots .owl-dot span {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 2px;
}

.hero-content-slider .owl-dots .owl-dot {
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 50%;
}

.hero-content-slider .owl-dots .owl-dot.active {
    border-color: var(--white);
    opacity: 1;
}

span.hero-badge {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: var(--secondary);
    border: none !important;
    border-radius: 6px;
    padding: 4px 12px;
    text-wrap: nowrap;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
    animation: fadeInScale 0.6s ease-in-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.article-section {
    background-image: url(../images/article\ bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    background-repeat: no-repeat;
}

.article-section .article-section-head h2 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary);
    text-transform: uppercase;
}

.article-section .article-section-head p {
    font-size: 32px;
    font-weight: 600;
    color: var(--primery);
    text-align: center;
    margin-bottom: 24px;
}

.article-images-section .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.article-images-section .owl-nav .owl-prev,
.article-images-section .owl-nav .owl-next {
    font-size: 20px !important;
    color: var(--primery) !important;
    background: var(--white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 6px 0 #ccc;
    transition: 0.4s;
}

.article-images-section .owl-nav .owl-prev:hover,
.article-images-section .owl-nav .owl-next:hover {
    background-color: var(--primery) !important;
    color: var(--white) !important;
}

.article-images-section .article-image-expand-link {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #ccc, #fff, #ccc);
    border-radius: 20px;
    border: 4px solid #ebebeb;
    padding: 16px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-images-section .owl-item.active{
    overflow: visible;
    position: relative;
    transform: scale(0.9);
    z-index: 4;
}

.article-images-section .owl-item.active.center {
    overflow: visible;
    position: relative;
    transform: scale(1);
    z-index: 5;
}

.footer-section {
    background: url(../images/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;

    .logo-footer {
        display: block;
        max-width: 180px;
    }

    .email-text {
        font-size: 14px;
        margin-top: 10px;
    }

    .email-text a {
        color: red;
        text-decoration: none;
    }

    .footer-desc {
        font-size: 14px;
        color: #555;
        margin-top: 10px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        background: #0a1a44;
        color: #fff;
        text-align: center;
        line-height: 35px;
        border-radius: 50%;
        margin-right: 8px;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: red;
    }

    .footer-title {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        text-decoration: none;
        color: #333;
        transition: 0.3s;
    }

    .footer-links a:hover {
        color: red;
    }

    .contact-item {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        text-decoration: none;
    }

    .contact-item i {
        color: red;
        margin-top: 4px;
    }

    .contact-item p {
        margin: 0;
        font-size: 14px;
        color: #333;
    }

}

.master-section {
    position: relative;
    z-index: 9;
    margin: 24px 0;
}

.latest-news-section {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;position: sticky;
    top: 140px;
}

.latest-news-section .latest-news-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.latest-news-heading {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primery);
}

.latest-news-heading span.heading-light {
    color: var(--secondary);
}

.latest-news-link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--white);
    background: var(--secondary);
    border-radius: 6px;
    padding: 6px 18px;
    text-wrap: nowrap;
}

.latest-news-link-standard {
    text-decoration: none;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.latest-news-link-standard .latest-news-image {
    width: 40%;
}

.latest-news-link-standard .latest-news-content {
    width: 60%;
}

.latest-news-link-standard .latest-news-content .latest-news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.latest-news-link-standard .latest-news-content .latest-news-Time {
    font-size: 12px;
    font-weight: 500;
    color: #6c6c6c;
    margin-bottom: 0;
}

.reel-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    border: 1px solid #ccc;
}

.reel-header {
    color: #fff;
    padding: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.reel-header.insta-header {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.reel-header.youtube-header {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.reel-header.fb-header {
    background: linear-gradient(45deg, #3b5998, #2d487a);
}

.reel-image {
    position: relative;
    width: calc(100% - 20px);
    height: auto;
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
}

.reel-image img {
    width: 100%;
    display: block;
}

.reel-btn {
    width: calc(100% - 60px);
    padding: 12px;
    border: none;
    background: #333;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 auto 10px;
    display: block;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 24px;
}

.reel-btn.youtube-btn {
    background: #ff0000;
}

.reel-btn.fb-btn {
    background: #3b5998;
}

.latest-news-listing {
    overflow-y: auto;
    max-height: 200vh;
    margin-right: 1px;
}

.latest-news-listing::-webkit-scrollbar {
    width: 6px;
    background-color: var(--white);
    border-radius: 8px;
}

.latest-news-listing::-webkit-scrollbar-track {
    box-shadow: none
}

.latest-news-listing::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    outline: none;
    border-radius: 10px;
}


