﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* ------------------------
    index pages,about common all pages style before login added here 
    --------------------------*/
/*#load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: url("../images/loading.gif") no-repeat center center rgba(0,0,0,0.25);
    margin-top: -85px;
}*/
/*layout style*/
:root {
    --footer-bg: #050505;
    --about-bg: #5b0d24;
    --primary-text: #ffffff;
    --secondary-text: #dddddd;
    --light-text: #f5f5f5;
    --hover-color: #d31f5f;
    --social-bg: #161616;
    --border-color: rgba(255,255,255,.15);
    --header-top-bg: #000000;
    --header-text: #1d1d1d;
    --header-text-light: #5b5b5b;
    --header-primary: #5b0d24;
    --header-primary-light: #ece3e7;
    --header-hover: #7b1234;
    --header-border: #e9e9e9;
    --header-shadow: 0 3px 15px rgba(0,0,0,.08);
    --transition: .3s ease;
    --primary: #7a1f44;
    --primary-dark: #5b0d24;
    --primary-light: #f5e9ef;
    --secondary: #c85c7e;
    --secondary-light: #fceef3;
    --bg-body: #f8f9fb;
    --bg-section: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #1d1d1d;
    --text-heading: #111827;
    --success: #6a8f22;
    --warning: #ff9800;
    --purple: #7b3fa1;
    --info: #0d6efd;
    --transition: 0.3s ease;
    --counter-bg: #00215B;
    --counter-text: #fffcfc;
    --counter-icon: #fffcfc;
    --counter-border: rgba(255,255,255,.15);
    --text: #111827;
    --bg: #ffffff;
}

.top-bar {
    background: var(--header-top-bg);
    padding: 6px 0;
}

.font-btn {
    border: 1px solid #ddd;
    background: #fff;
    width: 40px;
    height: 30px;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.lang-btn {
    border: 1px solid #ddd;
    background: #fff !important;
    width: 40px;
    height: 30px;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.lang-btn {
    width: 85px !important;
}

    .font-btn:hover,
    .lang-btn:hover {
        background: var(--header-primary) !important;
        color: var(--primary-text) !important;
        border: 1px solid var(--header-primary);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(13,110,253,.25);
    }

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1px 14px;
    background: var(--header-primary-light);
    color: var(--footer-bg);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: .3s ease;
}

    .login-btn i {
        font-size: 22px;
    }

    .login-btn:hover {
        background: var(--header-primary);
        color: var(--primary-text);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(13,110,253,.25);
    }

@media (max-width:576px) {
    .login-btn span {
        display: none;
    }

    .login-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

        .login-btn i {
            font-size: 24px;
        }
}

.custom-navbar {
    background: var(--primary-text);
    box-shadow: var(--header-shadow);
}

.logo {
    width: 95px;
    height: auto;
    margin-right: 15px;
    flex-shrink: 0;
}

.logo-text {
    flex: 1;
    min-width: 0;
    text-wrap: wrap;
    overflow: hidden;
}

    .logo-text h4 {
        color: var(--header-text);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .logo-text span {
        color: var(--header-text-light);
        font-size: 14px;
        display: block;
    }

@media (max-width: 992px) {

    .logo {
        width: 75px;
        margin-right: 12px;
    }

    .logo-text h4 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 13px;
    }
}
.navbar-brand {
    width: 500px;
    align-items: center;
}

@media (max-width: 768px) {

    .navbar-brand {
        width: 100%;
        align-items: center;
    }

    .logo {
        width: 60px;
        margin-right: 10px;
    }

    .logo-text h4 {
        font-size: 14px;
        line-height: 1.35;
    }

    .logo-text span {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {

    .logo {
        width: 50px;
    }

    .logo-text h4 {
        font-size: 12px;
    }

    .logo-text span {
        font-size: 10px;
    }
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--header-text) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 10px 18px !important;
    transition: var(--transition) !important;
    border-radius: 8px !important;
}

    .nav-link:hover {
        color: var(--header-primary) !important;
    }

    .nav-link.active {
        background: var(--header-primary-light);
        color: var(--header-primary);
        box-shadow: 0 2px 0 #000;
    }
.dropdown-item.active, .dropdown-item:active {
    background: var(--header-primary-light) !important;
    color: var(--header-primary) !important;
    box-shadow: 0 2px 0 #000;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--header-shadow);
    border-radius: 10px;
}

.dropdown-item {
    padding: 10px 18px;
}

    .dropdown-item:hover {
        background: var(--header-primary);
        color: var(--primary-text);
    }

.navbar-toggler {
    border: none;
    font-size: 32px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media(max-width:991px) {

    .logo {
        width: 70px;
    }

    .logo-text h4 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 12px;
    }

    .navbar-nav {
        margin-top: 20px;
        gap: 0;
    }

    .nav-link {
        padding: 12px !important;
    }
}

@media(max-width:576px) {
    .logo {
        width: 55px;
    }

    .logo-text h4 {
        font-size: 14px;
    }
}

.footer-section {
    background: var(--header-primary-light);
    color: var(--footer-bg);
    position: relative;
    overflow: hidden;
    padding-bottom:50px;
}

    .footer-section::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 150px;
        background-image: url('/images/Contact-banner.png');
        background-repeat: repeat-x;
        background-position: 0 bottom;
        background-size: auto 150px;
        opacity: 0.12;
        pointer-events: none;
        z-index: 1;
        animation: footerWatermarkMove 25s linear infinite;
    }

@keyframes footerWatermarkMove {
    from {
        background-position: 0 bottom;
    }

    to {
        background-position: -1000px bottom;
    }
}
    .footer-section > div {
        position: relative;
        z-index: 2;
    }

.footer-bottom {
    position: relative;
    z-index: 3;
}
.footer-about {
    background: var(--about-bg);
    padding: 35px;
    height: 100%;
}
.footer-logo {
    width: 90px;
    background: var(--primary-text);
    padding: 8px;
    margin-bottom:5px;
}
.footer-about p {
    color: var(--light-text);
    line-height: 1.9;
    margin: 0;
    font-size: 15px;
}
.footer-section h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--footer-bg);
}

.footer-section p {
    color: var(--footer-bg);
    line-height: 1.9;
    font-size: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 18px;
    }

    .footer-links a {
        color: var(--footer-bg);
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 6px;
        }

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-info li {
        display: flex;
        gap: 15px;
        margin-bottom: 12px;
        line-height: 1.8;
    }

    .contact-info i {
        font-size: 20px;
        color: var(--footer-bg);
        min-width: 20px;
    }
.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons a {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #c5bdbd;
        color: var(--footer-bg);
        text-decoration: none;
        font-size: 20px;
        transition: .3s;
    }

        .social-icons a:hover {
            background: var(--primary);
            color: var(--bg-section)
        }
.footer-bottom {
    border-top: 1px solid #cfcece;
    padding: 22px 0;
    text-align: center;
    color: var(--footer-bg);
    font-size: 15px;
}
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: var(--counter-bg);
    color: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .scroll-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        transform: translateY(-4px);
    }

    .scroll-top:hover {
        background: var(--primary);
        color: var(--primary-text);
    }

.visitor-card {
    margin-top: 22px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #c5bdbd;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all .3s ease;
}

    .visitor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    }

.visitor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.visitor-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-text);
    color: var(--header-top-bg);
    border-radius: 10px;
    font-size: 17px;
    transition: all .3s ease;
}

.visitor-item:hover .visitor-icon {
    background: var(--primary);
    color: var(--primary-text);
}

