.marquee-row {
    background: #0369d5; /* FULL ROW COLOR */
    color: #fff;
    padding: 10px 0;
    margin: 0; /* remove unwanted gaps */
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content span {
    white-space: nowrap;
    padding-right: 60px;
    font-size: 14px;
}

.marquee a {
    background: #ffffff;
    color: #0369d5;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 8px;
    transition: 0.3s;
}

.marquee a:hover {
    background: #ffd166;
    color: #000;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}


.nivoSlider {
    height: 65vh; /* screen ke hisaab se adjust hoga */
}

.nivoSlider img {
    height: 65vh;
    width: 100%;
    object-fit: contain; /* image ko container ke andar fit karega */
}


.research-content {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    line-height: 1.9;
    color: #444;
    font-size: 17px;
}

.research-intro,
.research-conclusion {
    text-align: justify;
    margin-bottom: 24px;
    color: #444;
}

.research-intro b,
.research-conclusion b,
.research-list b {
    color: #0d6efd;
    font-weight: 700;
}

.research-list {
    margin: 0 0 30px 25px;
    padding-left: 20px;
}

.research-list li {
    margin-bottom: 18px;
    padding: 14px 18px;
    background: #f8fbff;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    list-style-position: outside;
    text-align: justify;
    transition: all 0.3s ease;
}

.research-list li:hover {
    background: #eef6ff;
    transform: translateX(4px);
}

.research-list li::marker {
    font-weight: 700;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .research-content {
        padding: 25px 20px;
        font-size: 15px;
    }

    .research-list li {
        padding: 12px 15px;
    }
}

.editorial-highlight-box {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 18px;
    border: 1px solid #e8eef7;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.editorial-list {
    margin: 0;
    padding-left: 28px;
    counter-reset: item;
}

.editorial-list > li {
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #f8fbff;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    transition: all 0.3s ease;
}

.editorial-list > li:hover {
    background: #eef6ff;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.editorial-list > li::marker {
    color: #0d6efd;
    font-weight: 700;
}

.editorial-sub-list {
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.editorial-sub-list li {
    margin-bottom: 8px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #555;
    line-height: 1.7;
}

.editorial-sub-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .editorial-highlight-box {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .editorial-list {
        padding-left: 22px;
    }

    .editorial-list > li {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
}

.contact-card-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-heading .sub-title {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-heading .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-heading .section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
    line-height: 1.8;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5edf7;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.10);
}

.contact-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef3f8;
}

.contact-card .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}

.contact-card h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.contact-card .card-body p {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.8;
}

.contact-card .card-body p i {
    width: 20px;
    color: #0d6efd;
    margin-right: 8px;
}

.contact-card .card-body a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-card .card-body a:hover {
    text-decoration: underline;
}

.timing-box {
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    color: #065f46;
    border-radius: 12px;
    padding: 15px 18px;
    margin: 20px 0 25px;
    line-height: 1.7;
}

.timing-box i {
    margin-right: 8px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .section-heading .section-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 22px;
        border-radius: 16px;
    }

    .contact-card h4 {
        font-size: 20px;
    }
}

.template-main-menu ul li.active > a {
    color: #0066cc !important;
    font-weight: 700;
    font-style: italic;
}