<style>
        body { font-family: 'Inter', sans-serif; }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/brandvridhi_bannerhome.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
        }
        .service-card {
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover { transform: translateY(-10px); }
        .btn-primary { background-color: #0d6efd; border: none; padding: 12px 30px; }
		
		/* Slider Customization */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.testimonial-card i {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.carousel-indicators {
    bottom: -10px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.testimonial-card p {
    line-height: 1.6;
}

/* Contact Section Enhancements */
.contact-gradient {
    background: linear-gradient(135deg, #0b0d17 0%, #161b2e 100%);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Effect */
.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
}

.contact-info-card {
    background: rgba(13, 110, 253, 0.05);
    transition: 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(13, 110, 253, 0.15);
}

/* Modern Input Styling */
.custom-input {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 12px 15px;
    transition: 0.3s;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #0d6efd !important;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select option {
    background-color: #161b2e;
    color: white;
}

/* Logo Slider Styles */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 10); /* Width of one logo * total number of logos */
    animation: scroll 40s linear infinite;
}

.slidelogo {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.slidelogo img {
    width: 120px;
    filter: grayscale(100%); /* Makes logos look uniform */
    opacity: 0.6;
    transition: 0.3s;
}

.slidelogo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframe for smooth infinite scrolling */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } /* Halfway point of the track */
}

/* Pause on hover so users can see a specific logo */
.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}
/* Why Us Styles */
.ls-2 {
    letter-spacing: 2px;
}

#why-us .bi-arrow-right {
    animation: slideRight 2s infinite;
}

@keyframes slideRight {
    0% { transform: translateX(-5px); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
    100% { transform: translateX(-5px); opacity: 0.5; }
}

#why-us ul li span {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Process Section Styles */
.process-box {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
    transition: 0.3s;
}

/* Horizontal Line connecting the steps (Desktop Only) */
@media (min-width: 768px) {
    .process-box::after {
        content: '';
        position: absolute;
        top: 30px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #dee2e6;
        z-index: -1;
    }
    /* Remove line from the last box */
    .col-md-3:last-child .process-box::after {
        display: none;
    }
}

.process-box:hover .step-number {
    background: #0b5ed7;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4) !important;
}

.process-box h5 {
    margin-bottom: 15px;
    transition: 0.3s;
}

.process-box:hover h5 {
    color: #0d6efd;
}
    </style>

.navbar-light .navbar-nav .nav-link {
    color: #333; /* Dark gray for links */
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0d6efd; /* Changes to your primary blue on hover */
}

.navbar-light .navbar-nav .nav-link.active {
    color: #0d6efd !important;
}


/* About us page style */
 :root { --primary-color: #0d6efd; --dark-bg: #0b0d17;--soft-bg: #f8fbff; --primary-blue: #0d6efd;  }
        body { font-family: 'Inter', sans-serif; color: #444; }

       
        
        .about-hero {
            background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
            padding: 120px 0 80px;
        }

        .stat-box {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05);
            border-bottom: 4px solid var(--primary-blue);
            transition: 0.3s;
        }
        .stat-box:hover { transform: translateY(-10px); }

        .vision-card {
            background: var(--primary-blue);
            color: white;
            border-radius: 30px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .tech-pill {
            display: inline-block;
            padding: 8px 20px;
            background: #e7f1ff;
            color: var(--primary-blue);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin: 5px;
        }

        .founder-img {
            border-radius: 30px;
            box-shadow: 20px 20px 0px #e7f1ff;
        }
		
		
		
/*services page style 

 body { color: #2d3436; line-height: 1.6; }*/
       
        .service-hero{
            /*background: linear-gradient(45deg, var(--dark-bg) 30%, rgba(13, 110, 253, 0.8)), url('../images/services.jpg');*/
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/services.jpg');
            background-blend-mode: overlay;
            background-size: cover;
            padding: 100px 0;
            color: white;
        }
        .process-step { border-left: 3px solid var(--primary-color); padding-left: 20px; position: relative; }
        .process-step::before {
            content: ''; width: 15px; height: 15px; background: var(--primary-color);
            border-radius: 50%; position: absolute; left: -9px; top: 0;
        }
		
		.list-group-item {
    border: none;
    border-radius: 8px !important;
    margin-bottom: 10px;
    font-weight: 600;
}
.list-group-item.active {
    background-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: bold;
}


/* Custom FAQ Styling */
.ls-2 { letter-spacing: 2px; }

.custom-faq .accordion-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.custom-faq .accordion-item:hover {
    transform: translateX(10px);
    border-color: #0d6efd !important;
}

.custom-faq .accordion-button {
    font-size: 1.1rem;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #333;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #0d6efd;
}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ps-5-custom {
    padding-left: 3.5rem;
}

.faq-number {
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
}
   
   
  /*Our Team page */
  
    .team-card { border: none; overflow: hidden; transition: 0.3s; }
        .team-card:hover { transform: translateY(-10px); }
        .team-img-container { position: relative; overflow: hidden; border-radius: 15px; }
        .social-overlay {
            position: absolute; bottom: -50px; left: 0; width: 100%;
            background: rgba(13, 110, 253, 0.9); transition: 0.3s;
            padding: 10px 0; text-align: center;
        }
        .team-card:hover .social-overlay { bottom: 0; }
        .social-overlay a { color: white; margin: 0 10px; font-size: 1.2rem; }