/* ===== NEWS MARQUEE ===== */
.news-marquee {
    background: linear-gradient(90deg, #1e40af, #3b82f6, #1e40af);
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    position: relative;
}

/* swiper wrapper */
.marquee-swiper {
    background: transparent;
}

/* marquee item */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #fff;
    padding: 10px 0;
    white-space: nowrap;
    opacity: .95;
    transition: all .3s ease;
}

/* hover shine */
.marquee-item:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255,255,255,.4);
}

/* animated dot */
.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 0 12px rgba(250,204,21,.9);
    animation: pulse 1.8s infinite;
}

/* edge fade (premium look) */
.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade.left {
    left: 0;
    background: linear-gradient(to right, #1e40af, transparent);
}

.marquee-fade.right {
    right: 0;
    background: linear-gradient(to left, #1e40af, transparent);
}

/* pulse animation */
@keyframes pulse {
    0% { transform: scale(.8); opacity:.6 }
    50% { transform: scale(1); opacity:1 }
    100% { transform: scale(.8); opacity:.6 }
}

/* responsive text */
@media(max-width: 991px){
    .marquee-item{
        font-size: 20px;
    }
}



 /* team */
.owl-theme .owl-dots {
    display: none !important;
}

/* 2. Carousel ki default margins clear karna */
.owl-carousel {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 3. Section ke niche ka margin clear karna */
#team-carousel {
    margin-top: 10px !important;
}

/* Home Video */
.border-radius-24px { border-radius: 24px; }
.animate-spin-slow { animation: spin 8s linear infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .fancy-text-style-4 { font-size: 2.5rem; }
}


/* innner common page start */
   

     /* innner common page end */

