/* =========================================================
   Page shell
   ========================================================= */
.homepage{
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 0 16px; */
  font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

/* =========================================================
   Layout: main column + ad sidebar
   ========================================================= */
.hp-layout{
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
}

.ad-sidebar{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   Top row: left column (carousel + story grid) + Just In
   ========================================================= */
.hp-top-row{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.left-col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================================================
   Hero carousel
   ========================================================= */
.hero-carousel{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}
.carousel-viewport{
  overflow: hidden;
  border-radius: 8px;
}
.carousel-track{
  display: flex;
  transition: transform .4s ease;
}
.carousel-slide{
  min-width: 100%;
}
.slide-image{
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.slide-title-bar{
  width: 100%;
  background: rgba(0,0,0,.55);
  color: #ffe14d;
  font-size: 26px;
  font-weight: 800;
  padding: 12px 18px;
}
.slide-caption{
  margin: 8px 4px 0;
  font-size: 14px;
  color: #333333;
}
.carousel-counter{
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
}
.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow.prev{ left: 10px; }
.carousel-arrow.next{ right: 10px; }
.carousel-arrow:hover{ background: rgba(0,0,0,.7); }


.carousel-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    padding:10px 0 16px;
}
.carousel-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d6d6d6;
    cursor:pointer;
    transition:.3s;
}

.carousel-dots span.active{
    width:24px;
    border-radius:10px;
    background:#ea5a5a;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-carousel{
        width: 100%;
        max-width: 100%;
        margin: 0 auto;   /* Center the carousel */
    }

    .carousel-viewport{
        width: 100%;
    }

    .carousel-slide{
        min-width: 100%;
    }

    .slide-image{
        height: 220px; /* Smaller height for mobile */
        background-position: center;
    }

    .slide-title-bar{
        font-size: 18px;
        padding: 10px 14px;
    }

    .slide-caption{
        text-align: center;
        font-size: 13px;
        padding: 0 10px;
    }

    .carousel-arrow{
        width: 28px;
        height: 28px;
    }

    .carousel-arrow.prev{
        left: 8px;
    }

    .carousel-arrow.next{
        right: 8px;
    }

    .carousel-counter{
        top: 8px;
        right: 8px;
        font-size: 11px;
    }
}

/* =========================================================
   "Just In" widget
   ========================================================= */
.just-in-widget{
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.just-in-header{
  border-bottom: 2px solid #1a4d8f;
  padding: 10px 14px;
}
.jl-logo{
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
}
.jl-l{ color: #d32f2f; }
.jl-s{ color: #d32f2f; }
.widget-body{
  padding: 10px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-list{
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.news-list li{
  padding: 8px 0;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 14px;
  line-height: 1.4;
}
.news-list li:last-child{ border-bottom: none; }
.news-list a{
  color: #1a1a1a;
  text-decoration: none;
  display: block;
}
.news-list a:hover{ color: #1a4d8f; }
.news-list li.live .live-tag{
  color: #d32f2f;
  font-weight: 700;
  margin-right: 4px;
}
.news-icon{
  margin-left: 6px;
  font-size: 12px;
  color: #1a4d8f;
}
.news-dot{
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #1a4d8f;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}
.news-title{
  font-weight: 700;
  color: #1a1a1a;
}
.news-list a{
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
/* =========================================================
   Story grid — 2 columns, 3 rows, stretched to match
   the Just In widget's height
   ========================================================= */
.story-grid{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
}
.story-card{

        display: flex;
    gap: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    height: 94%;
}
.story-thumb{
  width: 90px;
  flex: 0 0 90px;
  height: auto;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: #e8e8e8;
}
.story-body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.story-title{
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
}
.story-title:hover{ color: #1a4d8f; }
.story-excerpt{
  margin: 0;
  font-size: 12px;
  color: #777777;
}

/* =========================================================
   Image ad banners
   ========================================================= */

/* for vedio csss */

.seen-slide,
.seen-video {
    width: 100%;
    height: 282px;
    border-radius: 8px;
}

.seen-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.seen-video {
    object-fit: cover;
    display: block;
}

.seen-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0,0,0,.6);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* end */

.ad-banner{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: #6a3fb5;
  background-image: linear-gradient(135deg, #7b2ff7, #f107a3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.ad-banner-tall{ height: 220px; }
.ad-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.ad-banner-text{
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
  padding: 0 16px;
}

/* =========================================================
   "Have you seen these?" mini carousel widget
   ========================================================= */
.seen-these-widget{
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: auto;
}
.seen-these-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e0e0e0;
}
.seen-these-header .widget-title{
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.mini-carousel-nav{
  display: flex;
  align-items: center;
  gap: 6px;
}
.mini-arrow{
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  color: #999999;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-arrow:hover{ color: #d32f2f; }
.mini-counter{
  font-size: 11px;
  color: #999999;
  font-weight: 600;
}
.seen-these-body{
  padding: 0;
  overflow: hidden;
}
.seen-these-body .carousel-viewport{ border-radius: 0; }
.seen-slide{
  position: relative;
  height: 282px;
  background-size: cover;
  background-position: center;
  background-color: #d8d0f0;
  display: flex;
  align-items: flex-end;
}
.seen-caption{
  background: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 14px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* =========================================================
   RESPONSIVE — mobile order rule (must follow):
   1. carousel  2. Just In  3. first image ad  4. story grid
   ========================================================= */
@media (max-width: 900px){

  /* flatten wrapper elements so their children become direct
     flex items of .hp-layout and can be freely reordered */
  .hp-layout{
    display: flex;
    flex-direction: column;
  }
  .main-col,
  .hp-top-row,
  .left-col,
  .ad-sidebar{
    display: contents;
  }

  .hero-carousel   { order: 1; }
  .just-in-widget  { order: 2; }
  .ad-banner:not(.ad-banner-tall){ order: 3; }
  .story-grid      { order: 4; }

  /* remaining sidebar items fall after the required order */
  .ad-banner-tall     { order: 5; }
  .seen-these-widget  { order: 6; }

  .left-col{ gap: 0; }

  .story-grid{
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 14px;
  }
  .story-card{ height: 80px; }

  .slide-image{ height: 220px; }
  .slide-title-bar{ font-size: 20px; }
}



/* this is for CHS connects sections start */


.photo-gallery-section{
    max-width: 1300px;
    margin: 25px auto;
    padding: 0 15px;
    box-sizing: border-box;
}


/* ==========================
   Ribbon Heading
========================== */

.section-title{
    display:inline-block;
    background:#005fa9;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:6px 18px;
    position:relative;
    margin-bottom:12px;
    margin-top:18px;
}

.section-title:after{
    content:"";
    position:absolute;
    right:-18px;
    top:0;
    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
    border-left:18px solid #005fa9;
}

.Asection-title{
    display:inline-block;
    background:#005fa9;
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:6px 18px;
    position:relative;
    margin-bottom:12px;
    margin-top:2px;
}

.Asection-title:after{
    content:"";
    position:absolute;
    right:-18px;
    top:0;
    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
    border-left:18px solid #005fa9;
}


/* ==========================
   CHS CONNECT
========================== */

.photo-carousel{
    width:100%;
    overflow:hidden;
}

.photo-track{
    display:flex;
    gap:16px;
    width:100%;
    align-items:stretch;
}


/*
|--------------------------------------------------------------------------
| Fixed CHS card size
|--------------------------------------------------------------------------
|
| IMPORTANT:
| Do not use flex:1 here.
| This keeps every card the same width even when
| different amounts of content are uploaded.
|
*/

.photo-slide{
    flex:0 0 calc((100% - 32px) / 3);
    width:calc((100% - 32px) / 3);
    min-width:0;
    max-width:calc((100% - 32px) / 3);
    box-sizing:border-box;
}


/* Card */

.photo-card{
    display:flex;
    flex-direction:column;

    width:100%;
    height:100%;
    min-height:368px;

    text-decoration:none;
    background:#fff;
    border:1px solid #ddd;
    border-radius:4px;
    overflow:hidden;

    box-sizing:border-box;
}


/* Fixed image size */

.photo-img{
    width:100%;
    height:320px;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    flex:0 0 320px;
}


/* Content */

.photo-content{
    display:flex;
    flex-direction:column;

    width:100%;
    min-height:48px;

    padding:10px;
    box-sizing:border-box;

    flex:0 0 48px;
}


/* Same height title */

.photo-title{
    width:100%;
    height:48px;
    min-height:48px;
    max-height:48px;

    font-size:14px;
    font-weight:600;
    color:#222;
    line-height:1.4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
    box-sizing:border-box;
}


/*
.photo-card:hover{
    background:#004b85;
}
*/


/* ==========================
   CHS MOBILE
========================== */

@media(max-width:768px){

    .photo-carousel{
        width:100%;
        overflow:hidden;
    }

    .photo-track{
        gap:0;
        width:100%;
        transition:.4s ease;
    }

    /*
    On mobile only one card is shown.
    */

    .photo-slide{
        flex:0 0 100%;
        width:100%;
        min-width:100%;
        max-width:100%;
    }

    .photo-card{
        width:100%;
        min-height:308px;
    }

    .photo-img{
        height:260px;
        flex:0 0 260px;
    }

    .photo-content{
        flex:0 0 48px;
        min-height:48px;
    }

    .photo-title{
        height:48px;
        min-height:48px;
        max-height:48px;
    }

    .photo-dots{
        display:flex;
        justify-content:center;
        gap:8px;
        margin-top:15px;
    }

    .photo-dots span{
        width:10px;
        height:10px;
        background:#ccc;
        border-radius:50%;
        cursor:pointer;
        transition:.3s;
    }

    .photo-dots span.active{
        width:24px;
        border-radius:20px;
        background:#005fa9;
    }
}


/* ==========================
   STORIES
========================== */

.story-cards{
    display:block;

    width:100%;
    min-height:164px;
    max-height:164px;

    text-decoration:none;
    border:1px solid #ddd;
    border-radius:4px;
    overflow:hidden;
    background:#fff;

    box-sizing:border-box;
}


/* Fixed story image */

.story-img{
    width:100%;
    height:120px;
    min-height:120px;
    max-height:120px;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    box-sizing:border-box;
}


/* Fixed story title area */

.story-titles{
    width:100%;
    height:42px;
    min-height:42px;
    max-height:42px;

    font-size:13px;
    color:#222;
    font-weight:700;
    padding:10px 14px;

    line-height:1.4;

    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    box-sizing:border-box;
}


/* ==========================
   RIGHT IMAGE
========================== */

.seen-card{
    display:block;
    width:100%;

    border:1px solid #ddd;
    border-radius:5px;
    overflow:hidden;
    background:#fff;

    margin-top:2px;

    box-sizing:border-box;
}

.custom-column {
    position:relative;
    left:10px;
}

@media (max-width:991.98px) {

    .custom-column {
        left:0 !important;
    }

}


/* Right image */

.seen-img{
    width:100%;
    height:240px;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


/* ==========================
   Useful Page
========================== */

.useful-box{
    position:relative;

    margin-top:30px;
    padding:18px 10px 12px;

    border:2px solid #7b79ea;
    border-radius:4px;

    background:#eef0ff;

    box-sizing:border-box;
}


/* Blue heading */

.useful-heading{
    position:absolute;

    top:-18px;
    left:-2px;

    background:#003fc7;
    color:#fff;

    padding:4px 10px;

    font-size:16px;
    font-weight:700;
    line-height:1;

    border-radius:2px;
}


/* Links wrapper */

.useful-links{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}


/* Individual tag */

.useful-item{
    display:flex;
    align-items:center;

    background:#fff;
    color:#222;

    text-decoration:none;

    padding:5px 10px;

    font-size:14px;
    font-weight:500;

    line-height:1;

    border-radius:2px;

    transition:.25s;
}

.useful-item:hover{
    background:#0a5db7;
    color:#fff;
}


/* Diamond */

.diamond{
    width:8px;
    height:8px;

    background:#d9d9d9;

    transform:rotate(45deg);

    margin-right:8px;

    flex-shrink:0;
}


/* ==========================
   Mobile Useful Page
========================== */

@media(max-width:768px){

    .useful-item{
        font-size:13px;
        padding:5px 8px;
    }

    .useful-heading{
        font-size:15px;
    }

}


/* ==========================
   Tablet / Smaller Desktop
========================== */

@media(max-width:991px){

    .seen-img{
        height:250px;
    }

    .useful-page-box{
        margin-top:20px;
    }

}


/* this is for CHS connects sections End */


/* =========================================================
   Thane / Mumbai / Navi Mumbai section
   ========================================================= */
.news-section{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}
.news-section *,
.news-section *::before,
.news-section *::after{
    box-sizing: border-box;
}
.news-section > .row{
    margin: 0;
}
.news-section > .row > [class*="col-"]{
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
}
.emtyspacecover{
    margin-bottom: 0;
}
@media (min-width: 992px){
    .emtyspacecover{
        margin-bottom: -122px !important;
    }
}
/* =========================================================
   Location Tabs
   ========================================================= */
.location-tabs-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}
.location-tabs-wrapper::-webkit-scrollbar{
    display: none;
}
.location-tabs{
    display: flex;
    flex-wrap: nowrap !important;
    width: max-content;
    min-width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    border-bottom: 2px solid #1b75bb;
}
.location-tabs .nav-item{
    flex: 0 0 auto;
    border-right: 1px solid #ddd;
}
.location-tabs .nav-item:last-child{
    border-right: none;
}
.location-tabs .nav-link{
    display: block;
    padding: 10px 16px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    transition: .3s;
}
.location-tabs .nav-link:hover{
    background: #f5f5f5;
}
.location-tabs .nav-link.active{
    color: #005da8;
    border-bottom: 3px solid #005da8;
    background: #fff;
}
.location-tabs-wrapper::after{
    content: "\2192";
    position: sticky;
    right: 0;
    top: 0;
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-left: 1px solid #ddd;
    color: #000;
    font-size: 26px;
    font-weight: 900;
    pointer-events: none;
}
/* =========================================================
   News Wrapper
   ========================================================= */
.news-wrapper{
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    padding: 8px;
    margin: 5px 0 15px;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}
.news-wrapper .row{
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.news-wrapper [class*="col-"]{
    min-width: 0;
}
/* =========================================================
   Featured News
   ========================================================= */
.featured-news{
    display: block;
    width: 100%;
    max-width: 100%;
    text-decoration: none;
    color: #222;
    min-width: 0;
}
.featured-news img{
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}
.featured-news h5{
    margin: 12px 0 8px;
    color: #2b6eb7;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.featured-news p{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}
/* =========================================================
   Side News
   ========================================================= */
.side-news{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}
.news-item{
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
    margin-bottom: 18px;
    text-decoration: none;
    color: #222;
    overflow: hidden;
}
.news-item img{
    width: 110px;
    min-width: 110px;
    height: 80px;
    object-fit: cover;
    flex: 0 0 110px;
    border-radius: 3px;
}
.news-item > div{
    flex: 1 1 auto;
    width: 0;
    min-width: 0;
    overflow: hidden;
}
.news-item h6{
    width: 100%;
    max-width: 100%;
    margin: 0 0 6px;
    color: #2b6eb7;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.news-item p{
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}
/* =========================================================
   More Button
   ========================================================= */
.news-wrapper .text-right{
    max-width: 100%;
    overflow: hidden;
}
/* =========================================================
   Advertisement
   ========================================================= */
.ads-box{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.ads-box img{
    width: 100%;
    max-width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    border: 1px solid #ddd;
}
/* =========================================================
   Tablet
   ========================================================= */
@media (max-width: 991px){
    .featured-news img{
        width: 100%;
        height: 220px;
    }
    .news-item{
        margin: 20px 0 15px;
    }
    .ads-box{
        margin-top: 20px;
    }
}
/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 767px){
    .news-section{
        padding: 0;
        overflow-x: hidden;
    }
    .news-wrapper{
        padding: 8px;
        overflow: hidden;
    }
    .featured-news img{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .featured-news h5{
        font-size: 18px;
        line-height: 1.35;
    }
    .featured-news p{
        font-size: 14px;
        line-height: 1.5;
    }
    .news-item{
        width: 100%;
        max-width: 100%;
        gap: 10px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    .news-item img{
        width: 90px;
        min-width: 90px;
        height: 65px;
        flex: 0 0 90px;
    }
    .news-item > div{
        width: 0;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }
    .news-item h6{
        font-size: 15px;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .news-item p{
        font-size: 13px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .ads-box{
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    .ads-box img{
        width: 100%;
        height: 226px;
        bottom: 24px;
        position: relative;
    }
}
/* =========================================================
   Very Small Mobile
   ========================================================= */
@media (max-width: 400px){
    .news-wrapper{
        padding: 6px;
    }
    .news-item{
        gap: 8px;
    }
    .news-item img{
        width: 78px;
        min-width: 78px;
        height: 58px;
        flex-basis: 78px;
    }
    .news-item h6{
        font-size: 14px;
    }
    .news-item p{
        font-size: 12px;
    }
    .featured-news h5{
        font-size: 17px;
    }
    .featured-news p{
        font-size: 13px;
    }
}
/* =========================================================
   End
   ========================================================= */



/* sssllliddding startsss hereee */

/* ===============================
   Advertisement
================================ */

.ad-card{
    display:block;
    overflow:hidden;
    border-radius:8px;
    border:1px solid #ddd;
    background:#fff;
}

.ad-card img{
    width:100%;
    height:215px;
    object-fit:cover;
    display:block;
}

/* ===============================
   Astrology
================================ */
/* Default (Mobile & Tablet) */
.astrology-column{
    position:static;
    bottom:auto;
}

/* Laptop & Desktop only */
@media (min-width:992px){
    .astrology-column{
        transform: translateY(-145px);
    }
}


.astro-box{

    border:1px solid #e3e3e3;
    border-radius:8px;
    background:#fff;
    overflow:hidden;
}

.astro-item{

    display:flex;
    align-items:flex-start;
    gap:10px;

    padding:8px;

    text-decoration:none;
    color:#222;

    border-bottom:1px solid #ececec;

    transition:.3s;
}

.astro-item:hover{

    background:#fafafa;
}

.astro-item:last-child{

    border-bottom:none;
}

.astro-item img{

    width:95px;
    height:68px;

    object-fit:cover;

    border-radius:4px;

    flex-shrink:0;
}

.astro-content{

    flex:1;
}

.astro-content h6{

    color:#1f5ca9;

    font-size:14px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:5px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

.astro-content p{

    color:#555;

    font-size:13px;

    line-height:1.5;

    margin:0;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* ===============================
   Carousel
================================ */

.carousel-item{

    transition:transform .6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next{

    width:8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-size:60%;
}

/* ===============================
   Responsive
================================ */

@media(max-width:991px){

    .ad-card{

        margin-bottom:15px;
    }

    .ad-card img{

        height:170px;
    }

    .astro-item img{

        width:90px;
        height:65px;
    }

}

@media(max-width:576px){

    .ad-card img{

        height:150px;
    }

    .astro-content h6{

        font-size:14px;
    }

    .astro-content p{

        font-size:12px;
    }

}

/* sliddding enddddd heeereee */

/*==============================
    MOST READ
===============================*/

.most-read-box{

    border:1px solid #e3e3e3;
    border-radius:6px;
    background:#fff;
    padding:14px;
    margin-right: -15px;
}

.most-read-heading{

    font-size:26px;
    font-weight:700;
    /* margin-bottom:12px; */
    color:#111;
}

.most-read-heading span{

    color:#000;
}

.most-read-heading small{

    color:#666;
    font-size:18px;
}

.most-read-item{

    display:flex;
    gap:10px;

    text-decoration:none;
    color:#222;

    border:1px solid #ececec;
    border-radius:4px;

    padding:6px;

    margin-bottom:8px;

    transition:.3s;
}

.most-read-item:hover{

    background:#fafafa;
}

.most-read-image{

    position:relative;

    flex-shrink:0;
}

.most-read-image img{

    width:72px;
    height:55px;

    object-fit:cover;

    border-radius:4px;
}

.read-count{

    position:absolute;

    right:-5px;
    bottom:-5px;

    width:22px;
    height:22px;

    background:#ff1f7a;

    color:#fff;

    border-radius:50%;

    font-size:13px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #fff;
}

.most-read-content{

    font-size:12px;

    font-weight:600;

    line-height:1.2;

    color:#222;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* Mobile */

@media(max-width:991px){

    .most-read-heading{

        font-size:24px;
    }

    .most-read-image img{

        width:80px;
        height:60px;
    }

    .most-read-content{

        font-size:14px;
    }

}


/* End */


/* Health and Wellness, Job and Career, Real Estate sections start here */


.news-portal {
    --ribbon-blue: #1b4d89;
    --ribbon-blue-dark: #123152;
    --link-blue: #1a5fb4;
    --link-blue-hover: #0d3c78;
    --text-gray: #444;
    --border-gray: #e1e4e8;
    --box-bg: #fff;
    --page-bg: #f2f3f5;

    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text-gray);
    padding: 15px;
}

.news-portal * {
    box-sizing: border-box;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}


/* Tablet */

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media (max-width: 560px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-box {
    background: var(--box-bg);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.news-box__ribbon {
    position: relative;

    background: var(--ribbon-blue);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    padding: 8px 14px 8px 12px;

    display: inline-flex;
    align-items: center;

    margin: 10px 0 0 0;
    width: fit-content;

    border-radius: 0 3px 3px 0;
}

.news-box__ribbon::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    border-width: 6px 6px 0 0;
    border-style: solid;
    border-color: var(--ribbon-blue-dark) transparent transparent transparent;
}

.news-box__body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-box__thumb {
    display: block;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 5 / 3;
    background: #eee;
}

.news-box__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.news-box__thumb:hover img {
    transform: scale(1.04);
}

.news-box__headline {
    color: var(--link-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.news-box__headline:hover {
    color: var(--link-blue-hover);
    text-decoration: underline;
}

.news-box__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-box__list li {
    position: relative;
    padding-left: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.news-box__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ribbon-blue);
}

.news-box__list a {
    color: #000;
    text-decoration: none;
}

.news-box__list a:hover {
    text-decoration: underline;
    color: #000;
}

.news-box__body--cardlist {
    gap: 12px;
}

.card-item {
    display: flex;

    gap: 10px;

    text-decoration: none;
    color: inherit;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--border-gray);
}

.card-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.card-item__thumb {
    width: 56px;
    height: 56px;

    object-fit: cover;

    border-radius: 4px;

    flex-shrink: 0;

    background: #eee;
}

.card-item__text {
    display: flex;
    flex-direction: column;

    gap: 2px;

    min-width: 0;
}

.card-item__headline {
    color: var(--link-blue);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.card-item:hover .card-item__headline {
    text-decoration: underline;
    color: var(--link-blue-hover);
}

.card-item__excerpt {
    color: #777;

    font-size: 12px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* Health and Wellness, Job and Career, Real Estate sections End here */



/* Last section */

.share-cta {
    --cta-bg: #e9f1fb;
    --cta-illustration-bg: #d9e8f8;
    --cta-heading: #16264a;
    --cta-body: #5c6b84;
    --cta-primary: #1f6f4a;
    --cta-primary-hover: #175838;
    --cta-secondary: #2a1f5e;
    --cta-secondary-hover: #1e1645;

    display: flex;
    align-items: stretch;
    gap: 32px;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
    padding: 32px;

    background: var(--cta-bg);
    border-radius: 20px;

    box-sizing: border-box;
}


/* Illustration */

.share-cta__illustration {
    flex: 0 0 220px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
}

.share-cta__illustration-inner {
    width: 100%;
    aspect-ratio: 1 / 1;

    background: var(--cta-illustration-bg);
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.share-cta__figure {
    width: 55%;
}

.share-cta__figure-head {
    fill: #9dc3ea;
}

.share-cta__figure-body {
    fill: #4f86c6;
}

.share-cta__caption {
    font-size: 12px;
    color: var(--cta-body);
}


/* Content */

.share-cta__content {
    flex: 1;
    min-width: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 20px;
}


/* Heading */

.share-cta__heading {
    margin: 0;

    font-size: 26px;
    line-height: 1.3;

    color: var(--cta-heading);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 8px;

    min-width: 0;
}

.share-cta__heading span {
    min-width: 0;
}


/* Features */

.share-cta__features {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    gap: 12px;

    width: 100%;
}

.share-cta__feature {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    min-width: 0;
    width: 100%;
}

.share-cta__feature-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
}

.share-cta__feature-icon svg {
    width: 16px;
    height: 16px;
}

.share-cta__feature-icon--share {
    background: #1f6f4a;
}

.share-cta__feature-icon--bell {
    background: #2f6fd6;
}

.share-cta__feature-icon--users {
    background: #c22a72;
}


/* Feature text */

.share-cta__feature-text {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.share-cta__feature-text strong {
    font-size: 15px;
    color: var(--cta-heading);
    font-weight: 700;

    line-height: 1.3;
}

.share-cta__feature-text span:last-child {
    font-size: 13px;
    color: var(--cta-body);

    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* Actions */

.share-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 4px;

    width: 100%;
}

.share-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 19px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        transform 0.1s ease;
}

.share-cta__btn:active {
    transform: scale(0.98);
}

.share-cta__btn--primary {
    background: var(--cta-primary);
    color: #fff;
}

.share-cta__btn--primary:hover {
    background: var(--cta-primary-hover);
}

.share-cta__btn--secondary {
    background: var(--cta-secondary);
    color: #fff;
}

.share-cta__btn--secondary:hover {
    background: var(--cta-secondary-hover);
}


/* Social icons */

.share-cta__socials {
    display: flex;
    align-items: center;

    gap: 8px;
    margin-left: 4px;
}

.share-cta__social {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.share-cta__social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social--whatsapp {
    background: #25a75a;
}

.social--facebook {
    background: #2374e1;
}

.social--instagram {
    background: #d62976;
}

.social--twitter {
    background: #1a8fd1;
}

.social--youtube {
    background: #e02525;
}


/* Tablet */

@media (max-width: 860px) {

    .share-cta {
        gap: 24px;
        padding: 28px;
    }

    .share-cta__illustration {
        flex: 0 0 180px;
    }

    .share-cta__heading {
        font-size: 22px;
    }
}


/* Mobile */

@media (max-width: 640px) {

    .share-cta {
        width: 100%;
        max-width: 100%;

        flex-direction: column;
        align-items: center;

        gap: 24px;

        padding: 24px 16px;

        border-radius: 16px;

        box-sizing: border-box;
    }


    /* Illustration */

    .share-cta__illustration {
        flex: 0 0 auto;

        width: 150px;
        max-width: 100%;
    }


    /* Content */

    .share-cta__content {
        width: 100%;
        max-width: 100%;

        align-items: stretch;

        min-width: 0;
    }


    /* Heading */

    .share-cta__heading {
        width: 100%;

        font-size: 20px;
        line-height: 1.35;

        justify-content: center;
        text-align: center;

        flex-direction: row;
        flex-wrap: wrap;

        gap: 4px;

        white-space: normal;
        overflow: visible;
    }


    /* Features */

    .share-cta__features {
        width: 100%;
    }

    .share-cta__feature {
        width: 100%;

        text-align: left;

        align-items: flex-start;
    }

    .share-cta__feature-text {
        min-width: 0;
        flex: 1;
    }


    /* Buttons */

    .share-cta__actions {
        width: 100%;

        justify-content: center;
    }


    /* Social icons */

    .share-cta__socials {
        margin-left: 0;

        width: 100%;

        justify-content: center;
    }
}


/* Small mobile */

@media (max-width: 380px) {

    .share-cta {
        padding: 20px 12px;
    }

    .share-cta__heading {
        font-size: 18px;
    }

    .share-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .share-cta__btn {
        width: 100%;
    }

    .share-cta__socials {
        margin-top: 4px;
    }
}

