        body {
            font-family: "Times New Roman", Times, serif;
        }
        .top-header {
            background-color: #0d7dfd;
            padding: 8px 0;
            font-size: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .contact-info a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            white-space: nowrap;
        }
        .contact-info a:hover {
            color: #f8f9fa;
        }
        .social-icons a {
            color: white;
            margin-left: 12px;
            font-size: 15px;
            transition: all 0.2s ease;
        }
        .social-icons a:hover {
            color: #d1e3ff;
        }
        .fas, .fab {
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            .top-header {
                padding: 8px 0;
            }
            .contact-info {
                justify-content: flex-start !important;
                margin-bottom: 3px;
                flex-wrap: wrap;
                gap: 2x;
            }
            .social-icons {
                justify-content: flex-start !important;
                margin-top: 1px;
                flex-wrap: wrap;
                gap: 2px;
            }
            .contact-info a, 
            .social-icons a {
                margin: 0;
                font-size: 12px;
            }
            .contact-info a i,
            .social-icons a i {
                margin-right: 4px;
            }
        }
.navbar {
    background: linear-gradient(rgba(7, 97, 224, 0.3), rgba(7, 97, 224, 0.3)), 
                url('') center/cover no-repeat !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled state */
.navbar.scrolled {
    background: linear-gradient(rgba(7, 97, 224, 0.85), rgba(7, 97, 224, 0.85)) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile menu */
.navbar.show {
    background: rgba(7, 97, 224, 0.97) !important;
}

/* Dropdown menu - Fixed positioning */
.dropdown-menu {
    background: rgba(7, 97, 224, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 0;
    transform-origin: top;
    display: none; /* Changed from transform/opacity to display none/block */
    transition: all 0.3s ease;
    margin-top: 0; /* Remove any default margin */
}

.dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav items - Square hover effect */
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    margin: 0 0.25rem;
    font-size: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 97, 224, 0.97);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
    border: 2px solid white;
}

.nav-link:hover {
    color: white;
    transform: translateY(-3px);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown items */
.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-header {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
}

/* Mobile toggler */
.navbar-toggler {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Ensure dropdown stays visible when hovering */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Modern Carousel Styling */
.custom-carousel-img {
    height: 70vh;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.carousel:hover .custom-carousel-img {
    filter: brightness(0.5);
    transform: scale(1.02);
}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70%;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    padding: 1rem;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.carousel-caption {
    bottom: 0;
    top: 0;
    padding-bottom: 8rem;
}

.carousel-caption div {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e6e6e6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.carousel-caption p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-carousel {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--btn-color-1), var(--btn-color-2));
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.btn-carousel:hover::before {
    background: linear-gradient(45deg, var(--btn-color-2), var(--btn-color-1));
}

.btn-primary {
    --btn-color-1: #4e54c8;
    --btn-color-2: #8f94fb;
}

.btn-success {
    --btn-color-1: #38ef7d;
    --btn-color-2: #11998e;
}

.btn-warning {
    --btn-color-1: #f46b45;
    --btn-color-2: #eea849;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-caption h2 {
        font-size: 2.8rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .custom-carousel-img {
        height: 70vh;
    }
    
    .carousel-caption h2 {
        font-size: 2.2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-carousel {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .carousel-caption div {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
}
.solutions-section {
    position: relative;
    overflow: hidden;
    text-align:justify;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.solutions-section {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        font-family: 'Roboto', Arial, sans-serif;
    }

    .solutions-section .container {
        position: relative;
        z-index: 1;
        max-width: 900px;
    }

    .solutions-section h2 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        display: inline-block;
        border-bottom: 2px solid #0056b3;
        padding-bottom: 5px;
        margin-bottom: 12px !important;
    }

    .solutions-section p {
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .solutions-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(0, 86, 179, 0.05);
        border-radius: 50%;
    }

    .solutions-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 200px;
        height: 200px;
        background: rgba(0, 86, 179, 0.05);
        border-radius: 50%;
    }

    @media (max-width: 768px) {
        .solutions-section {
            padding: 2rem 1rem !important;
        }
        
        .solutions-section h2 {
            font-size: 1.3rem;
            white-space: normal;
        }
        
        .solutions-section p {
            font-size: 0.9rem;
            white-space: normal;
            text-overflow: clip;
        }
    }
.products-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 60px 0;
}

.divider {
    width: 80px;
    height: 3px;
    background: #0d6efd;
    margin: 0 auto 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 50px;
    margin-top: 40px;
    height: 100%; /* Ensure all cards take full height */
    display: flex;
    flex-direction: column;
}

/* Equal width and height enforcement */
.row.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-icon-wrapper {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}


.product-body {
    padding: 20px;
    flex-grow: 1; /* Allows content to expand equally */
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1; /* Equal height description */
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    flex-grow: 1;
}

.product-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 3px;
}

.product-footer {
    padding: 0 20px 20px;
    text-align: center;
    margin-top: auto; /* Pushes footer to bottom */
}

.btn-card {
    padding: 8px 20px;
    font-size: 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    min-width: 140px; /* Fixed button width */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-card i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-card:hover i {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .product-card {
        margin-bottom: 5px; /* Extra space for mobile */
        margin-top: 5px;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .product-icon-wrapper {
        top: -30px;
    }
    
    .btn-card {
        min-width: 120px; /* Slightly smaller on mobile */
    }
}

 .content {
        padding: 20px 0;
        background-color: #f9f9f9;
        font-size: 1.05rem;
    }
    
    .section-heading {
        color: #2c3e50;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 20px  10px;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #eee;
        display: inline-block;
        width: 100%;
    }
    
    .highlight {
        padding: 3px 8px;
        border-radius: 4px;
        display: inline-block;
        font-weight: 600;
    }
    
    .highlight.light {
        background-color: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
    }
    
    .highlight.default {
        background-color: rgba(25, 135, 84, 0.1);
        color: #198754;
    }
    
    .content p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: #495057;
        text-align: left;
    }
    
    .btn-primary {
        padding: 12px 30px;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
        background-color: #0d6efd;
        border: none;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 6px rgba(13, 110, 253, 0.2);
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
        background-color: #0b5ed7;
    }
    
    .text-end {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        text-align: right;
    }
    
    @media (max-width: 768px) {
        .content {
            padding: 40px 0;
        }
        
        .section-heading {
            font-size: 1.3rem;
        }
        
        .btn-primary {
            padding: 10px 25px;
            font-size: 0.95rem;
        }
    }
    .prabhat-features {
        padding: 60px 0;
        background-color: #f8f9fa;
    }
    
    .section-heading {
        margin-bottom: 25px;
        color: #2c3e50;
        font-size: 1.5rem;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }
    
    .section-heading:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: #0d6efd;
    }
    
    .prabhat-benefits {
        list-style: none;
        padding-left: 0;
        margin-top: 20px;
    }
    
    .prabhat-benefits li {
        margin-bottom: 12px;
        padding-left: 30px;
        position: relative;
        color: #495057;
    }
    
    .prabhat-benefits i {
        color: #198754;
        position: absolute;
        left: 0;
        top: 4px;
    }
    
    .testimonial-wrapper {
        background: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .testimonial-card {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
    }
    
    .testimonial-card:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .rating {
        color: #ffc107;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        line-height: 1.6;
    }
    
    .client-info {
        margin-top: 15px;
    }
    
    .client-info strong {
        display: block;
        color: #2c3e50;
    }
    
    .client-info span {
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .progress-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .progress-item span:first-child {
        width: 150px;
    }
    
    .progress {
        flex-grow: 1;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        margin: 0 15px;
    }
    
    .progress-bar {
        background: #0d6efd;
        border-radius: 4px;
    }
    
    .progress-item span:last-child {
        width: 40px;
        text-align: right;
        font-weight: 600;
    }
    
    .btn-primary {
        background: #0d6efd;
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    @media (max-width: 991px) {
        .prabhat-features {
            padding: 40px 0;
        }
        
        .col-lg-6:first-child {
            margin-bottom: 40px;
        }
    }
    .client-logos {
        padding: 0;
        background-color: #f9fafb;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        color: #2d3748;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        color: #718096;
        font-size: 1.1rem;
    }
    
    .logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .logo-item {
        position: relative;
        padding: 2px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 120px;
    }
    
    .logo-item:hover {
        transform: translateY(-5px);
    }
    
    .logo-item img {
        max-height: 60px;
        width: auto;
        max-width: 100%;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .logo-item:hover img {
        filter: grayscale(0);
        opacity: 1;
    }
    
    .logo-tooltip {
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        color: #4a5568;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .logo-item:hover .logo-tooltip {
        opacity: 1;
    }
    
    .view-more {
        text-align: center;
        margin-top: 3rem;
    }
    
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: #2563eb;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .client-logos {
            padding: 3rem 0;
        }
        
        .logo-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .logo-item {
            padding: 1.5rem;
            height: 100px;
        }
        
        .logo-item img {
            max-height: 50px;
        }
    }
    /* Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rating {
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    justify-content: space-between;
}

.client-info strong {
    color: #333;
}

.client-info span {
    color: #777;
    font-size: 0.9em;
}

/* Progress Bars */
.progress-skill-bar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-skill-bar li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.lable {
    width: 50px;
    font-weight: bold;
    color: #2ecc71;
    margin-right: 10px;
    text-align: right;
}

.progress_skill {
    flex-grow: 1;
    background: #f5f5f5;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px;
    color: white;
    font-size: 12px;
    line-height: 20px;
    padding-left: 10px;
    white-space: nowrap;
    transition: width 1s ease-in-out;
}

.testimonial-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author h5 {
    color: #2c3e50;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}