:root {
    --primary: #221f22;
    --secondary: rgba(40, 64, 107, 1);
    --light: #F7F9FB;
    --dark: #2C3E50;
    --text: #333333;
    --blue: #194c8eff;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.lead {
    font-weight: 600;
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 600;
}

a:hover {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: var(--transition);
}

.navbar-brand img {
    height: 146px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 12px;
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 800;
}

/* Full Width Banner Section */
.banner-section {
    margin-bottom: 5rem;
}

.banner-section .carousel-item {
    height: 650px;
}

.banner-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.banner-section .carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    bottom: 20%;
    left: 10%;
    right: 10%;
}

.banner-section .carousel-caption h3 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-section .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px;
}

/* Section Styles */
.section {
    padding: 90px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto;
}

/* NGO Verticals Section */
.vertical-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vertical-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.vertical-card h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vertical-card p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Student Till Death Program */
.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.program-card .card-body {
    padding: 30px;
}

.program-card h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Services Grid */
.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.service-card h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Health Check Camp Section */
.health-section {
    background-color: var(--light);
    padding: 70px 0;
    border-radius: 15px;
}

.cta-btn {
    margin: 0 12px;
    font-weight: 700;
}

/* Aim Section - Two Columns */
.aim-section {
    background-color: var(--light);
    padding: 90px 0;
}

.aim-content {
    padding-right: 50px;
}

.aim-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.aim-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.aim-content p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
}

/* Dark Sections */
.dark-section, .dark-section-right {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
}

.dark-section h2, .dark-section-right h2 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.8rem;
}

.dark-section p, .dark-section-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Young Initiators Section with Parallax */
.initiators-section {
    background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    position: relative;
}

.initiators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.initiators-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.initiators-content h2 {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 3rem;
    font-weight: 900;
}

.initiators-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Call to Action Section */

.cta-card {
    background: var(--white);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 35px 25px;
    border-radius: 15px;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cta-card h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.cta-card p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
}

.impact-stats {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
}

.impact-stats h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
}

.stat .h3 {
    font-size: 2.8rem;
    font-weight: 900;
}

