  body { font-family: 'Roboto', sans-serif; }

        /* Navbar */
        .navbar {
            background: linear-gradient(90deg, #c56ac1, #1c9b9b);
            transition: all 0.3s;
        }
        .navbar.scrolled {
            background: linear-gradient(90deg, #c56ac1, #1c9b9b);
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .navbar .nav-link {
            position: relative;
            color: #fff !important;
            font-weight: 500;
            transition: all 0.3s;
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: #ffd700;
            transition: width 0.3s ease;
            -webkit-transition: width 0.3s ease;
        }
        .navbar .nav-link:hover::after {
            width: 100%;
            left: 0;
            background: #ffd700;
        }
        .btn-primary {
            background: #ffd700;
            border: none;
            color: #000;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: scale(1.05);
            background: #e6c200;
        }

        /* Hero */
        .hero-section {
            position: relative;
            height: 50vh;
            background-color: #e5e8eb;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        /* .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,0.5);
        } */
        .hero-section .hero-content {
            position: relative;
            color: #fff;
            z-index: 2;
        }
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            animation: fadeInDown 1.2s ease forwards;
            opacity: 0;
        }
        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1.5s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInDown { 0% {opacity:0; transform:translateY(-20px);} 100% {opacity:1; transform:translateY(0);} }
        @keyframes fadeInUp { 0% {opacity:0; transform:translateY(20px);} 100% {opacity:1; transform:translateY(0);} }

        /* Footer */
        .footer-links a { color: #adb5bd; text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: #ffffff; }
        .social-icon { font-size: 1.2rem; margin-right: 10px; color: #adb5bd; transition: 0.3s; }
        .social-icon:hover { color: #ffd700; }
.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #0d6efd;
}

.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links li a {
    font-size: 0.95rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: #343a40;
    color: #fff;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .social-icons a {
        margin-bottom: 0.5rem;
    }
    .footer-links li a {
        font-size: 1rem;
    }
}

.hero-contact {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 100px 0;
}

/* Contact Cards */
.card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Contact Info Icons */
.contact-info i {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* CTA Section */
.cta-contact {
    background: #f8f9fa;
}




    /* About Section */
    .list-unstyled li {
        font-size: 1rem;
        font-weight: 500;
    }

    /* Form Card */
    .card {
        border-radius: 12px;
    }
    .form-label {
        font-size: 0.95rem;
        color: #333;
    }
    .btn-primary {
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        border: none;
    }
    .btn-primary:hover {
        background: linear-gradient(135deg, #6610f2, #0d6efd);
    }

    .hero-about {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 100px 0;
}
.team-card:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}
.cta-section {
    background: #f8f9fa;
}
 .stats-section {
        background: #f8f9fa; /* light background */
    }
    .stat-box {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .stat-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .icon-box {
        font-size: 2rem;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto;
    }
    .counter {
        font-size: 2rem;
        font-weight: 700;
    }
   
    
    .stat-box h3 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .stat-box p {
        font-size: 1rem;
        opacity: 0.9;
    }
     .carousel-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.4);
    }
   
    .icon-box {
        font-size: 2rem;
        width: 60px; height: 60px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        margin: 0 auto;
    }
    /* ================================
   Testimonials Section Styling
================================= */
section.py-5.bg-white {
    background: #f8f9fa; /* light gray background for contrast */
    position: relative;
    overflow: hidden;
}

section.py-5.bg-white h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

section.py-5.bg-white h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Card Styles */
section.py-5.bg-white .card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-5.bg-white .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Testimonial Text */
section.py-5.bg-white .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

section.py-5.bg-white .card p::before {
    content: "“";
    font-size: 2rem;
    color: #0d6efd;
    position: absolute;
    left: 0;
    top: -5px;
}

/* User Info */
section.py-5.bg-white .card img {
    border: 3px solid #0d6efd;
    padding: 2px;
    transition: transform 0.3s ease;
}

section.py-5.bg-white .card img:hover {
    transform: scale(1.1) rotate(3deg);
}

section.py-5.bg-white .card h6 {
    font-weight: 600;
    color: #222;
}

section.py-5.bg-white .card small {
    font-size: 0.85rem;
    color: #777;
}

/* Subtle gradient background effect */
section.py-5.bg-white::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

section.py-5.bg-white::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 16, 242, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

section.py-5.bg-white .container {
    position: relative;
    z-index: 1;
}
.stats-section {
        background: linear-gradient(135deg, #7498cd, #34126c);
        
        color: #fff;
        position: relative;
    }
    .stat-box h3 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .stat-box p {
        font-size: 1rem;
        opacity: 0.9;
    }

    .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #0d6efd;
    transform: translateX(-50%);
    z-index: -1;
}
.timeline-dot {
    width: 20px;
    height: 20px;
    z-index: 1;
}
.timeline-content {
    text-align: left;
}