body {
    padding-top: 123px; 
}

a{
    text-decoration:none !important;
}
@media (max-width: 768px) {
    body {
        padding-top: 110px; 
    }
}

    /*index page css*/
    
        .fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999; 
      
    }

    .news-header {
        background-color: #111;
        color: #fff;
        text-align: center;
        padding: 20px 10px 20px;
    }

    .news-header h1 {
        font-size: 2.2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
        color: #007bff;
    }

    .news-header span {
        color: #ffcc00;
        font-weight: 600;
    }

@media (max-width: 507px) {
    .news-header .header-inner h1 {
        font-size: 1.4rem !important;
        line-height: 1.2;
        margin-left:30px;
    }

    .news-header .header-inner span {
        font-size: 1.4rem !important;
    }
}

/* Header layout */
.news-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}

/* Circular logo */
.news-logo {
    position: absolute;
    left: 20px;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .news-logo {
        height: 50px;
        width: 50px;
        left: 10px;
    }

    .news-header .header-inner h1 {
        font-size: 1.6rem;
    }
}

    /* Scrollable menu styling */

/* Wrapper for menu and arrows */
.news-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /*background-color: #222;*/
    background-color: #27459e;
}

/* Scrollable menu */
.news-menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

.news-menu::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Webkit browsers */
}

/* Menu links */
.news-menu a {
    flex: 0 0 auto;
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.news-menu a:hover,
.news-menu a.active {
    background-color: #007bff;
    color: #fff;
}

/* Scroll buttons */
.scroll-btn {
    background-color: #ffc107;;
    color: #000;
    border: none;
    font-size: 1.5rem;
    padding: 0 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: none; 
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-menu a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .scroll-btn {
        font-size: 1.2rem;
        padding: 0 8px;
    }
}

    
/*for slider    */
@media (max-width: 991.98px) {
    .main-carousel .position-relative {
        height: 300px !important; 
    }

    .main-carousel img {
        object-fit: cover;
        height: 100%; 
    }
}

.main-carousel .owl-stage-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.main-carousel .owl-stage {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.main-carousel .owl-item img {
    width: 100%;
    display: block;
}


/* Team Card Styling */
.team-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h5 {
  font-size: 1.2rem;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
}

.team-info p {
  margin: 5px 0;
  color: #555;
  font-size: 0.95rem;
}

.social-links a {
  display: inline-block;
  color: #007bff;
  margin: 0 6px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0056b3;
}

.ad-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.ad-card img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.ad-card:hover img {
  transform: scale(1.03);
}

.sparkle-overlay {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: sparkle 3s infinite;
}

@keyframes sparkle {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

.ad-placeholder {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #6c757d;
}

.blinking-stars i {
  margin-left: 5px;
  color: gold;
  font-size: 1rem;
  animation: blink 1.2s infinite alternate;
}

.blinking-stars i:nth-child(2) {
  animation-delay: 0.3s;
}
.blinking-stars i:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0%   { opacity: 0; transform: scale(0.8); }
  50%  { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.8); }
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.video-wrapper h6 {
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .video-wrapper .ratio {
    height: 250px !important;
  }
}


.classified-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
}

.classified-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.classified-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.classified-content {
  padding: 15px;
}

.classified-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #007bff;
}

.video-container {
  position: relative;
  width: 100%;
  height: 380px; 
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card {
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.classified-desc {
  font-size: 0.95rem;
  color: #333;
  margin-top: 5px;
}

.classified-category {
  background: #007bff;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.classified-mobile {
  font-size: 0.85rem;
  color: #555;
}

.social-help-card {
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  background: #f8f9fa;
}
.social-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.social-help-card span {
  font-size: 1rem;
  font-weight: 600;
}

.helpline-number {
  color: green;
  font-weight: bold;
  animation: blink 5s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.short-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.5em; 
}

.news-card:hover {
  transform: translateY(-5px);
}

.social-share a {
  opacity: 0.8;
  transition: 0.2s ease;
}

.social-share a:hover {
  opacity: 1;
  transform: scale(1.1);
}