.visitor-content {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

    .visitor-content span {
        font-size: 14px;
        color: var(--footer-bg);
        margin-bottom: 3px;
        font-weight: bold;
    }

    .visitor-content strong {
        font-size: 14px;
        color: var(--footer-bg);
        font-weight: 700;
        white-space: nowrap;
    }

.visitor-divider {
    width: 1px;
    height: 38px;
    background: var(--footer-bg);
    margin: 0 12px;
}

@media (max-width: 576px) {

    .visitor-card {
        padding: 12px;
    }

    .visitor-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .visitor-content strong {
        font-size: 12px;
    }

    .visitor-divider {
        margin: 0 8px;
    }
}
/*end layout style*/
/*start index page common all pages style*/
.hero-banner-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-banner-item {
    width: 100%;
    display: none;
    overflow: hidden;
}

    .hero-banner-item:first-child {
        display: block;
    }

    .hero-banner-item img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

    .hero-prev:hover,
    .hero-next:hover {
        background: rgba(0, 0, 0, 0.8);
    }
.hero-section {
   
    min-height: 450px;
    position: relative;
}
.hero-section {
    position: relative;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--text-heading);
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 15px;
    color: var(--text-heading);
}
.service-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 11px;
    width: 90%;
    background: var(--bg-section);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    padding: 35px;
    z-index: 5;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.icon {
    width: 65px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-section);
    font-size: 28px;
    padding: 10px;
}

.blue {
    background: var(--info);
}

.orange {
    background: var(--warning);
}

.green {
    background: var(--success);
}

.purple {
    background: var(--purple);
}

.service-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.service-item p {
    margin: 0;
    font-size: 15px;
}
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .service-box {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .service-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 17px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-content p {
        font-size: 10px;
    }
}
/* about us */

.about-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

    .about-img img {
        width: 100%;
        object-fit: cover;
        transition: var(--transition);
        height: 310px;
    }

    .about-img:hover img {
        transform: scale(1.05);
    }

.section-subtitle {
    color: var(--primary);
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 2px solid;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    color: var(--text-body);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 4px;
}

.about-author {
    color: var(--text-heading);
    margin-bottom: 30px;
}

.about-btn {
    background: var(--secondary-light);
    color: var(--text-heading);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

    .about-btn:hover {
        background: var(--primary-dark);
        color: #fff;
        transform: translateY(-3px);
    }
@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }

    .about-img img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-img img {
        height: 250px;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }
}

.counter-section {
    background: var(--counter-bg);
    padding: 30px 0 45px;
}

.counter-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.counter-icon {
    width: 45px;
    min-width: 45px;
    height: 90px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 25px;
}

    .counter-icon i {
        font-size: 40px;
        color: var(--counter-text);
        line-height: 1;
    }

.counter-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 90px;
}

    .counter-content h2 {
        color: var(--counter-text);
        font-size: 40px;
        line-height: 1;
        font-weight: 700;
        margin: 0 0 12px 0;
        padding: 0;
    }

   
    .counter-content p {
        color: var(--counter-text);
        margin: 0;
        padding: 0;
        font-size: 17px;
        line-height: 1.5;
        max-width: 260px;
    }

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 30px;
}

@media (max-width: 991px) {

    .counter-box {
        align-items: flex-start;
    }

    .counter-content {
        min-height: 95px;
    }

        .counter-content h2 {
            font-size: 36px;
        }

        .counter-content p {
            font-size: 17px;
        }
}

@media (max-width: 576px) {

    .counter-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .counter-icon {
        width: 55px;
        min-width: 55px;
        height: auto;
        padding-top: 0;
    }

        .counter-icon i {
            font-size: 34px;
        }

    .counter-content {
        min-height: auto;
        align-items: center;
    }

        .counter-content h2 {
            font-size: 30px;
            margin-bottom: 8px;
        }

        .counter-content p {
            font-size: 16px;
            max-width: 280px;
        }
}
/*        News & Events*/
.event-main-section {
/*    height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;*/
}
.news-event-section {
    background: var(--bg-section);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 10px;
}

    .section-header h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .section-header a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

.news-card {
    display: flex;
    gap: 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    transition: .3s;
/*    background:var(--bg-section);*/
}

    .news-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        transform: translateY(-5px);
    }

    .news-card img {
        width: 280px;
        border-radius: 15px;
        object-fit: cover;
        height: 130px;
    }

.news-content h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.news-date {
    display: block;
    color: var(--secondary);
    margin: 4px 0;
}

.news-content p {
    color: #555;
    line-height: 1.8;
}

.news-content a {
    text-decoration: none;
    color: var(--counter-bg);
    font-weight: 600;
}

.event-box {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 25px;
    height: 360px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.event-box-details {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 25px;
    
}
.event-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
    width: 100%;
}

.event-date {
    flex: 0 0 45px;
    width: 70px;
    min-width: 50px;
    height: 50px;
    background: #f6dfe6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .event-date span {
        font-size: 21px;
        font-weight: 700;
        line-height: 1;
    }

    .event-date small {
        margin-top: 5px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
    }

.event-content {
    flex: 1 1 auto;
    min-width: 0;
    width: 0;
}

    .event-content h5 {
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 1px 0;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .event-content p {
        margin: 0;
        color: #444;
        font-size: 15px;
        line-height: 1.5;
        white-space: normal;
    }

        .event-content p i {
            color: var(--primary);
            margin-right: 5px;
        }
@media(max-width:991px) {
    .news-card {
        flex-direction: column;
    }

        .news-card img {
            width: 100%;
        }

    .section-header h3 {
        font-size: 16px;
    }

    .event-content h5 {
        font-size: 20px;
        text-wrap: wrap;
        word-break: break-all;
    }
}

@media(max-width:576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-content h4 {
        font-size: 20px;
    }

    .event-item {
        gap: 15px;
    }

    .event-date {
        width: 60px;
    }

        .event-date span {
            font-size: 22px;
        }
}

.services-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.services-section-line {
    width: 157px;
    height: 2px;
    background: var(--primary);
    margin: auto;
    border-radius: 20px;
}

.services-section-card {
    height: 190px;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .services-section-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

    .services-section-card::after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        height: 5px;
        border-radius: 30px;
    }
.services-section-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.services-section-card h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.services-blue {
    background: #EEF3FC;
}

    .services-blue .services-section-icon {
        color: #123D8B;
    }

    .services-blue::after {
        background: #123D8B;
    }
.services-pink {
    background: #FDEEF4;
}

    .services-pink .services-section-icon {
        color: #E63578;
    }

    .services-pink::after {
        background: #E63578;
    }
.services-orange {
    background: #FFF2EC;
}

    .services-orange .services-section-icon {
        color: #F05A28;
    }

    .services-orange::after {
        background: #F05A28;
    }

.services-green {
    background: #EDF8F3;
}

    .services-green .services-section-icon {
        color: #159B54;
    }

    .services-green::after {
        background: #159B54;
    }

.services-lime {
    background: #FAFBEA;
}

    .services-lime .services-section-icon {
        color: #A8C800;
    }

    .services-lime::after {
        background: #A8C800;
    }

.services-purple {
    background: #F7EDF9;
}

    .services-purple .services-section-icon {
        color: #B534D6;
    }

    .services-purple::after {
        background: #B534D6;
    }

.services-section-btn:hover {
    background: var(--primary-dark);
    color: var(--bg-section);
    transform: translateY(-3px);
}
@media(max-width:991px) {
    .services-section-card {
        height: 170px;
    }

        .services-section-card h5 {
            font-size: 20px;
        }

    .services-section-icon {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .services-section-title h2 {
        font-size: 20px;
    }

    .services-section-card {
        height: 160px;
    }

        .services-section-card h5 {
            font-size: 18px;
        }

    .services-section-btn {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }
}

.contact-banner {
    position: relative;
    height: 280px; 
    background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .contact-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0,33,91,.70), rgba(122,31,68,.65));
    }

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-subtitle {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: var(--bg-section);
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h1 {
    color: var(--bg-section);
    font-size: 42px; 
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-custom li {
        color: var(--bg-section);
        font-size: 15px;
        font-weight: 500;
    }

@media(max-width:768px) {

    .contact-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 12px;
        padding: 5px 15px;
    }

    .breadcrumb-custom li {
        font-size: 13px;
    }
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    height: 100%;
}

.form-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

    .form-label span {
        color: red;
    }

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: var(--primary);
    font-size: 18px;
    width: 50px;
    justify-content: center;
}

