/* Custom CSS for IVDP Krishna Giri Website */

:root {
    --primary-color: #1e40af;
    --secondary-color: #059669;
    --accent-color: #ea580c;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gradient: linear-gradient(135deg, #1e40af, #059669);
    --purple-color: #7c3aed;
}

/* Global Styles */
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-family: "Salsa", cursive;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8, #047857);
}

/* Header Styles */
.navbar {
        background-color: #ff8e44 !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0px;
}
.navbar ul .active{ 
    background-color: #bdbdbd;
}
.navbar .navbar-nav li{ 
        border-right: 1px dotted #fefeff;
    /*ackgrbound-image: linear-gradient(180deg, #8378f9 0%, #7466e7 100%);*/
    padding: 8px 10px;
}
.dropdown-menu li{
    padding: 0 !important;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after {
    position: absolute;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 13px;
    bottom: 0;
    left: 96%;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after {
    width: 0%;
}

.dropdown-menu {
    border: none;
    padding: 0px;
}

.dropdown-item {
    border-bottom: 1px dotted #433b84;
    background-image: linear-gradient(180deg, #8378f9 0%, #7466e7 100%);
    transition: all 0.3s ease;
    color: #fff;
}

.nav-link {
    padding: 0px;
}

.text-primary {
    color: #ff2775 !important;
}

h2.fw-bold {
    color: #c93968;
}

h3.fw-bold,
h4.fw-bold,
.timeline-section h4,
h5.fw-bold {
    color: #4bc3bc;
 
}
a{
       text-decoration:none !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 40px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Welcome Section */
.welcome-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--dark-color);
    font-weight: 500;
}

/* Founder Cards */
.founder-card {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-image {
    position: relative;
    margin-bottom: 2rem;
}

.founder-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e5e7eb;
}

.founder-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.founder-achievements .badge {
    margin: 0.25rem;
}

/* Growth Section */
.growth-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    border-radius: 12px;
}

.growth-factor {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.growth-factor:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.growth-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.growth-factor:hover .growth-icon {
    transform: scale(1.1);
}

/* SHG Section */
.shg-stats {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
#shg{
    background: linear-gradient(90deg, rgb(255 255 255 / 36%) 0%, rgb(174 228 252 / 85%) 35%, rgb(162 215 237 / 46%) 100%), url(../img/shg-bg.jpg) !important;
    background-size: cover !important;
    background-position: center left;
}
.shg-feature {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.shg-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.shg-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.shg-feature:hover .shg-icon {
    transform: scale(1.1);
}

.success-story {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.success-badge {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

/* Impact Section */
.impact-area {
    background: #c499ee47;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-area:hover {
    background: rgb(246 185 207);
    transform: translateY(-5px);
}

.impact-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.impact-area:hover .impact-icon {
    transform: scale(1.1);
}

.impact-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
}

/* Quick Facts Section */
.bg-gradient {
    background: var(--gradient) !important;
}

.fact-card {
    background: rgb(69 211 203);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
      min-height: 225px;
}
.fact{
     gap: 46px; 
}
.fact .detailed-fact {
    min-height: 170px; 
}
.fact-card:hover {
    background: rgb(246 185 207);
    transform: translateY(-5px);
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.fact-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.detailed-fact {
    background: rgb(69 211 203);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 235px;
}

.detailed-fact:hover {
    background: rgb(246 185 207);
    transform: translateY(-3px);
}

.fact-icon {
    color: white;
    font-size: 2rem;
}

.fact-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.fact-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.fact-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.certification-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
}

.certification-item {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item:hover {
    color: white;
    transform: scale(1.05);
}

/* News & Events */
.news-item .card,
.event-item .card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.news-item .card:hover,
.event-item .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.news-item .card-title a{
        color: #005a55;
    font-weight: 500;
}
.event-date {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    padding: 0.75rem;
    border-radius: 8px;
    min-width: 60px;
}

/* Blog Section */
.blog-categories .btn {
    border-radius: 25px;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.blog-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-read-time {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.blog-meta {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.newsletter-section .card {
    background: var(--gradient) !important;
    border: none;
    border-radius: 20px;
}

/* Resources Section */
.resource-category {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
#resources h5{
        font-size: 20px;
}
#resources .card-body img{
    height:230px;
}
#resources{
        background-image: linear-gradient(to right, #ff00001c, #ffa5004f, #ffff0045, #0080004d, #0000ff45, #4b008236, #ee82ee47);
}

.resource-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
#resources .card-header{
    height:62px;
}
#resources .resource-item a{
        text-decoration: none;
    color: #ff2775;
}
.resource-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: #f1f5f9;
}

.bg-purple {
    background: var(--purple-color) !important;
}

.btn-purple {
    background: var(--purple-color);
    border-color: var(--purple-color);
    color: white;
}

.btn-purple:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    color: white;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.quick-link:hover .quick-icon {
    transform: scale(1.1);
}

.quick-title {
    font-weight: 600;
}

.resource-request .card {
    background: var(--gradient) !important;
    border: none;
    border-radius: 20px;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h6 {
    margin-bottom: 0.5rem;
}

.gallery-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
}

/* Footer */
footer {
        background: #007670 !important;
}
.footer-contact .map a{
    color:#fff !important;
    text-decoration:none !important;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Counter Animation */
.counter {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .founder-image img {
        width: 100px;
        height: 100px;
    }

    .welcome-badge {
        position: static;
        margin-top: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .fact-number {
        font-size: 2rem;
    }

    .fact-value {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .btn,
    footer {
        display: none !important;
    }

    .hero-section {
        height: auto;
        padding: 2rem 0;
    }

    .hero-overlay {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
         font-family: "Poppins", sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
         font-family: "Merriweather", serif;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
.btn:focus {
    /* outline: 2px solid var(--primary-color);
    outline-offset: 2px; */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .gallery-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* 01-07-2025 */
.fixed-top {
    position: relative !important;
}

.main-slider .slick-slide img {
    width: 100%;
    height: auto;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .navbar-nav .nav-link::after {
        position: absolute;
    }
}

/* 03-07-2025 */
.navbar-nav {
    margin: 0px auto;
}

.timeline-top-list .title img,
.timeline-bottom-list .title img {
    width: 33px;
}

.timeline-bottom-list .title,
.timeline-top-list .title {
    display: flex;
    margin-left: 5px;
}

.timeline-top-list p {
    margin-bottom: 0px;
    margin-top: 15px;
    padding-bottom: 35px;
    padding-left: 12px;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    min-height: 100px;
    border-left: 1px solid #4bc3bc;
    margin-left: 6px;
}

.about-area p {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .02em;
    line-height: 24px;
    color: #000;
}

.horiz-line {
    width: 100%;
    height: 5px;
    background: #4bc3bc;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.timeline-top-list::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    /* bottom: -9px;
    left: 8px; */
    background: #fff;
    border-width: 2.9291px;
    border-style: solid;
    border-color: #f6b9cf;
    border-image: initial;
    border-radius: 100%;
    transition: 0.3s;
}

.timeline-bottom-list::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    /* top: -9px;
    left: 26%; */
    background: #fff;
    border-width: 2.9291px;
    border-style: solid;
    border-color: #f6b9cf;
    border-image: initial;
    border-radius: 100%;
    transition: 0.3s;
}

.timeline-bottom-list p {
    padding-left: 12px;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 12px;
    min-height: 100px;
    border-left: 1px solid #4bc3bc;
    margin-left: 6px;
}

.timeline-bottom-list {
    padding-left: 7%;
}

#impact {
    background: linear-gradient(90deg, rgb(254 250 251 / 66%) 0%, rgb(252 229 238 / 31%) 35%, rgb(255 240 245) 100%),
        url(../img/bg1.jpg) !important;
    background-position: 100% 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

#growth {
    background: linear-gradient(90deg, rgb(246 206 255 / 0%) 0%, rgb(227 159 255 / 0%) 35%, rgb(239 206 255 / 0%) 100%),
        url(../img/cancer-bg.png) !important;
    background-position: 100% 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

#growth h2.fw-bold {
    color: #17599b;
}

#growth .text-primary {
    color: #0b8378 !important;
}

#impact h2 {
    color: #c93968;
}

#impact p {
    color: #111818;
        font-size: 20px;
}

#impact h5.fw-bold {
     color: #c93968;
    font-size: 50px;
}

.logo img {
    padding: 10px 0px;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .logo img {
        width: 100%;
        padding: 10px 0px;
    }

    .timeline-bottom-list {
        padding-left: 2%;
    }
}

.ivdp-breadcrumb-section {
    background: linear-gradient(90deg, rgb(255 255 255 / 58%) 0%, rgb(236 255 225 / 88%) 35%, rgb(255 255 255 / 0%) 100%), url(../img/breadcrumb.jpg);
    background-position: 100% 100%;
    background-size: cover;
    padding: 45px 0px;
}

.ivdp-breadcrumb-section ul {
    display: flex;
    padding: 0;
}

.ivdp-breadcrumb-section li {
    list-style: none;
    margin-left: 10px;
}

.card-title {
    font-size: 1rem;
    /* min-height: 3em; */
}

.card img {
    object-fit: cover;
}

/* 12-7-25 */

/* Highlight active main menu */
.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    /* Bootstrap blue */
    font-weight: 600;
}

/* Highlight active submenu item */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    color: #0d6efd !important;
    background-color: #ffffff !important;
    font-weight: 500;
}

/* Optional: hover effect */
.dropdown-menu .dropdown-item:hover {
    color: #0d6efd;
    background-color: #f8f9fa;
}
/* 23-07-2024 */
.sub-content h3{
    color: #c93968;
    font-weight: 700;
    font-size: 30px;
}
.sub-content h4{
     margin: 20px 0px;
     color: #4bc3bc;
     font-size: 20px;
}
.sub-content h3{
   margin-bottom: 35px;  
}
.sub-content h3:not(:first-of-type) {
    margin-top: 35px;
    margin-bottom: 35px;
}
.main-content{
  padding: 40px 0px;
}
.bread-crumb li a{
    text-decoration: none !important;
}
table th{
   background-color: #4bc3bc;
       text-align: left;
}
table td{
     text-align: left;
}
.success-story{
    background: var(--gradient);
    color: #fff !important;
}
.text-on a{
    color:#fff;
}
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgb(255 39 117) !important;
}
.visite-count{
        margin-top: -15px;
}
#error_9e53fe60103fb5b200e616077a5d5539115deb59{
    display:none !important;
}
#founders{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/founder-bg.jpg);
}
#history{
    background: linear-gradient(90deg, rgb(255 255 255 / 36%) 0%, rgb(174 228 252 / 85%) 35%, rgb(162 215 237 / 46%) 100%), url(../img/abstract-geometric-banner-free-vector.jpg) !important;
    background-size: cover !important;
}
.about-area{
    padding-top:50px;
    padding-bottom:50px;
}
#success{
 padding-top:50px;
    padding-bottom:50px;   
}
#success .card-body{
        height: 160px;
}
#news{
  background: linear-gradient(90deg, rgb(255 255 255 / 36%) 0%, rgb(174 228 252 / 85%) 35%, rgb(162 215 237 / 46%) 100%), url(../img/free-website-background-clipart-18.jpg) !important;
  background-size: cover !important; 
}
.date {
        color: #bb0043;
}
/* 20-08-2025 */