@import url('https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mukta Malar", sans-serif;
}

body {
    background: white;
    color: #222
}

.subdomain-container {
    background-color: #F5F6FA;
}

.subdomain {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
}

.vhr {
    margin: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-color: rgba(145, 158, 171, 0.24);
    border-bottom-width: 0;
    margin-top: 4px;
    margin-bottom: 4px;
    border-right-width: thin;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    margin-left: 2.4px;
    margin-right: 2.4px;
    border-style: solid;
    border-top-width: 0;
    border-right-width: 1px;
    border-bottom-width: 0;
    border-left-width: 0;
    border-image: linear-gradient(to bottom, transparent, #096dd2, transparent) 1 100%;
}

.vhr-2 {
    margin: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-color: rgba(145, 158, 171, 0.24);
    border-bottom-width: 0;
    margin-top: 4px;
    margin-bottom: 4px;
    border-right-width: thin;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    margin-left: 2.4px;
    margin-right: 2.4px;
    border-style: solid;
    border-top-width: 0;
    border-right-width: 1px;
    border-bottom-width: 0;
    border-left-width: 0;
    border-image: linear-gradient(to bottom, transparent, #FFFFFF, transparent) 1 100%;
}

.subdomain-item {
    margin: 0px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subdomain-item a {
    text-decoration: none;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 10px;
    margin: 0 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.subdomain-item svg {
    width: 16px;
    height: 16px;
    margin-top: -1px;
    color: #096dd2;
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* Top Strip */
.top-strip {
    background: #c40000;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative
}

.top-strip span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 20s linear infinite;
    font-size: 14px
}

@keyframes scrollText {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

/* Header */
header {
    background: #0e6c82;
    color: #fff;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo img {
    width: 200px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

nav li {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

nav li:hover {
    color: #ffcc00;
}

.active {
    color: #ffcc00;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer
}

/* Sidebar */

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    color: #000000;
    padding: 20px;
    transition: left 0.35s ease;
    z-index: 9999;
}

.sidebar.active {
    left: 0;
}

.sidebar-menu {
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 22px;
}

.sidebar-menu a {
    font-size: 16px;
    text-decoration: none;
}

.top-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.sidebar-close {
    font-size: 28px;
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
}

.sidebar-overlay.active {
    display: block;
}

/* Sidebar */

/* Hero */
.hero {
    background: linear-gradient(120deg, #111, #444);
    color: #fff;
    padding: 0px;
    text-align: center;
}

.hero img {
    width: 100%;
    display: block;
}

.hero .mobile-logo {
    display: none;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px
}

.hero p {
    opacity: 0.85
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px
}

.section h2 {
    margin-bottom: 15px;
    border-left: 5px solid #c40000;
    padding-left: 10px;
}

/* 3 Column Grid for Other Sections */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

/* Featured News Layout */
.featured-layout {
    display: flex;
    gap: 20px;
}

.top-news {
    display: flex;
    gap: 10px;
}

.featured-news {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    animation: fadeUp .6s ease both
}

.featured-news img {
    width: 100%;
    object-fit: cover
}

.featured-content {
    padding: 15px
}

.featured-content h3 {
    margin-bottom: 8px
}

.featured-content p {
    color: #555;
    line-height: 1.5
}

.card-below {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment {
    display: flex;
    gap: 4px;
    align-items: center;
}

.card-below span {
    font-size: 14px;
    color: #555;
}

/* Additional News Listing below Featured */
.more-news {
    margin-top: 15px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px
}

.more-news-side {
    margin-top: 15px;
    display: grid;
    grid-template-columns: auto;
    gap: 12px
}

.more-news-item {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    animation: fadeUp .6s ease both
}

.more-news-item img {
    width: 150px;
    object-fit: cover;
    border-radius: 5px
}

.more-news-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.more-news-item p {
    font-size: 14px;
    color: #666
}

/* Side News List */

.Advertisement {
    width: 300px;
    min-height: 250px;
    background: #cbcbcb;
    margin: auto;
}

.Adhorizontal {
    width: 728px;
    min-height: 90px;
    background: #cbcbcb;
    margin: auto;
}

.Advertisement span,
.Adhorizontal span {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 14px;
}

/* Common News Cards */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    animation: fadeUp .6s ease both
}

.card-2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    animation: fadeUp .6s ease both
}

.card:hover,
.card-2:hover {
    transform: translateY(-6px)
}

.card img {
    width: 100%;
    object-fit: cover
}

.card-2 img {
    width: 200px;
    height: 100%;
}

.video-icon {
    padding: 12px;
    background-color: #096dd2;
    border-radius: 50%;
    width: fit-content;
    position: absolute;
    top: 45%;
    left: 45%;
    height: 72px;
}

.card-2:hover .video-icon-small {
    opacity: 1;
}

.video-icon-small {
    padding: 8px;
    background-color: #096dd2;
    border-radius: 50%;
    width: fit-content;
    position: absolute;
    bottom: 12px;
    left: 12px;
    height: 36px;
    opacity: 0.6;
}

.video-icon-small svg {
    width: 20px;
    height: 20px;
}

.card-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.card h3 {
    font-size: 18px;
}

.card-2 h3 {
    font-size: 14px;
}


/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.buttons {
    margin: 8px auto;
}

.more-button {
    border: 1px solid #0e6c82;
    color: #0e6c82;
    display: block;
    width: fit-content;
    margin: auto;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.more-button:hover {
    background-color: #0e6c82;
    color: white;
}

.share-wrapper {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px auto;
}

/* Share count */
.share-count {
    text-align: center;
    min-width: 60px;
    font-size: 16px;
    color: #666;
}

.share-count p {
    display: block;
    font-size: 18px;
    color: #111;
}

/* Buttons container */
.share-buttons {
    display: flex;
    gap: 10px;
    flex: 1;
}

/* Buttons */
.share-btn {
    flex: 1;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.share-btn:hover {
    opacity: 0.9;
}

/* Brand colors */
.fb {
    background: #4267B2;
}

.x {
    background: #000;
}

.wa {
    background: #25D366;
}

.tg {
    background: #0088cc;
}


/* Footer */
.footer {
    padding-top: 20px;
    background-color: #f5f6fa;
}

.logo-social {
    max-width: 1300px;
    display: flex;
    justify-content: center;
    margin: auto;
    padding-left: 128px;
    padding-right: 128px;
}

.logo-social div {
    flex-basis: 50%;
}

.socials p {
    margin-bottom: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #212B36;
    font-family: Roboto, sans-serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    margin: 0 1.5px;
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    background: linear-gradient(0deg, #d3d0d0, #fff);
    transition: .8s;
}

.social-icon div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #fff, #ddd);
    font-size: 18px;
    transition: .9s;
    border-radius: 50%;
    color: grey;
}

.social-icon .faceBook:hover {
    color: #3b5998;
    transform: scale(104%);
}

.social-icon .twitter:hover {
    color: #000000;
    transform: scale(104%);
}

.social-icon .instagram:hover {
    color: #c32aa3;
    transform: scale(104%);
}

.social-icon .youTube:hover {
    color: #ff0000;
    transform: scale(104%);
}

.social-icon .teleGram:hover {
    color: #0088cc;
    transform: scale(104%);
}

.social-icon .pinterest:hover {
    color: #bd081c;
    transform: scale(104%);
}

.social-icon .google:hover {
    color: #4285f4;
    transform: scale(104%);
}

.social-icon .threads:hover {
    color: #35465d;
    transform: scale(104%);
}

.social-icon .arattai:hover {
    color: #ffdd00;
    transform: scale(104%);
}

.social-icon .mobileApp:hover {
    color: #ff6153;
    transform: scale(104%);
}

hr {
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-color: rgba(145, 158, 171, 0.24);
    border-bottom-width: thin;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 16px;
}

.copyrights {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyrights hr {
    margin: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-bottom-width: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    border-right-width: thin;
    height: 20px;
    border-color: gray;
    margin-left: 16px;
    margin-right: 16px;
}

.copyrights .title {
    margin: 0px 40px 0px 0px;
    color: gray;
    font-weight: 500;
}

.copyrights .link a {
    text-decoration: none;
    color: #808080;
    font-weight: 500;
    font-size: 14px;
}

.video-icon-list {
    padding: 12px;
    background-color: #096dd2;
    border-radius: 50%;
    width: fit-content;
    position: absolute;
    bottom: 45%;
    left: 45%;
    height: 56px;
}

.video-icon-list svg {
    width: 32px;
    height: 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coming-soon {
    width: 100%;
}

.coming-soon img {
    max-width: 500px;
    margin: auto;
    display: block;
    width: 100%;
}

.featured-content h3:hover {
    color: #0e6c82;
}

.more-news-item h4:hover {
    color: #0e6c82;
}

.card h3:hover {
    color: #0e6c82;
}

.card-2 h3:hover {
    color: #0e6c82;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Shorts */

.short-row {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 8px;
}

.short {
    position: relative;
    width: 100%;
}

.short a {
    display: block;
    color: white;
}

.thumb-overlay {
    overflow: hidden;
    border-radius: 8px;
}

.thumb-overlay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 5px;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, .8) 100%);
    transition: all 0.4s ease;
}

.thumb-overlay img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.post-content-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    transition-duration: 0.2s;
    padding-right: 15px;
}

.webstoriesIconreels1 {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-image: url(https://stat.dinamalar.com/new/2024/images/reelsvideo.png) !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px 16px;
}