.form-control {
    height: 55px;
    box-shadow: none !important;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: var(--primary) !important;
}

.input-group:focus-within .input-group-text {
    border-color: var(--counter-bg);
}

.contact-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: var(--counter-bg);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(139,0,0,.35);
    }

    .contact-btn i {
        margin-right: 8px;
    }

@media(max-width:991px) {

    .contact-form-box {
        padding: 25px;
        margin-top: 30px;
    }

    .form-title {
        font-size: 24px;
    }
}
/* end style of banner section */
.map-section {
    background: var(--bg-light);
}

.map-card {
    background: var(--bg-section);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: var(--transition);
}

    .map-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(122,31,68,.15);
    }
.location-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 50px 40px;
    background: linear-gradient(135deg,var(--primary),var(--primary-dark));
    color: var(--bg-section);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .location-box::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -80px;
        right: -70px;
    }

    .location-box::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        left: -40px;
        bottom: -40px;
    }

.location-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--bg-section);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .5s;
}

.location-box:hover .location-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--secondary);
    color: var(--bg-section);
}

.location-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.address {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    transition: .3s;
}

    .contact-item:hover {
        transform: translateX(8px);
    }

    .contact-item i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--bg-section);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

    .location-btn:hover {
        background: var(--secondary);
        color: var(--bg-section);
        transform: translateY(-4px);
    }
.map-wrapper {
    overflow: hidden;
    height: 100%;
}

    .map-wrapper iframe {
        width: 100%;
        height: 560px;
        border: 0;
        transition: .6s;
    }

.map-card:hover iframe {
    transform: scale(1.02);
}
@media(max-width:991px) {
    .location-box {
        text-align: center;
        padding: 40px 25px;
    }

    .location-icon {
        margin: auto auto 25px;
    }

    .contact-item {
        justify-content: center;
    }

    .location-btn {
        margin: auto;
    }

    .map-wrapper iframe {
        height: 380px;
    }
}

@media(max-width:576px) {
    .location-box h3 {
        font-size: 24px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

.contact-link {
    color: var(--bg-section);
    text-decoration: none;
    transition: var(--transition);
}

    .contact-link:hover {
        color: var(--secondary-light);
    }
/*   MAP SECTION end*/
/*   What We Do Banner*/
.what-banner {
    position: relative;
    height: 280px;
    background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .what-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0,33,91,.72),rgba(122,31,68,.65));
    }

.what-overlay {
    display: none;
}

.what-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.what-subtitle {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: var(--bg-section);
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.what-title {
    color: var(--bg-section);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.what-description {
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.8;
}

.what-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .what-breadcrumb li {
        color: var(--bg-section);
        font-size: 15px;
    }

        .what-breadcrumb li a {
            color: var(--bg-section);
            text-decoration: none;
            transition: var(--transition);
        }

            .what-breadcrumb li a:hover {
                color: var(--secondary-light);
            }

@media(max-width:768px) {
    .what-banner {
        height: 220px;
    }

    .what-title {
        font-size: 32px;
    }

    .what-description {
        font-size: 14px;
        padding: 0 15px;
    }

    .what-subtitle {
        font-size: 12px;
    }

    .what-breadcrumb li {
        font-size: 13px;
    }
}

.federation-services-section {
    background: var(--bg-section);
    color: var(--text-heading);
   
    height:1000px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}
}

    .federation-services-section p {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 18px;
        color: var(--text-heading);
    }

    .federation-services-section ol {
        padding-left: 22px;
        margin-top: 20px;
    }

        .federation-services-section ol li {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 12px;
            color: var(--text-heading);
            padding-left: 8px;
        }
            .federation-services-section ol li:hover {
                color: var(--primary);
            }

@media(max-width:768px) {
    .federation-services-section p,
    .federation-services-section ol li {
        font-size: 15px;
    }

    .federation-services-section ol {
        padding-left: 18px;
    }
}

.branch-office-section {
    background: var(--bg-section);
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-heading);
}
/*   What We section end*/
/*about us section design */
.history-section {
    background: var(--bg-body);
    color: var(--text-heading);
/*    height: 1000px;
    overflow-y: auto;
    overflow-x: hidden;*/
    box-sizing: border-box;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-heading);
}

.history-box {
    padding: 25px;
}

    .history-box h3 {
        color: var(--primary);
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

        .history-box h3 i {
            margin-right: 8px;
        }

    .history-box p {
        color: #555;
        line-height: 28px;
    }

    .history-box ul {
        padding-left: 18px;
        margin-top: 15px;
    }

        .history-box ul li {
            margin-bottom: 10px;
            color: #555;
        }

.founder-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

    .founder-item:last-child {
        border-bottom: none;
    }

    .founder-item h5 {
        color: var(--counter-bg);
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .founder-item p {
        margin: 0;
    }

.management-section {
    background: var(--bg-body);
}

.management-card {
    padding: 25px;
    height: 100%;
}

    .management-card h3 {
        font-size: 22px;
        color: var(--primary);
        margin-bottom: 20px;
        font-weight: 600;
    }

        .management-card h3 i {
            margin-right: 8px;
        }

    .management-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .management-card ul li {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            gap: 15px;
        }

            .management-card ul li:last-child {
                border-bottom: none;
            }

            .management-card ul li strong {
                font-size: 15px;
                color: var(--text-heading);
            }

            .management-card ul li span {
                color: #666;
                font-size: 14px;
                white-space: nowrap;
            }

.report-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-heading);
    transition: .3s ease;
}

    .report-box:hover {
        background: var(--counter-bg);
        color: #fff;
        border-color: var(--counter-bg);
    }

    .report-box i {
        font-size: 22px;
        color: #dc3545;
    }

    .report-box:hover i {
        color: #fff;
    }
/* branch section  */
.branch-network-section {
    background: var(--bg-body);
}

.branch-heading {
    font-size: 23px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 24px;
    position: relative;
    padding-left: 18px;
}

    .branch-heading::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 3px;
        height: 25px;
        border-radius: 10px;
        background: var(--counter-bg);
    }

    .branch-heading i {
        color: var(--counter-bg);
        margin-right: 8px;
    }

.custom-accordion .accordion-item {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
}

.custom-accordion .accordion-button {
    background: #fff;
    color: var(--text-heading);
    font-size: 17px;
    font-weight: 600;
    padding: 18px 22px;
    box-shadow: none;
    transition: .3s;
}

    .custom-accordion .accordion-button i {
        color: var(--primary);
        font-size: 18px;
    }

    .custom-accordion .accordion-button:hover {
        background: var(--primary-light);
    }

    .custom-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        color: #fff;
    }

        .custom-accordion .accordion-button:not(.collapsed) i {
            color: #fff;
        }

    .custom-accordion .accordion-button:focus {
        box-shadow: none;
    }

    .custom-accordion .accordion-button::after {
        background-size: 16px;
        transition: .3s;
    }

    .custom-accordion .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

.custom-accordion .accordion-body {
    background: #fff;
    padding: 22px;
    border-top: 1px solid #ececec;
}

    .custom-accordion .accordion-body p {
        margin-bottom: 10px;
        color: #555;
        line-height: 28px;
    }

    .custom-accordion .accordion-body strong {
        color: var(--primary);
        font-weight: 600;
    }

.branch-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

    .branch-contact i {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--primary-light);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

@media (max-width:991px) {

    .branch-heading {
        font-size: 26px;
    }

    .custom-accordion .accordion-button {
        font-size: 16px;
        padding: 16px 18px;
    }

    .custom-accordion .accordion-body {
        padding: 18px;
    }
}

/* board of diretors */
.director-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.director-img img {
    width: 224px !important;
    height: 280px;
    object-fit: cover;
    margin: auto;
}

.director-card h5 {
    font-size: 1rem;
}
.owl-nav{
    display:none;
}
.board-carousel.owl-theme .owl-dots {
    margin-top: 30px;
    text-align: center;
}

    .board-carousel.owl-theme .owl-dots .owl-dot {
        display: inline-block;
    }

        .board-carousel.owl-theme .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px;
            background: #d5d5d5 !important;
            border-radius: 50%;
            transition: .4s;
        }

        .board-carousel.owl-theme .owl-dots .owl-dot.active span {
            width: 35px;
            background: #7a1f44 !important;
            border-radius: 20px;
        }

@media (max-width: 767px) {
    .board-carousel.owl-theme .owl-dots {
        display: none !important;
    }
}
/* vastudarshan */

.magazine-section {
    background: #fff;
    padding: 25px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.title-line {
    width: 90px;
    height: 3px;
    background: #c9ced8;
    margin: 0 auto 35px;
    border-radius: 10px;
}

.magazine-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s ease;
    position: relative;
}

    .magazine-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 35px rgba(0,0,0,.14);
    }
    .magazine-card img {
        height: 387px;
    }

    .magazine-top {
        background: var(--counter-bg);
        color: #fff;
        text-align: center;
        font-size: 13px;
        letter-spacing: 1px;
        padding: 8px 5px;
        font-weight: 600;
    }

.magazine-cover {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.magazine-bottom {
    position: absolute;
    left: 12px;
    bottom: 12px;
}

.magazine-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--counter-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

    .magazine-btn:hover {
        background: var(--primary);
        color: #fff;
    }

.owl-theme .owl-dots {
    margin-top: 24px;
    text-align: center;
}

    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px;
        background: #d1d5db !important;
        border-radius: 50%;
        transition: .3s;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        width: 28px;
        border-radius: 20px;
        background: #6b102d !important;
    }

@media (max-width: 767px) {
    .owl-theme .owl-dots {
        display: none !important;
    }
}

@media(max-width:991px) {
    .section-title {
        font-size: 36px;
    }

    .magazine-cover {
        height: 340px;
    }
}

@media(max-width:767px) {
    .section-title {
        font-size: 30px;
    }

    .magazine-cover {
        height: 300px;
    }
}
/*testimonial section */

.testimonial-section {
    background: #fff;
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.quote-icon {
    width: 90px;
    min-width: 90px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .quote-icon::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: #222;
    }

    .quote-icon i {
        width: 48px;
        height: 48px;
        background: #fff;
        border-radius: 50%;
        font-size: 28px;
        color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2;
    }

.testimonial-content p {
    font-size: 21px;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 10px;
}

.client-info {
    margin-top: 25px;
}

    .client-info h4 {
        font-size: 22px;
        color: #222;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .client-info span {
        color: #7a1f44;
        font-size: 16px;
        font-weight: 600;
    }

.testimonial-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ddd !important;
}

.testimonial-slider .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: #7a1f44 !important;
}

@media(max-width:768px) {
    .testimonial-card {
        flex-direction: column;
    }
    .testimonial-section {
        height: auto;
    }
    .quote-icon {
        width: 100%;
        height: 70px;
    }

        .quote-icon::before {
            height: 2px;
            width: 100%;
            left: 0;
            top: 50%;
            transform: none;
        }

    .testimonial-content p {
        font-size: 17px;
    }

    .client-info h4 {
        font-size: 22px;
    }

    .client-info span {
        font-size: 15px;
    }
}
/*end testimonial section*/
/*photo gallery section*/
.photo-gallery-section {
    padding: 20px 0;
    background: #f8f9fb;
/*    height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;*/
}
    .photo-gallery-section::-webkit-scrollbar {
        width: 6px;
    }

    .photo-gallery-section::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 10px;
    }

    .photo-gallery-section::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

.gallery-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

    .gallery-heading span {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--primary);
    }

    .gallery-heading h2 {
        margin-bottom: 15px;
        font-size: 38px;
        font-weight: 800;
        color: var(--primary-text);
    }

    .gallery-heading p {
        margin: 0;
        color: #777;
        font-size: 15px;
        line-height: 1.8;
    }
.gallery-card {
    position: relative;
    height: 270px;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
    cursor: pointer;
}
    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.05) );
    opacity: 0;
    transition: all .4s ease;
}
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform .4s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content span {
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-body);
}

.gallery-content h4 {
    margin: 5px 0 15px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.gallery-view {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-size: 17px;
    transition: .3s;
}
    .gallery-view:hover {
        background: var((--primary));
        color: #fff;
        transform: rotate(45deg);
    }
.view-gallery-btn:hover {
    background: var(--counter-bg);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.view-gallery-btn i {
    transition: .3s;
}
.view-gallery-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {

    .photo-gallery-section {
        padding: 20px 0;
    }

    .gallery-heading h2 {
        font-size: 32px;
    }
    .gallery-card {
        height: 250px;
    }
}
@media (max-width: 767px) {

    .photo-gallery-section {
        padding: 25px 0;
    }
    .gallery-heading {
        margin-bottom: 35px;
    }
        .gallery-heading h2 {
            font-size: 28px;
        }
    .gallery-card {
        height: 240px;
    }
}
@media (max-width: 575px) {

    .gallery-card {
        height: 230px;
        border-radius: 14px;
    }
}
/*end photo gallery section*/

/*download section design */
.masonry-item .card-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color:var(--bg-section) !important;
}
.btn-download {
    border-radius: 12px;
    background: var(--counter-bg) !important;
    color: var(--bg-section) !important;
    font-size: 17px;
    font-weight: 600;
    transition: 0.35s;
}
/*services section start*/
.services-section-service {
    position: relative;
    background: #f7f8fac2;
    overflow: hidden;
}
.services-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

    .services-title span {
        display: inline-block;
        color: #8b0000;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }

    .services-title h2 {
        margin: 0 0 8px;
        font-size: 36px;
        font-weight: 800;
        color: #222;
    }

    .services-title p {
        margin: 0 auto;
        max-width: 650px;
        color: #777;
        font-size: 15px;
        line-height: 1.7;
    }
.service-orbit {
    position: relative;
    width: 900px;
    height: 760px;
    margin: 0 auto;
}
.service-ring {
    position: absolute;
    width: 610px;
    height: 610px;
    left: 145px;
    top: 70px;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
}
.service-ring-inner {
    position: absolute;
    width: 410px;
    height: 410px;
    left: 245px;
    top: 170px;
    border: 1px dashed #d1d1d1;
    border-radius: 50%;
}
.service-ring::before,
.service-ring::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #999;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    z-index: 5;
}
.service-ring::before {
    animation: outerMove 11s linear infinite;
}
.service-ring::after {
    animation: outerMoveReverse 11s linear infinite;
}
@keyframes outerMove {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-305px);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-305px);
    }
}
@keyframes outerMoveReverse {
    from {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-305px);
    }
    to {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-305px);
    }
}
.service-ring-inner::before,
.service-ring-inner::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #aaa;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    z-index: 5;
}
.service-ring-inner::before {
    animation: innerMove 8s linear infinite;
}
.service-ring-inner::after {
    animation: innerMoveReverse 8s linear infinite;
}
@keyframes innerMove {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateY(-205px);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) translateY(-205px);
    }
}
@keyframes innerMoveReverse {
    from {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-205px);
    }
    to {
        transform: translate(-50%, -50%) rotate(540deg) translateY(-205px);
    }
}
.service-center {
    position: absolute;
    width: 205px;
    height: 205px;
    left: 347px;
    top: 272px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 20;
    animation: centerFloat 3s ease-in-out infinite;
}
.service-center-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}
    .service-center-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