.stat small {
    font-size: 1rem;
    font-weight: 600;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Icon Animations */
.icon-pulse {
    animation: pulse 2s infinite;
}

.icon-float {
    animation: float 3s ease-in-out infinite;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

/* Button Animations */
.btn-pulse {
    animation: pulse 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Keyframe Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 25px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
    font-size: 1.3rem;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-weight: 500;
}

footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    font-size: 1.2rem;
    font-weight: 700;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .banner-section .carousel-item {
        height: 550px;
    }
    
    .banner-section .carousel-caption h3 {
        font-size: 2.5rem;
    }
    
    .aim-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .banner-section .carousel-item {
        height: 450px;
    }
    
    .banner-section .carousel-caption {
        bottom: 10%;
    }
    
    .banner-section .carousel-caption h3 {
        font-size: 2rem;
    }
    
    .banner-section .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .initiators-section {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .banner-section .carousel-item {
        height: 400px;
    }
    
    .banner-section .carousel-caption h3 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
/* animation csss */
 /* Animation Classes */
 .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Icon Animations */
.icon-pulse {
    animation: pulse 2s infinite;
}

.icon-float {
    animation: float 3s ease-in-out infinite;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

/* Button Animations */
.btn-pulse {
    animation: pulse 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Keyframe Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* 
########## About us page css 
*/

    /* About Hero Section */
    .section-hero {
        background: var(--gradient);
        padding: 180px 0 100px;
        color: var(--white);
        position: relative;
        overflow: hidden;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }

    .section-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .section-hero-content {
        position: relative;
        z-index: 2;
    }

    .section-hero h1 {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        color: var(--white);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .section-hero .lead {
        font-size: 1.8rem;
        font-weight: 600;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }

    /* About Content Section */
    .about-content {
        background-color: var(--white);
    }

    .about-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    .about-content .lead {
        font-size: 1.4rem;
        font-weight: 600;
    }

    /* Feature Points */
    .feature-point {
        text-align: center;
        padding: 30px 20px;
    }

    .feature-point i {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .feature-point h5 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .feature-point p {
        font-size: 1.1rem;
        font-weight: 500;
    }

    /* Vision Section */
    .vision-content h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .vision-points {
        margin-top: 30px;
    }

    .vision-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .vision-item i {
        font-size: 1.5rem;
        margin-right: 15px;
        margin-top: 5px;
        flex-shrink: 0;
    }

    .vision-item h5 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .vision-item p {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0;
    }

    .vision-highlight {
        background: var(--primary);
        color: var(--white);
        border-left: 5px solid var(--secondary);
    }

    .vision-highlight h5 {
        font-weight: 700;
        margin-bottom: 0;
        color: var(--white);
    }

    /* Aim Section */
    .aim-content h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .focus-areas h5 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--dark);
    }

    .focus-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .focus-item i {
        margin-right: 12px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    /* Team Section */
    .team-section {
        background-color: var(--white);
    }

    .team-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
        text-align: center;
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .team-img {
        background: var(--light);
        padding: 40px 20px;
    }

    .team-img i {
        font-size: 4rem;
        color: var(--primary);
    }

    .team-info {
        padding: 30px 25px;
    }

    .team-info h4 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 5px;
        color: var(--primary);
    }

    .team-role {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 15px;
    }

    .team-info p {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.7;
    }

    /* Impact Section */
    .impact-stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark);
    }

    /* Animation Classes */
    .animate-fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.8s ease forwards;
    }
    
    .animate-fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .animate-slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        animation: slideInLeft 0.8s ease forwards;
    }
    
    .animate-slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.8s ease forwards;
    }
    
    .delay-1 {
        animation-delay: 0.2s;
    }
    
    .delay-2 {
        animation-delay: 0.4s;
    }
    
    .delay-3 {
        animation-delay: 0.6s;
    }
    
    /* Keyframe Animations */
    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .section-hero h1 {
            font-size: 2.8rem;
        }
        
        .section-hero .lead {
            font-size: 1.5rem;
        }
        
        .vision-content h2,
        .aim-content h2 {
            font-size: 2.3rem;
        }
    }

    @media (max-width: 768px) {
        .section-hero {
            padding: 150px 0 80px;
        }
        
        .section-hero h1 {
            font-size: 2.3rem;
        }
        
        .section-hero .lead {
            font-size: 1.3rem;
        }
        
        .vision-content h2,
        .aim-content h2 {
            font-size: 2rem;
            text-align: center;
        }
        
        .vision-item,
        .focus-item {
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .section-hero h1 {
            font-size: 2rem;
        }
        
        .section-hero .lead {
            font-size: 1.2rem;
        }
        
        .vision-content h2,
        .aim-content h2 {
            font-size: 1.8rem;
        }
    }

    /* 
    ##### services page 
    */

     /* Fixed Services Navigation */
.services-nav-section {
    position: sticky;
    top: 95px; /* Adjust based on your navbar height */
    z-index: 100;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Optional: Add scroll effect for better visual */
.services-nav-section.scrolled {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .services-nav-section {
        top: 70px; /* Adjust for mobile navbar height */
    }
    
 
    .services-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-nav-link {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* CTA */
i.fas.fa-arrow-up{
    color: var(--white) !important;
}
i.fas {
    color: var(--white) !important;
}
.h3.text-primary.mb-1.count-up {
    color: var(--secondary) !important;
}


/*
Mobile view set : media query 
*/
@media only screen and (max-width: 768px) {
    
    .navbar {
        padding: 0 !important;

    }
    .navbar-brand{
      transform: translateX(-20%) !important;  
    }
    
}

footer img.mb-6 {
    background: white;
    border-radius: 100%;
}


/*Havbar*/
  /* Custom styles for centered logo navbar */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px 0;
        }
        
        .navbar-brand {
            position: absolute;
            left: 46%;
            transform: translateX(-50%);
        }
        
        @media (max-width: 991px) {
            .navbar-brand {
                position: static;
                transform: none;
                margin: 0 auto;
            }
            
            .navbar-collapse {
                text-align: center;
            }
            
            .navbar-nav .btn {
                margin-top: 10px;
            }
        }
        
        .nav-link {
            color: #2C3E50;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #221f22;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }

