:root {
    /* Brand Color Variables (extracted from abcd.jpg logo) */
    --brand-green: #01a755;         /* Primary brand green */
    --brand-green-hover: #008f48;   /* Slightly darker green for hovers */
    --brand-green-light: #35b673;   /* Minty accent green */
    --brand-cyan: #00acf1;           /* Secondary brand cyan/sky blue */
    --brand-cyan-hover: #0093ce;    /* Slightly darker cyan for hovers */
    --brand-bg-light: #f4fcf7;       /* Very light background tint */
    --brand-border: #ddf3e8;         /* Very light border tint */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.container, .container-fluid, .container-xl {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* ==========================================================================
   GLOBAL BRAND THEME & UI/UX OVERRIDES
   ========================================================================== */

/* Header section override */
header {
    background-color: var(--brand-green) !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Navbar overrides */
.navbar {
    border-bottom: 1px solid var(--brand-border);
    transition: var(--transition-smooth);
}
.navbar-nav li a:hover {
    color: var(--brand-green) !important;
}
.dropdown-menu {
    border-top: 3px solid var(--brand-cyan) !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08) !important;
    overflow: hidden;
}
.dropdown-item {
    transition: var(--transition-smooth);
}
.dropdown-item:hover {
    background-color: var(--brand-bg-light) !important;
    color: var(--brand-green) !important;
}
.active-nav {
    color: var(--brand-green) !important;
}
.active-nav:hover {
    color: #fff !important;
    background-color: var(--brand-green) !important;
}
.navbar-toggler-icon i {
    color: var(--brand-green) !important;
}

/* Titles and headings */
.slider h1, .contact h3, footer h3, .download h2, .d-list .title h3,
.notice .notice-item p a, .testimonial .testimonial-item .testimonial-title,
.emi-calculator .calculator h2, .about h3, .about h1, .heading, .breadcumb-title,
.service-title, .testi-name, .bod h1, .details-head h2 {
    color: var(--brand-green) !important;
}
.about-us h1 {
    color: var(--brand-green) !important;
}
.about-us hr {
    background-color: var(--brand-green) !important;
    height: 3px;
    width: 60px;
    border-radius: 2px;
}

/* Icons & Markers */
.fa-map-marker, .fa-mobile, .fa-envelope, .fa-home, .fa-phone, .fa-clock-o, .fa-ticket, .fa-calendar, .fa-users, .fa-tag {
    color: var(--brand-green) !important;
}
.banner-icon {
    color: #fff !important;
}

/* Forms & Inputs */
.form-control:focus {
    border-color: var(--brand-green-light) !important;
    box-shadow: 0 0 0 0.2rem rgba(53, 182, 115, 0.25) !important;
}
.contact .form-control {
    border: 1px solid #ced4da !important;
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition-smooth);
}
.contact .form-control:focus {
    border-color: var(--brand-green) !important;
}

/* Buttons UI/UX upgrades */
.btn-success, .btn-primary, .about-us .button, .contact .submitbtn {
    background-color: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 8px 24px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 6px rgba(1, 167, 85, 0.15);
}
.btn-success:hover, .btn-primary:hover, .about-us .button:hover, .contact .submitbtn:hover {
    background-color: var(--brand-green-hover) !important;
    border-color: var(--brand-green-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(1, 167, 85, 0.25);
    color: #fff !important;
}
.btn-outline-success {
    color: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    background-color: transparent !important;
    border-radius: 30px !important;
    padding: 8px 24px !important;
    transition: var(--transition-smooth) !important;
}
.btn-outline-success:hover {
    background-color: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 167, 85, 0.15);
}

/* E-Library Button uses Brand Cyan */
a[href*="elibrary.bagmatiproscun"], .btn-info {
    background-color: var(--brand-cyan) !important;
    border-color: var(--brand-cyan) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 24px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 6px rgba(0, 172, 241, 0.15);
}
a[href*="elibrary.bagmatiproscun"]:hover, .btn-info:hover {
    background-color: var(--brand-cyan-hover) !important;
    border-color: var(--brand-cyan-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 172, 241, 0.25);
    color: #fff !important;
}

/* Cards & Lists */
.card {
    border-radius: 12px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--brand-border) !important;
    transition: var(--transition-smooth);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.card-header {
    border-radius: 12px 12px 0 0 !important;
    background-color: var(--brand-green) !important;
    border-bottom: none !important;
}
.bg-success, .stat-header {
    background-color: var(--brand-green) !important;
}
.badge-success {
    background-color: var(--brand-green) !important;
    color: #fff !important;
    border-radius: 20px !important;
}

/* Pagination */
.pagination .page-item .page-link {
    color: var(--brand-green) !important;
    border: 1px solid var(--brand-border) !important;
    border-radius: 4px;
    margin: 0 2px;
}
.pagination .active .page-link {
    background-color: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    color: #fff !important;
}

/* Inline Styles Overrides */
div[style*="background:#f7fff7"], div[style*="background: #f7fff7"] {
    background-color: var(--brand-bg-light) !important;
}
div[style*="border-top:4px solid #52c752"] {
    border-top: 4px solid var(--brand-green) !important;
}
div[style*="border-left:5px solid #52c752"] {
    border-left: 5px solid var(--brand-green) !important;
}
div[style*="border-left:4px solid #52c752"] {
    border-left: 4px solid var(--brand-green) !important;
}
div[style*="border:1px dashed #a8d8a8"] {
    border: 1px dashed var(--brand-green-light) !important;
}
div[style*="border-bottom:1px dashed #c5ec98"] {
    border-bottom: 1px dashed var(--brand-green-light) !important;
}
span[style*="background:#52c752"] {
    background-color: var(--brand-green) !important;
}
span[style*="background:#c5ec98"] {
    background-color: var(--brand-border) !important;
    color: var(--brand-green-hover) !important;
}
i[style*="color:#52c752"] {
    color: var(--brand-green) !important;
}
small[style*="color:#52c752"] {
    color: var(--brand-green) !important;
}
span[style*="width:4px; height:28px; background:#52c752"] {
    background-color: var(--brand-green) !important;
}
div[style*="border-radius:10px; overflow:hidden; border:2px solid #c5ec98"] {
    border: 2px solid var(--brand-border) !important;
    box-shadow: 0 4px 16px rgba(1, 167, 85, 0.15) !important;
}
div[style*="background:#e0f0d0"] {
    background-color: var(--brand-border) !important;
}
div[style*="background: linear-gradient(135deg, #52c752, #2d7a2d)"] {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-hover)) !important;
}
button[style*="background: linear-gradient(135deg, #52c752, #2d7a2d)"] {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-hover)) !important;
}
a[style*="background:linear-gradient(135deg,#52c752,#2d7a2d)"] {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-hover)) !important;
    box-shadow: 0 4px 14px rgba(1, 167, 85, 0.4) !important;
}
span[style*="color: rgb(82, 199, 82)"] {
    color: var(--brand-green) !important;
}
a[style*="color:#3EAD4D"] {
    color: var(--brand-green) !important;
}
div[style*="background:linear-gradient(135deg,#3EAD4D 0%,#1a6b26 100%)"] {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-hover) 100%) !important;
}
div[style*="background: linear-gradient(135deg, #52c752, #2d7a2d)"] {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-hover)) !important;
}
.trending {
    border: 1px solid var(--brand-border) !important;
    border-radius: 8px !important;
    background-color: var(--brand-bg-light) !important;
}
.trending-item .nmbr {
    background-color: var(--brand-green) !important;
    border-radius: 4px;
}
.trending-item .nmbr h3 {
    color: #fff !important;
}

/* Info Strip details */
div[style*="display:flex; align-items:center; gap:8px"] span[style*="background:#c5ec98"] {
    background-color: var(--brand-border) !important;
}
div[style*="display:flex; align-items:center; gap:8px"] span[style*="background:#c5ec98"] i {
    color: var(--brand-green) !important;
}
div[style*="font-weight:700; color:#1a4d1a"] {
    color: var(--brand-green-hover) !important;
}
div[style*="font-weight:600; color:#1a4d1a"] {
    color: var(--brand-green-hover) !important;
}
div[style*="font-size:1.8rem; font-weight:800; color:#2d7a2d"] {
    color: var(--brand-green) !important;
}
div[style*="color:#5fa05c"] {
    color: var(--brand-green-light) !important;
}
div[style*="color:#2d4d2d"] {
    color: var(--brand-green-hover) !important;
}


/* -------------header----------- */

header{
    height: 50px;
    background-color: rgb(82, 199, 82);
    width: 100%;
}

header .banner{
    margin-top: 10px;
}

header ul{
    display: flex;
    list-style: none;
    line-height: 25px;
    margin: 0px 20px;
}

header ul li{
    font-weight:600;
    padding: 0px 10px;
    color: #fff;
    height: 25px;
    border-right:2px solid rgb(121, 118, 118) ;
    font-size: 2vmin;
}

.banner-icon{
    font-size:15px;
    color:#fff;
}

/* -------------End header----------- */

/* -------------navbar----------- */

.navbar{
    height: 80px;
    background-color: #fff;
}

.navbar-brand{
    margin-right: 50px;
}

.navbar-nav .nav-item{
    margin: 0px 5px;
}

.navbar-nav li a{
    font-size: 15px;
    font-weight: 600;
    color: black;
    transition: 0.5s;
}

.navbar-nav li a:hover{
    /* font-weight: 700; */
    color: rgb(82, 199, 82);
}

.dropdown-menu{
    border-top: 3px solid rgb(82, 199, 82);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

/* ------------slider section------------- */

.slider{
    margin-bottom: 20px;
}
.slider h1{
    text-align: center;
    margin: 10px 0px;
    color: #378d1a;
    font-size: 5vmin;
    
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* carousel css ends */

/* -------------contact----------- */


.contact{
    /* background-color: rgb(240, 233, 233); */
    padding: 50px 105px 30px 105px;
    border-radius: 0px 0px 30px 30px;
}

.contact h3{
    margin-bottom: 30px;
    color: #378d1a;
    font-size: 25px;
}

.contact p{
    font-weight: 600;
    font-size: 18px;
    margin-bottom:30px ;
}

.contact ul{
    list-style: none;
}

.contact ul li {
    margin: 10px 0px;
}

.contact .form-control{
    /*height: 50px;*/
    border: 2px solid grey;
}

.contact .submitbtn{
    height: 40px;
    border: 2px solid rgb(82, 199, 82);
    font-weight: bold;
    color: rgb(82, 199, 82);
}

.contact .form-col p{
    font-size: 22px;
}

/* -------------footer----------- */


footer{
    padding: 0px 80px;
    /* background-color: rgb(255, 255, 255); */
}

footer .footer-top{
    border-bottom: 2px solid rgb(82, 199, 82);
}

footer h3{
    font-size: 18px;
    color:rgb(82, 199, 82) ;
    font-weight: bolder;
    padding-top: 50px;
}

footer .row .footer-item ul li{
    list-style: none;
    padding: 4px 0px;
}

footer .row .footer-item ul li a{
    font-size: 14px;
    text-decoration: none;
    color: rgb(74, 72, 72);
    text-align: justify;
    text-justify: inter-word;
}

footer .row .footer-item ul li a:hover{
    color:rgb(82, 199, 82);
}

.footer-info{
    height: 50px;
}

.footer-info p{
    line-height: 50px;
    font-size: 15px;
}
/* -------end footer CSS------- */

/* ----------download CSS---------- */
.download h2{
    color: rgb(82, 199, 82);
    font-weight: 600;
    height:45px;
    border-left: 4px solid rgb(82, 199, 82);
    padding-left: 20px;
}

.download-search p{
    margin-top: 15px;
    font-weight: 700;
}

.download-search form{
    display: flex;
}

.download-search form .form-group{
    margin: 0px 5px;
}

.download-search form .form-control{
    border: 2px solid rgb(82, 199, 82);
    font-weight: bolder;
    /* color: rgb(82, 199, 82); */
}

.download-search form select option{
    /* color: rgb(82, 199, 82) !important; */
    background-color: rgb(239, 255, 239);
}

.download-search form .searchbtn:hover{
    color: #fff;
}

.download-list{
    margin-top: 40px;
}

.download-list .d-list{
    box-shadow:-3px 2px 5px 3px #9ae7a4;
    margin:0px 5px 30px 5px;

}

.download-list .date, .download-list .title, .download-list .action{
    /* text-align: center; */
}

.download-list .date h3, .download-list .title h3{
    margin-bottom: -1rem;
    font-size: 4vmin;
}

.download-list .date p, .download-list .title p{
    margin-bottom: .4rem;
    font-size: 2.6vmin;
}

.download-list .action button{
    margin-top: 20px;
}

.d-list .date-box{
    margin-top: 10px;
    background-color: #3EAD4D;
    width: 90px;
    text-align: center;
    font-weight: bolder;
    color: #fff;
}

.d-list .title h3{
    font-weight: bolder;
    color: #3EAD4D;
}

.pagination .page-item .page-link{
    border:2px solid #bcd6f1;
    color: #3EAD4D;
    font-weight: 600;
}

.pagination .active .page-link{
    background-color: #9ae7a4;
    color: rgb(0, 90, 5) ;
}

.pagination .disabled .page-link{
    color: rgb(128, 125, 125) ;
}
/* ----------End download CSS---------- */


/* ----------Carousel CSS---------- */

.carousel{
    margin-top: 30px;
}

/* ----------End Carousel CSS---------- */

/* ----------About-us CSS---------- */

.about-us{
    margin: 10px 0px 10px 0px;
    padding: 20px;
    background-color: gainsboro;
}

.about-us h1{
    font-size: 4.5vmin;
    margin-left: 60px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-us hr{
    margin-left: 60px;
    height: 3px;
    background-color: rgb(82, 199, 82) ;
    border: none;
    width: 100px;
}

.about-us .about-us-item{
    margin-bottom: 30px;
}


.about-us .button {
    background-color: #4CAF50;
    color: white;
    padding:8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border: 2px solid #4CAF50;
    text-transform: uppercase;
    font-weight: 400;
}

.about-us .button:hover {
    background-color: #ffffff;
    color: #4CAF50;
}

/* ----------End About-us CSS---------- */

/* ----------notice CSS---------- */

.notice{
    width: 100%;
    
    
}

.notice h1{
    text-align: center;
    color: #fff;
    font-size: 5vmin;
}

.notice .icon{
    text-align: center;
}

.notice .notice-item{
    margin: 20px 30px;
}

.notice .notice-item .notice-content{
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 5px 5px 15px;
}

.notice .notice-item h5{
    font-weight: bolder;
    font-size: 2.8vmin;
}

.notice .notice-item p{
    font-size: 14px;
    margin-bottom: .5rem;
}

.notice .notice-item p a{
    font-size: 16px;
    font-weight: bolder;
    color: rgb(82, 199, 82);
    text-decoration: none;
}

.notice .button{
    height: 40px;
    background-color: rgb(12, 80, 80);
    width: 150px ;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all .5s;
    margin-top: 30px;
}

.notice .button a{
    padding: 0px 5px;
    color: #fff;
    text-decoration: none;
}

.notice .button:hover {
    margin-top: 20px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 10px rgb(62, 61, 61);
}

/* ----------End notice CSS---------- */

/* ----------testimonial CSS---------- */

.testimonial .testimonial-item {
    margin: 20px 20px;
    background-color: rgb(230, 230, 230);
    box-shadow: 1px 1px 10px 1px rgb(62, 61, 61);
}

.testimonial .testimonial-item .testimonial-title{
    margin-top: 15px;
    font-weight: bolder;
    color: rgb(82, 199, 82);
    font-size: 4.2vmin;
}

/* ----------End testimonial CSS---------- */

/* ----------Chart CSS---------- */

.chart .chart-item{
    margin: 10px 20px 40px 20px;
}

.chart .chart-item img{
    border-radius: 10px;
}

.chart .card .card-header{
    background-color: rgb(82, 199, 82);
    color: #fff;
    font-weight:bolder;
}

/* ----------End Chart CSS---------- */

/* ----------EMI calculator CSS---------- */

.emi-calculator{
    /* margin: 20px 0px;
    background-image: linear-gradient(to bottom, rgb(82, 199, 82), rgb(255, 255, 255)); */
}

.emi-calculator .emi-item{
    margin: 30px;
}

.emi-calculator .calculator{
    background-image: linear-gradient(to bottom, rgb(208, 253, 204), rgb(144, 231, 178));
    /* background-color: rgb(143, 176, 177); */
}

.emi-calculator .calculator h2{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4.5vmin;
    color: rgb(82, 199, 82);
}

.emi-calculator .calculator form .form-control{
    border: 2px solid rgb(180, 180, 180);
}

/* ----------End EMI calculator CSS---------- */

@media (max-width: 576px){
    .navbar-brand img{
        height: 40px;
        width: 200px !important;
    }
    .social-banner{
        display: none;
    }
    .active-nav{
        color : #fff !important;
    }
    .dropdown-menu{
        width: auto !important;
    }

    .notice .notice-item{
        margin: 20px 30px;
    }

    .carousel .carousel-item img{
        height: 245px !important;
    }

    .about-us h1, .about-us hr{
        margin-left: 20px;

    }
}

@media (max-width:768px){
    /* header{
        height: 70px;
    } */

    header .social-icons{
        display: none;
    }

    .navbar-brand img{
        height: 50px;
        width: 200px;
    }


    .banner-icon{
        font-size:14px;
    }

    header ul li{
        height: 20px;
    }

    .contact{
        padding: 10px 30px 10px 30px !important;
    }

    footer{
        padding: 0px 30px;
    }

    .footer-info p{
        line-height: 30px;

    }
    .about .image img{
        /* height: 500px;
        width: 84vmin; */
        margin-top: 20px !important;
    }

    .notice .notice-item{
        margin: 20px 15px;
    }

    .testimonial .testimonial-item {
        margin: 30px 30px;
    }

    .carousel .carousel-item img{
        height: 400px;
    }

    .mobile-hide{
        display: none;
    }

}

@media (max-width:990px){
    .navbar-brand img{
        height: 60px;
    }

    .contact{
        padding: 10px 70px 30px 70px;
    }

    .contact .contact-col{
        margin-top: 30px;
    }
    .about .image img{
        /* height: 500px;
        width: 84vmin; */
        margin-top: 90px;
    }

    .about-us .button {
        padding:5px 10px;
        font-size: 15px;
        font-weight: 400;
    }
}

@media( max-width:1200px){
    .navbar-brand img{
        height: 55px;
    }

    .navbar .navbar-collapse{
        height: 80vh !important;
        background-color: rgb(82, 199, 82);
        border-radius: 0px 0px 80px 0px;
    }

    .navbar-nav li a{
        color: #fff;
    }

    .navbar-nav li a:hover{
        color: rgb(0, 0, 0);
    }

    .dropdown-menu{
        width: 300px;
        border-top: 3px solid rgb(255, 255, 255);
        background-color: rgb(49, 129, 49);
    }
}


/* -----------about section css------------ */

.about{
    margin: 0px 40px;
}
.about h3{
    border-bottom: 1px solid brown;
    color: #3EAD4D;
    /* font-size: 20px; */
}
.about h1{
    font-size: 20px;
    color: #3EAD4D;
}
.about .image img{
    /* height: 500px;
    width: 84vmin; */
    margin-top: 70px;
}
.about p{
    text-align: justify;
    font-size: 2.8vmin;
}
/* about section css ends */
/* carousel css */
.slider h1{
    font-size: 4vmin ;
}

/*******news css section********/
.news .cards-a .cards{
    height: 385px;
    margin-top: 60px;
}
.news .cards-a .cards p{
    text-align: justify;
    opacity: 0.5;
    margin-bottom:0.3rem;
}
.news .cards-a .cards a{
    text-decoration: none !important;
}
.news .cards-a .cards h6{
    opacity: 0.5;
    font-size: 12px;
}
.news .cards-a .cards h4{
    margin-top: 10px;
    font-size: 18px;
}

/*********news css section ends**********/

/* -----------carousel css ends------------ */
/* hamro sewaharu css */

.header{
    margin-bottom: 20px;
    background-color: rgb(82, 199, 82);
    height: 80px;
}
/* .navone{
    margin-left: 120px;
} */
.sewa{
    padding: 20px;

}

.navtwo{
    margin-top: 20px;
}
.tab-nav li a:hover{
    /* font-weight: 700; */
    color: rgb(82, 199, 82);
}
.tab-nav li a{
    color:black;
    font-size: 20px;
}
.head{
    margin-left: 100px;
    margin-top: 50px;
    color:rgb(82, 199, 82); ;

}
.nav-head{
    margin-left: 80px;
}
.nav-list{
    border:solid rgb(82, 199, 82);
    height: 35px;
    width: 115px;
}

.tab-nav{
    list-style: none;
}
.a .ul{
    text-decoration: none;
    font-size: 15px;
}
.ql-align-justify
{
    font-size: 18px;
}
.content
{
    border:solid rgb(82, 199, 82);
    margin-right:40px;
}
.three{
    margin-top: 15px;

}
/* hamro sewaharu end */

/* bod section css */
.bod{
    padding: 0px 60px;
}

.bod h1{
    font-size: 4.5vmin;
    margin: 30px 0px;
    color: #3ead4d;
    border-bottom: 2px solid #c42929;
}

.bod .card .circle{
    width: 65%;
    border-radius: 50%;
    margin: 0px auto;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    max-height: 175px;
}
.bod .card{
    margin-bottom: 40px;
    box-shadow: 2px 2px 15px rgb(13, 13, 13);
   
    transition: 0.5s ease-in;
}

.bod .card .title{
    text-align: center;
}
.bod .card .card-body .main{
    display: flex;
    justify-content:center ;
    margin: 5px;
    padding-left: 35px;
}


.bod .card .card-body .main button{
    width: 32px;
    height: 32px;
    border: 2px solid rgb(82, 199, 82);
    background-color: transparent;
    margin:0px 8px;
    transition: .5s ease-in-out;
}

.bod .card .card-body .main button:hover{
    border: 2px solid rgb(82, 199, 82);
    background-color: rgb(82, 199, 82);
    color: #fff;
}


.bod .card .card-body .main .one{
    font-size:22px;
    color:rgb(82, 199, 82);
}

.bod .card .card-body .main .one:hover{
    color:rgb(255, 255, 255);
}

.bod .card .card-body .main .hide {
    /* display: none; */
    opacity: 0;
}

.bod .card .card-body .main .one:hover + .hide {
    transition: .5s ease-in-out;
    /* display: block; */
    opacity: 1;
    color: rgb(12, 12, 12);
}


.bod .card:hover {
    transition: all .5s;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(0.9);
}
.bod .card .card-body h6{
    text-align: center;
}
/* bod section css ends */

/* ------------details ------------CSS */

.details{
    padding: 10px 40px;
}

.details .details-item .details-head h2{
    font-size: 4.5vmin;
    margin-bottom: 20px;
}

.details .details-item .details-head .name{
    margin-bottom: 5px;
}

.details .details-item .details-head .name img{
    margin:0px 20px;
}

.details .details-item .details-head ul{
    list-style: none;
}

.details .details-item .details-head ul li{
    padding: 10px;
    text-align: justify;
}

.details .details-right h5{
    margin: 20px 0px;
    text-align: center;
    border-bottom: 8px solid rgb(82, 199, 82);
    line-height: 0em;
}

.details .details-right h5 span{
    padding: 10px 10px 0px 10px;
    background-color: #fff;
    font-weight: bolder;
    font-size: 2.8vmin;
}

.details .details-right .bises{
    background-color: #bbe6c1;
    margin-bottom: 30px;
    border-radius: 5px;
}

.details .details-right .right-topic{
    padding: 12px 0px 8px 0px;
    border-bottom: 1px dashed black;
}

.details .details-right .right-topic h4{
    font-size: 15px;
    font-weight: bolder;
}

.details .details-right .right-topic p{
    font-size: 12px;
    color: rgb(90, 86, 86);
    /* font-weight: bolder; */
}

.details .details-right .trending{
    background-color: #c5ec98;
    margin-bottom: 30px;
    border-radius: 5px;
}

.details .details-right .trending .trending-item .nmbr{
    width: 70px;
    height: 70px;
    background-color: #5fa05c;
    text-align: center;
    color: #fff;
    font-weight: bolder;
}

.details .details-right .trending .trending-item .nmbr h3{
    line-height: 70px;
}

.details .details-right .blog{
    /* background-color: #c5ec98; */
    margin-bottom: 30px;
}


/* ------------ Extra ------------CSS */


.extra{
    padding: 20px 60px 0px 60px;
}

.extra h2{
    border-bottom: 3px solid rgb(6, 95, 58);
    margin-bottom: 30px;
}

.extra h2 .extra-title{
    width: 15%;
    background-color: #3EAD4D;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    color: #fff;
    font-weight: 600;
    font-size: 3vmin;
    padding: 5px;
}

.extra .extra-row .extra-col{
    margin-bottom: 20px;
}

.extra .extra-row .extra-item{
    position: relative;
    box-shadow: 0px 0px 5px 1px rgb(212, 209, 209);
}

.extra .extra-row .extra-item .hover-type {
    position: absolute;
    z-index: 6;
    right: 0%;
    top: 0%;
    font-size: 15px;
    color: #fff;
    background: rgb(59, 128, 105);
    padding: 3px 12px;
    border-radius: 0px 0px 0px 5px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 20%), 0 3px 5px 0 rgb(0 0 0 / 19%);
}

.extra .extra-row .extra-item .extra-img{
    height: 150px;
    background-color: #ffffff;
    overflow: hidden;
}

.extra .extra-row .extra-item a{
    text-decoration: none;
}

.extra .extra-row .extra-item a h5{
    background-color: rgb(59, 128, 105);
    padding: 7px;
    color: #fff;
    font-size: 3vmin;
    transition: .3s ease-in-out;
}

.extra .extra-row .extra-item a h5:hover{
    color: black;
}

/* ------------End Extra ------------CSS */

/* ------------End details ------------CSS */

ul.social {
    padding: 0 !important;
    list-style: none !important;
}
ul.social {
    margin: 15px 0 10px !important;
    text-align: center !important;
    display: block;
}
ul.social li {
    display: inline-block !important;
    padding: 0 !important;
}
ul.social li {
    margin: 0 8px 8px 0 !important;
}
ul.social li a {
    display: inline-block !important;
    box-shadow: none !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
#team-social-link {
    border: 1px solid rgba(0, 150, 136, 1);
    background-color: rgba(0, 150, 136, 1);
    color: #ffffff;
}
#team-social-link:hover {
    color: rgba(0, 150, 136, 1);
    background-color: #ffffff;
}
ul.social i[class*="fa-"] {
    line-height: 35px !important;
    width: 35px !important;
    height: 35px !important;
}
.wpm-6310-tooltip:hover:after {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(0, 119, 181, 1);
    border-radius: 5px;
    color: #fff;
    content: attr(tooltip-href);
    margin: -85px 5px 0;
    font-size: 14px;
    line-height: 25px;
    padding: 8px 10px;
    position: absolute;
    z-index: 999;
    min-width: 140px;
}
.wpm-6310-tooltip:after {
    left: 21px !important;
    right: initial !important;
}
.team-name{
    color: rgb(0, 100, 0);
}
.nav-pills button{
    border: none;
    border-bottom: 1px solid green;
    border-right: 1px solid green;
    text-align: left;
}
.nav-pills .nav-link.active{
    color: #fff;
    background-color: #52c752;
}
.service-title{
    color:  #3ead4d;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
}
.service-sub-title{
    color: lightgrey;
}
.img-custom{
    width:100%;
    max-height: 200px;
    object-fit: cover;
    position: center;
}
.heading{
    text-align: left!important;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #c42929;
    color: #3EAD4D;
}
.active-nav{
    color :#029e49 !important;
}
.active-nav:hover{
    color: #fff !important;
    background: rgb(82, 199, 82);
}
.breadcumb-title{
    font-size:4vmin;
    color: rgb(82, 199, 82);
    font-weight: bolder;
    margin-left: 10px;
}
.information li {
    display: inline;
    color: #888;
    margin-right: 12px;
}
.information{
    margin: 1% 0;
}
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
.is-invalid~.invalid-feedback, .is-invalid~.invalid-tooltip, .was-validated :invalid~.invalid-feedback, .was-validated :invalid~.invalid-tooltip {
    display: block;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: 2.25rem!important;
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #ff0707;
    border-color: #ff0000 #dee2e6 #ff0909;
}
.stat-header{
    color: #fff;
    background-color: #52c752;
    padding: 1% 0;
    font-weight: bold;
    border-radius: 5px;
}
.nav-item .tab-link{
    color: #52c752;
    font-weight: bold;
}
.nav-item .tab-link:hover{
    background: #52c752;
    color: white;
}
.chart-container{
    position: relative;
    height: 450px;
    max-height:550px;
    width:100%;
}
.success-img{
    max-width: 100%;
    max-height: 200px;
    object-fit: fill;
    border-radius: 50%;
}
.testi-name{
    color: #52c752;
    font-weight: bold;
}
.blink{
    font-weight: normal;
    font-size: 16px;
}
.blink{
    animation: blink 1s linear infinite;
}
.marquee-row{
    background: #c42929;
    color: #fff;
    margin: auto 0px;
}
.marquee-link{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.marquee-link:hover{
    color: #3ead4e;
    text-decoration: none;
}
@keyframes blink {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
}
.action a{
    margin: 1%;
}
.action a:hover{
    text-decoration: none;
}
@media (max-width: 767px) {
    .mobile-hide{
        display: none;
    }
}
#st-1.st-hidden {
    opacity: 1!important;
}
.desc p img{
max-width: 100%!important;
}

/* ==========================================================================
   SUBSERVICES TAB SYSTEM & ANIMATION EFFECTS
   ========================================================================== */
.service-hero {
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.05);
}
.service-hero::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.nav-pills .nav-link {
    background-color: #fff !important;
    border: 1px solid var(--brand-border) !important;
    color: #495057 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: var(--transition-smooth) !important;
    font-size: 0.95rem;
}
.nav-pills .nav-link:hover {
    background-color: var(--brand-bg-light) !important;
    color: var(--brand-green) !important;
    border-color: var(--brand-green-light) !important;
    transform: translateX(4px);
}
.nav-pills .nav-link.active {
    background-color: var(--brand-green) !important;
    color: #fff !important;
    border-color: var(--brand-green) !important;
    box-shadow: 0 4px 12px rgba(1, 167, 85, 0.18) !important;
}
.nav-pills .nav-link.active i {
    color: #fff !important;
    opacity: 1 !important;
}

.min-height-250 {
    min-height: 250px;
}
@media (max-width: 991.98px) {
    .min-height-250 {
        height: 250px;
    }
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition-smooth);
}
.text-white-50:hover {
    color: #fff !important;
    text-decoration: none;
}
.opacity-2 {
    opacity: 0.2;
}

/* ==========================================================================
   EVENT CARD GRID STYLING
   ========================================================================== */
.event-grid-card {
    transition: var(--transition-smooth) !important;
    border: 1px solid var(--brand-border) !important;
}
.event-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(1, 167, 85, 0.15) !important;
    border-color: var(--brand-green-light) !important;
}
.event-grid-card img {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.event-grid-card:hover img {
    transform: scale(1.06);
}
.hover-text-green {
    color: #333;
    transition: var(--transition-smooth);
    text-decoration: none !important;
}
.hover-text-green:hover {
    color: var(--brand-green) !important;
}
.gap-2 {
    gap: 8px;
}

/* ==========================================================================
   GLOBAL PAGE HERO & BREADCRUMB STYLING
   ========================================================================== */
.global-page-hero {
    background: transparent !important;
    padding: 30px 0 10px 0 !important;
    border-bottom: none !important;
    margin-bottom: 2rem !important;
}

.global-page-hero h1.page-title {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--brand-green, #01a755) !important;
    border-left: 5px solid var(--brand-green, #01a755) !important;
    padding-left: 15px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px;
    margin: 0 !important;
}

/* ==========================================================================
   DETAIL FEATURED IMAGES & PARALLEL IMAGE LAYOUT
   ========================================================================== */
.detail-featured-image-wrapper {
    float: right;
    margin-left: 4%;
    margin-bottom: 20px;
    width: 32% !important;
    max-width: 32% !important;
}

.detail-featured-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--brand-border, #ddf3e8);
}

/* Sibling selector for parallel layout in detail pages (when both featured & description images exist) */
.detail-featured-image-wrapper + .desc img {
    width: 32% !important;
    max-width: 32% !important;
    float: left !important;
    clear: none !important;
    display: inline-block !important;
    margin: 0 4% 15px 0 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

@media (max-width: 768px) {
    .detail-featured-image-wrapper {
        float: none !important;
        margin: 0 auto 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .detail-featured-image-wrapper + .desc img {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 15px 0 !important;
        display: block !important;
    }
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL STYLING
   ========================================================================== */
.image-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    padding-top: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.image-lightbox-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.image-lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #f1f5f9;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 1000000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lightbox-caption {
    margin-top: 15px;
    display: block;
    width: 100%;
    text-align: center;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Fix active navbar link hover colors (prevent solid green background) */
.navbar-nav .nav-link.active-nav:hover {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--brand-green-hover, #008f48) !important;
}