.service-center h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}
.service-center span {
    margin-top: 5px;
    font-size: 10px;
    color: #999;
}
@keyframes centerFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
.orbit-service {
    position: absolute;
    width: 200px;
    min-height: 82px;
    padding: 10px 11px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #ddd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    z-index: 30;
    opacity: 0;
    animation: serviceEntry 0.8s ease forwards;
}
    .orbit-service:hover {
        text-decoration: none;
        transform: scale(1.08);
        border-color: var(--primary);
        box-shadow: 0 14px 35px rgba(139, 0, 0, 0.16);
    }
.orbit-service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7eeee;
    color: var(--primary);
    font-size: 22px;
    transition: 0.35s ease;
}
.orbit-service:hover .orbit-service-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(8deg);
}
.orbit-service-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.orbit-service-content span {
    display: block;
    margin-top: 3px;
    font-size: 14px;
}
.service-arrow {
    margin-left: auto;
    font-size: 13px;
    color: #aaa;
    transition: 0.3s ease;
}
.orbit-service:hover .service-arrow {
    color: #8b0000;
    transform: translateX(3px);
}
.service-orbit::after {
    content: "";
    position: absolute;
    right: -311px;
    top: -25%;
    width: 300px;
    height: 300px;
    background-image: url("../images/LOGO.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    animation: watermarkRotate 12s linear infinite;
}

@keyframes watermarkRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-orbit::before {
    content: "";
    position: absolute;
    left: -343px;
    bottom: -8%;
    width: 300px;
    height: 300px;
    background-image: url("../images/LOGO.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    animation: watermarkRotateReverse 18s linear infinite;
}

@keyframes watermarkRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.service-1 {
    top: 5px;
    left: 350px;
    animation-delay: 0.1s;
}
.service-2 {
    top: 45px;
    right: 105px;
    animation-delay: 0.2s;
}
.service-3 {
    top: 150px;
    right: -5px;
    animation-delay: 0.3s;
}
.service-4 {
    top:282px;
    right: -5px;
    animation-delay: 0.4s;
}
.service-5 {
    top: 434px;
    right: 31px;
    animation-delay: 0.5s;
}
.service-6 {
    bottom: 99px;
    right: 138px;
    animation-delay: 0.6s;
}
.service-7 {
    bottom: 15px;
    left: 350px;
    animation-delay: 0.7s;
}
.service-8 {
    bottom: 94px;
    left: 117px;
    animation-delay: 0.8s;
}
.service-9 {
    top: 425px;
    left: 10px;
    animation-delay: 0.9s;
}
.service-10 {
    top: 278px;
    left: -5px;
    animation-delay: 1s;
}
.service-11 {
    top: 150px;
    left: -5px;
    animation-delay: 1.1s;
}
.service-12 {
    top: 45px;
    left: 105px;
    animation-delay: 1.2s;
}
service-1::after {
    bottom: -24px;
    left: 50%;
}
.service-2::after {
    bottom: -18px;
    left: 30px;
}

.service-3::after {
    left: -23px;
    top: 50%;
}

.service-4::after {
    left: -23px;
    top: 50%;
}

.service-5::after {
    top: -18px;
    left: 30px;
}

.service-6::after {
    top: -24px;
    left: 50%;
}

.service-7::after {
    top: -18px;
    right: 30px;
}

.service-8::after {
    right: -23px;
    top: 50%;
}

.service-9::after {
    right: -23px;
    top: 50%;
}

.service-10::after {
    bottom: -18px;
    right: 30px;
}
@keyframes serviceEntry {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@media (max-width: 991px) {
    .service-orbit {
        transform: scale(0.82);
        transform-origin: top center;
    }
}
@media (max-width: 767px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-title h2 {
        font-size: 28px;
    }

    .services-title p {
        font-size: 14px;
    }

    .service-orbit {
        width: 100%;
        height: auto;
        transform: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 35px;
    }
    
    .service-ring,
    .service-ring-inner {
        display: none;
    }
   
    .service-center {
        position: relative;
        width: 170px;
        height: 170px;
        left: auto;
        top: auto;
        grid-column: 1 / -1;
        margin: 0 auto 15px;
    }

    .service-center-logo {
        width: 68px;
        height: 68px;
    }

    .service-center h3 {
        font-size: 18px;
    }
    .orbit-service {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100%;
        min-height: 75px;
    }

        .orbit-service::after {
            display: none;
        }
}
@media (max-width: 480px) {
    .service-orbit {
        grid-template-columns: 1fr;
    }

    .service-center {
        grid-column: auto;
    }
}
/*services section end*/
/*login page css start */
#dntCaptchaImg {
    height: 60px !important;
}

.login-section {
    background-color: #b4c8e775;
    background-image: linear-gradient( rgba(37, 99, 235, 0.06) 1px, transparent 1px ), linear-gradient( 90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px );
    background-size: 35px 35px;
}
.login-card {
    width: 450px;
    max-width: 100%;
    margin: 35px auto;
    padding: 28px 30px 30px;
    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

.login-title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.login-field {
    margin-bottom: 14px;
}

    .login-field label {
        display: block;
        font-size: 16px;
        color: #34495e;
        margin-bottom: 7px;
        font-weight: 400;
    }

        .login-field label::after {
            content: " *";
            color: #dc3545;
            font-weight: 600;
        }

.login-input {
    width: 100%;
    height: 48px;
    border: 1px solid #999;
    border-radius: 12px !important;
    padding: 0 16px;
    font-size: 16px;
    color: #34495e;
    outline: none;
    box-shadow: none !important;
}

    .login-input::placeholder {
        color: #34495e;
        opacity: 1;
        font-weight: 500;
    }

    .login-input:focus {
        border-color: #888;
        box-shadow: none !important;
    }

.login-password-group {
    position: relative;
}

    .login-password-group .login-input {
        padding-right: 50px;
    }

.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
}

    .password-toggle:focus {
        outline: none;
    }

.login-button {
    width: 100%;
    height: 39px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background:var(--counter-bg);
    color:var(--bg-section);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}


.login-validation {
    text-align: center;
    margin-bottom: 15px;
}

.login-forgot {
    text-align: right;
    margin-top: 8px;
    margin-bottom: 12px;
}

    .login-forgot a {
        color: #34495e;
        font-size: 14px;
    }

@media (max-width: 576px) {

    .login-card {
        width: calc(100% - 30px);
        margin: 20px auto;
        padding: 25px 20px;
    }

    .login-title {
        margin-bottom: 22px;
    }
}
.navcss-sidebar {
    width: 270px;
    min-width: 270px;
    height: calc(100vh - 73px);
    background: var(--bg-section);
    border-right: 1px solid #ead7df;
    box-shadow: 4px 0 18px rgba(122, 31, 68, 0.08);
    position: fixed;
    left: 0;
    top: 73px;
    bottom: 0;
    z-index: 1050;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--counter-bg) transparent;
}
    .navcss-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .navcss-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .navcss-sidebar::-webkit-scrollbar-thumb {
        background: var(--secondary);
        border-radius: 10px;
    }

        .navcss-sidebar::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

    .navcss-sidebar .sidebar-nav {
        padding: 14px 12px 25px;
        margin: 0;
        list-style: none;
    }

.navcss-sidebar .sidebar-item {
    margin-bottom: 5px;
}

.navcss-sidebar .sidebar-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 9px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
    .navcss-sidebar .sidebar-link > i,
    .navcss-sidebar .sidebar-link .material-icons {
        width: 21px;
        min-width: 21px;
        text-align: center;
        color: #718096;
        font-size: 20px;
        transition: var(--transition);
    }
.navcss-sidebar .sidebar-item:not(.active-home)
.sidebar-link:hover {
    background: var(--secondary-light);
    color: var(--primary);
    transform: translateX(3px);
}
    .navcss-sidebar .sidebar-item:not(.active-home)
    .sidebar-link:hover > i,
    .navcss-sidebar .sidebar-item:not(.active-home)
    .sidebar-link:hover .material-icons {
        color: var(--primary);
    }


.navcss-sidebar .sidebar-item.active-home > .sidebar-link {
    background: linear-gradient( 90deg, var(--light-text) 0%, var(--light-text) 100% );
    color: var(--counter-bg);
    font-weight: 600;
    border-left: 4px solid var(--counter-bg);
    padding-left: 9px;
    box-shadow: 0 4px 12px rgba(122, 31, 68, 0.08);
}

    .navcss-sidebar .sidebar-item.active-home > .sidebar-link > i,
    .navcss-sidebar .sidebar-item.active-home > .sidebar-link .material-icons {
        color: var(--counter-bg);
    }

.navcss-sidebar .sidebar-main > i {
    color: #718096;
    font-size: 19px;
}

    .navcss-sidebar .sidebar-main > i:last-child {
        margin-left: auto;
        font-size: 14px;
        transition: var(--transition);
    }


@media (max-width: 991px) {

    .navcss-sidebar {
        width: 260px;
        min-width: 260px;
        box-shadow: 8px 0 30px rgba(122, 31, 68, 0.12);
    }

        .navcss-sidebar .sidebar-link {
            font-size: 14px;
        }
}
/* main content style*/

.mainContent.tab-org-maincontent {
    margin-left: 270px;
    min-height: 100vh;
    padding: 25px 10px;
    background: var(--bg-body);
    color: var(--text);
    transition: var(--transition);
    overflow-x: hidden;
    margin-top:80px;
}

.pune-fed-header {
    position: fixed !important;
    top: 0 !important;
    margin-left: 270px;
    right: 0 !important;
    width: 100% !important;
    height: 78px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #ead7df !important;
    box-shadow: 0 4px 18px rgba(122, 31, 68, 0.10) !important;
    z-index: 1050 !important;
}
.pune-fed-header-inner {
    width: 100% !important;
    height: 100% !important;
    padding: 0 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.pune-fed-brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}
.pune-fed-logo {
    width: 58px !important;
    height: 58px !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    border-radius: 50% !important;
    background: #f5e9ef !important;
    border: 1px solid #ead7df !important;
    overflow: hidden;
}
    .pune-fed-logo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 50%;
    }

.pune-fed-title {
    display: block !important;
}

    .pune-fed-title h5 {
        margin: 0 0 4px !important;
        color: #7a1f44 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }

    .pune-fed-title h6 {
        margin: 0 !important;
        color: #111827 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }

.pune-fed-header-right {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
}
.pune-fed-profile-btn {
    border: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 5px 10px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    color: #111827 !important;
}

    .pune-fed-profile-btn:hover {
        background: #f5e9ef !important;
    }

.header-profile-img {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid #f5e9ef !important;
    background: #f5e9ef !important;
}

    .header-profile-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

.header-user-details {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

    .header-user-details strong {
        color: #111827 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .header-user-details small {
        color: #8b7a82 !important;
        font-size: 13px !important;
        margin-top: 3px !important;
    }

.pune-fed-profile-menu {
    width: 260px !important;
    padding: 8px !important;
    margin-top: 8px !important;
    border: 1px solid #ead7df !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(122, 31, 68, 0.15) !important;
}

.profile-menu-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 10px !important;
}

.profile-menu-img {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid #f5e9ef !important;
}

    .profile-menu-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

.profile-menu-header strong {
    display: block !important;
    color: #111827 !important;
    font-size: 15px !important;
}

.profile-menu-header small {
    display: block !important;
    color: #8b7a82 !important;
    font-size: 13px !important;
    margin-top: 3px !important;
}
.pune-fed-profile-menu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    color: #111827 !important;
    font-size: 13px !important;
}

    .pune-fed-profile-menu .dropdown-item i {
        width: 20px !important;
        color: #7a1f44 !important;
        font-size: 17px !important;
    }

    .pune-fed-profile-menu .dropdown-item:hover {
        background: #f5e9ef !important;
        color: #7a1f44 !important;
    }

.pune-fed-profile-menu .profile-logout,
.pune-fed-profile-menu .profile-logout i {
    color: #dc3545 !important;
}

    .pune-fed-profile-menu .profile-logout:hover {
        background: #fff1f2 !important;
    }

@media (max-width: 768px) {

    .pune-fed-header {
        height: 70px !important;
    }

    .pune-fed-header-inner {
        padding: 0 12px !important;
    }

    .pune-fed-logo {
        width: 48px !important;
        height: 48px !important;
    }

    .pune-fed-title h5 {
        font-size: 12px !important;
        max-width: 280px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pune-fed-title h6 {
        font-size: 11px !important;
        max-width: 280px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-user-details {
        display: none !important;
    }
}


@media (max-width: 480px) {

    .pune-fed-title {
        display: none !important;
    }
}

div.total-table-info {
    margin: auto;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.service-details-page {
    background: var(--bg-body);
    padding: 20px;
}

.service-page-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, var(--primary-dark), var(--primary) );
    color: var(--primary-text);
    font-size: 25px;
    box-shadow: 0 8px 20px rgba(91, 13, 36, 0.20);
}

.service-page-header h1 {
    margin: 0;
    color: var(--text-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.service-page-header p {
    margin: 6px 0 0;
    color: var(--header-text-light);
    font-size: 14px;
}
.service-details-card {
    background: var(--bg-section);
    border-radius: 22px;
    padding: 35px 40px;
    border: 1px solid rgba(122, 31, 68, 0.10);
    box-shadow: 0 8px 30px rgba(91, 13, 36, 0.07);
    position: relative;
    overflow: hidden;
}

/*    .service-details-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient( 90deg, var(--primary-dark), var(--primary), var(--secondary) );
    }*/
.service-info-block {
    padding: 8px 0;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.label-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 15px;
}
.service-info-block h2 {
    margin: 0;
    color: var(--text-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}
.service-divider {
    height: 1px;
    background: rgba(122, 31, 68, 0.12);
    margin: 28px 0;
}
.service-description {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    background: var(--bg-light);
    border-radius: 0 12px 12px 0;
    padding: 20px 22px;
}
.service-details-card {
    transition: var(--transition);
}

    .service-details-card:hover {
        box-shadow: 0 15px 40px rgba(91, 13, 36, 0.12);
    }

@media (max-width: 768px) {

    .service-details-page {
        padding: 30px 0 50px;
    }

    .service-page-header {
        gap: 13px;
        margin-bottom: 22px;
    }

    .service-page-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .service-page-header h1 {
        font-size: 24px;
    }

    .service-page-header p {
        font-size: 13px;
    }

    .service-details-card {
        padding: 25px 22px;
        border-radius: 17px;
    }

    .service-info-block h2 {
        font-size: 22px;
    }

    .service-description {
        font-size: 15px;
        line-height: 1.75;
        padding: 17px 18px;
    }
}


@media (max-width: 576px) {

    .service-details-page {
        padding: 25px 0 40px;
    }

    .service-page-header h1 {
        font-size: 21px;
    }

    .service-page-header p {
        display: none;
    }

    .service-details-card {
        padding: 22px 18px;
    }

    .service-info-block h2 {
        font-size: 20px;
    }

    .service-divider {
        margin: 22px 0;
    }
}
.marquee-bar {
    width: 100%;
    min-height: 48px;
    background: #f7f8fac2;
    overflow: hidden;
    position: relative;
    z-index: 10;
    color: var(--header-primary);
}

    .marquee-bar > a {
        height: 48px;
        min-width: 210px;
        padding: 0 20px;
        margin-left: 0 !important;
        background: linear-gradient(90deg, var(--primary), var(--primary-dark));
        color: var(--bg-section) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        position: relative;
        z-index: 3;
    }
.ticker-main {
    flex: 1;
    min-width: 0;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    width: 100%;
    height: 48px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.ticker-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 48px;
    display: inline-flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: notificationScroll 40s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
    padding: 0 5px;
}

    .ticker-item span,
    .ticker-item a {
        font-size: 15px;
        transition: 0.3s ease;
        color: black;
    }

    .ticker-item > i {
        font-size: 14px !important;
        margin-right: 8px !important;
    }

    .ticker-item .bi-file-earmark-pdf-fill {
        font-size: 15px;
    }

    .ticker-item .bi-link-45deg {
        font-size: 18px;
    }

@keyframes notificationScroll {

    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}
#myModalDoc .modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

#myModalDoc .modal-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-bottom: none;
    padding: 15px 20px;
}

#myModalDoc .modal-title {
    font-size: 18px;
    font-weight: 700;
}

#myModalDoc .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#myModalDoc .modal-body {
    background: #f5f5f5;
}

#myModalDoc iframe {
    display: block;
}

#myModalDoc .modal-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 20px;
}

#myModalDoc .btn-secondary {
    border-radius: 7px;
}

#myModalDoc .btn-danger {
    border-radius: 7px;
}

@media (max-width: 768px) {

    .marquee-bar {
        min-height: 44px;
    }

        .marquee-bar > a {
            min-width: 160px;
            height: 44px;
            padding: 0 12px;
            font-size: 13px;
        }

            .marquee-bar > a i {
                font-size: 16px;
            }

    .ticker-item,
    .ticker-item span,
    .ticker-item a {
        font-size: 13px;
    }

    .ticker-track {
        animation-duration: 25s;
    }

    #myModalDoc .modal-dialog {
        margin: 10px;
    }

    #myModalDoc .modal-body {
        height: 70vh !important;
    }
}


@media (max-width: 480px) {

    .marquee-bar > a {
        min-width: 145px;
        font-size: 12px;
    }

    .ticker-item,
    .ticker-item span,
    .ticker-item a {
        font-size: 12px;
    }
}



/*after login style */
.manage-content {
    background: #fff;
    border: 1px solid #ead7df;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(122, 31, 68, 0.08);
    overflow: hidden;
    margin-bottom: 25px;
}
.manage-content-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-bottom: 1px solid #ead7df;
}
    .manage-content-header h5 {
        margin: 0;
        color: #fff;
        font-size: 19px;
        font-weight: 600;
        letter-spacing: 0.2px;
    }
.manage-content-body {
    padding: 25px;
}
.manage-content-group {
    margin-bottom: 22px;
}
.manage-content-label {
    display: block;
    margin-bottom: 8px;
    color: #4a3b42;
    font-size: 14px;
    font-weight: 600;
}
.manage-content-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dcd2d7;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}
    .manage-content-input:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 3px rgba(122, 31, 68, 0.08);
    }
    .manage-content-input[readonly] {
        background: #f7f5f6;
        color: #777;
        cursor: not-allowed;
    }
.manage-content-editor {
    width: 100%;
    min-height: 220px;
    border: 1px solid #dcd2d7;
    border-radius: 8px;
}
.manage-content-error {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}
.manage-content-actions {
    gap: 10px;
    padding-top: 5px;
}
.manage-content-save {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    background: var(--counter-bg);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
    .manage-content-save:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 5px 12px rgba(122, 31, 68, 0.18);
    }
@media (max-width: 768px) {

    .manage-content-body {
        padding: 18px;
    }
    .manage-content-header {
        padding: 15px 18px;
    }
        .manage-content-header h5 {
            font-size: 17px;
        }
}

.manage-content-title {
    margin: 0 15px 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .manage-content-title h4 {
        margin: 0;
        width: 100%;
        text-align: center;
        color: var(--primary);
        font-size: 22px;
        font-weight: 600;
    }
.manage-content-section {
    padding: 10px;
    background: #fff;
    border: 1px solid #ead7df;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(122, 31, 68, 0.06);
/*    min-height: 485px;*/
}
.manage-content-table-wrapper {
    width: 100%;
    padding-top: 8px;
}
.manage-content-total {
    margin-bottom:5px;
    padding-left: 15px;
    text-align:center;
    font-size:18px;
}
    .manage-content-total label {
        color: #444;
        font-size: 14px;
        font-weight: 600;
    }
    .manage-content-total span {
        color: var(--primary);
        font-weight: 700;
    }
.manage-content-table-scroll {
    width: 100%;
    overflow-x: auto;
}
.manage-content-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background: #fff;
}
.manage-content-table thead th {
        padding: 13px 15px;
        background: var(--primary);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
        white-space: nowrap;
        border: none;
    }

        .manage-content-table thead th:first-child {
            border-radius: 8px 0 0 0;
        }

        .manage-content-table thead th:last-child {
            border-radius: 0 8px 0 0;
        }
.manage-content-table tbody td {
        padding: 13px 15px;
        color: #444;
        background: #fff;
        border-bottom: 1px solid #eee3e8;
        vertical-align: middle;
        font-size: 18px;
    }
.manage-content-table tbody tr {
        transition: all 0.2s ease;
    }

        .manage-content-table tbody tr:hover td {
            background: #fff8fb;
        }

.manage-content-sr {
    width: 100px;
    text-align: center !important;
}
.manage-content-action {
    width: 100px;
    text-align: center !important;
}
.manage-content-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(0, 74, 173, 0.08);
    color: #004aad;
    transition: all 0.25s ease;
}
    .manage-content-edit i {
        font-size: 20px;
        color:var(--counter-bg);
    }
    .manage-content-edit:hover {
        background: var(--counter-bg);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 74, 173, 0.18);
    }

        .manage-content-edit:hover i {
            color: #fff;
        }


@media (max-width: 768px) {

    .manage-content-section {
        margin: 0 8px;
        padding: 8px;
    }

    .manage-content-title {
        margin-right: 8px;
    }

        .manage-content-title h4 {
            font-size: 18px;
        }

    .manage-content-table {
        min-width: 600px;
    }
}

.manage-photo-title {
    min-height: 40px;
}


.manage-content-add-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 9px 18px;
    border: none;
    border-radius: 8px;
    background: var(--counter-bg);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .manage-content-add-btn:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(122, 31, 68, 0.18);
    }


.manage-content-photo {
    text-align: center !important;
    width: 100px;
}

.manage-content-photo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(122, 31, 68, 0.08);
    color: var(--secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .manage-content-photo-icon i {
        font-size: 20px;
    }

    .manage-content-photo-icon:hover {
        background: var(--secondary);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(122, 31, 68, 0.18);
    }


.manage-content-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .manage-content-delete i {
        font-size: 20px;
        color: #dc3545;
    }

    .manage-content-delete:hover {
        background: #dc3545;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(220, 53, 69, 0.18);
    }

        .manage-content-delete:hover i {
            color: #fff;
        }

@media (max-width: 768px) {

    .manage-photo-title {
        padding-top: 45px;
    }

    .manage-content-add-btn {
        right: 8px;
        top: 0;
    }

    .manage-content-table {
        min-width: 850px;
    }
}
.manage-content-upload {
    position: relative;
    width: 100%;
}

.manage-content-upload-icon {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    background: #fff;
}

    .manage-content-upload-icon i {
        font-size: 20px;
        color: #004aad;
        line-height: 1;
    }

.manage-content-file {
    padding-right: 45px !important;
}
.icon-after-input {
    position: relative;
    width: 100%;
}

    .icon-after-input .form-control {
        width: 100% !important;
        padding-right: 45px;
    }

    .icon-after-input > i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        pointer-events: none;
    }

    .icon-after-input .toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        cursor: pointer;
        z-index: 5;
    }
.btn-back.regib-sb {
    min-width: 180px;
    height: 45px;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    background: var(--counter-bg);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.20);
}

    .btn-back.regib-sb:hover {
        background:var(--primary);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.30);
    }

.profile-left {
    background: var(--secondary-light);
}
.hedding {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .hedding .btn-back-admin {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        text-decoration: none;
        cursor: pointer;
        background:var(--counter-bg);
        color:white;
    }

    .hedding h4 {
        color: var(--primary);
        font-size:22px !important;
        font-weight: 600;
    }
/*DASHBOARD COUNT CARDS*/
.dashboard-count-section {
    padding: 10px 0 25px;
}

.count-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    min-height: 161px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf0f5;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

    .count-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    }

    .count-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
    }

.count-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

    .count-icon i {
        line-height: 1;
    }

.count-content {
    flex: 1;
}

.count-label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 5px;
}

.count-content h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
}

.count-content small {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 12px;
    color: #8a94a6;
}

    .count-content small i {
        font-size: 11px;
    }

.service-card::before {
    background: var(--counter-bg);
}

.service-card .count-icon {
    background: var(--bg-light);
    color: var(--counter-bg);
}

.document-card::before {
    background: #7c3aed;
}

.document-card .count-icon {
    background: #f1eaff;
    color: #7c3aed;
}

.branch-card::before {
    background: #059669;
}

.branch-card .count-icon {
    background: #e7f8f1;
    color: #059669;
}

.event-card::before {
    background: var(--primary);
}

.event-card .count-icon {
    background:var(--primary-light);
    color: var(--primary);
}

@media (max-width: 767px) {

    .count-card {
        min-height: 125px;
        padding: 18px;
    }

    .count-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 23px;
    }

    .count-content h2 {
        font-size: 27px;
    }

    .count-label {
        font-size: 13px;
    }
}
.dashboard-count-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 0 5px;
}

    .dashboard-count-header h5 {
        margin: 0;
        font-size: 19px;
        font-weight: 700;
        color: #17365d;
    }
.subject-select-group {
    display: flex;
    width: 100%;
    height: 55px;
    border: 1px solid #d9dee5;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.subject-icon {
    width: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-right: 1px solid #d9dee5;
    color: var(--primary);
    font-size: 17px;
}

.subject-select {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 38px 0 13px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}
.subject-select {
    appearance: auto;
    -webkit-appearance: auto;
}

.subject-select-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.03);
}
.manage-content-photo-icon-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--counter-bg) !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
    .manage-content-photo-icon-home i {
        color: var(--counter-bg) !important;
    }

.event-invitation {
    width: 100%;
/*    max-width: 1000px;*/
    margin: 0 auto;
    background: #fff;
/*    border-radius: 22px;*/
    overflow: hidden;
/*    border: 1px solid #e2e5e9;*/
/*    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);*/
}


.event-invitation-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--counter-bg), var(--bg-light));
    color: #fff;
}

.event-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    font-size: 28px;
}

.event-title {
    min-width: 0;
}

.event-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 4px;
}

.event-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    word-break: break-word;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.25s ease;
}

    .event-info-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    }

.event-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:var(--primary-light);
    color: var(--primary);
    font-size: 20px;
}

.event-info-content {
    min-width: 0;
}

    .event-info-content span {
        display: block;
        font-size: 12px;
        color: #777;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .event-info-content strong {
        display: block;
        font-size: 15px;
        color: #222;
        font-weight: 600;
        word-break: break-word;
    }

.event-description-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: #fafafa;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}

.description-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-size: 20px;
}

.event-description-box span {
    display: block;
    font-size: 12px;
    color: #777;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-description-box p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    word-break: break-word;
}
.event-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.event-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.event-link-btn {
    background: var(--counter-bg);
    color: #fff;
}

    .event-link-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

.event-image-btn {
    background: var(--counter-bg);
    color: #fff;
    border: 1px solid #ddd;
}

    .event-image-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }
@media (max-width: 768px) {

    .event-invitation {
        border-radius: 16px;
    }

    .event-invitation-header {
        padding: 20px;
        gap: 14px;
    }

    .event-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
        border-radius: 12px;
    }

    .event-title h3 {
        font-size: 20px;
    }

    .event-invitation-body {
        padding: 20px;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    .event-invitation-header {
        padding: 16px;
    }

    .event-invitation-body {
        padding: 15px;
    }

    .event-title h3 {
        font-size: 17px;
    }

    .event-label {
        font-size: 10px;
    }

    .event-info-item {
        padding: 13px;
    }

    .event-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .event-info-content strong {
        font-size: 14px;
    }

    .event-action-row {
        flex-direction: column;
    }

    .event-action-btn {
        width: 100%;
    }
}
.event-action-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 22px;
}


.event-direct-image {
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.event-program-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 600px;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: contain;
}
.program-card {
    cursor:pointer;
}
    .program-card:hover {
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
    }

