:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --primary-color: #4a6cf7;
    --secondary-color: #00b894;
    --accent-color: #ff6b6b;
    --light-bg: #f8f9ff;
    --dark-text: #2d3748;
    --transition: all 0.4s ease;
    --primary: #1a2b4c;
    --secondary: #4a6cf7;
    --accent: #00b894;
    --light: #f5f7ff;
    --dark: #1a2b4c;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    color: var(--dark-text);
    overflow-x: hidden;
}

body.loaded #page-loader {
    opacity: 0;
    pointer-events: none;
}

.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.nav-link:hover {
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/molecule-pattern.png') repeat;
    opacity: 0.1;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    padding: 30px 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}


.demo-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

textarea.form-control {
    height: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.custom-indicators {
    justify-content: center;
    margin-bottom: 0;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
}

.custom-indicators .active {
    background-color: #0d6efd;
}

.indicator-numbers {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.indicator-number {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.indicator-number.active {
    color: #0d6efd;
    font-weight: bold;
}


.bottom-btn {
    top: 80px;
    right: 20px;
    bottom: auto;
}

.chatbot-btn {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9999;
}

.chatbot-btn .btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chatbot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chatbot-btn .btn {
    width: 55px;
    height: 55px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chatbox {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9998;
}

/* Add this CSS to your stylesheet */
.floating-image {
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Scroll Buttons */

.scroll-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    /* Moved up from bottom */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 10%;
    /* Changed to circle */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
    font-size: 18px;
}

.scroll-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* Remove any duplicate scroll button styles */
#scrollTopBtn,
.bottom-btn {
    display: none;
    /* These are duplicates */
}

/* Custom CSS for smaller slider images */
/* Hero Slider Full-Cover Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 900px;
    overflow: hidden;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
    max-width: 3000px;
}

.hero-section .carousel-item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section .carousel-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 600px;
}

.hero-section .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
}

.custom-indicators {
    bottom: 30px;
    z-index: 5;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.indicator-numbers {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 5;
}

.indicator-number {
    display: inline-block;
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    transition: color 0.3s;
}

.indicator-number.active {
    color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Text animation styles */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 650px;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Gradient Text */
.text-gradient-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Button */
.btn-gradient-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

/* Button Hover Effect */
.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 115, 223, 0.4);
}

/* Feature Card Styling */
.feature-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon sizing adjustments */
.icon-wrapper {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    margin-bottom: 1rem;
}

/* Text sizes */
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Button adjustments */
.btn-gradient-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Maintain other effects */
.text-gradient-primary {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.feature-card:hover .text-gradient-primary {
    -webkit-text-fill-color: cyan;

}

.carousel-wrapper {
    overflow: hidden;
    padding: 0 50px;
}

.horizontal-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide-group {
    flex: 0 0 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(74, 111, 165, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #4a6fa5;
    transform: scale(1.2);
}

.carousel-arrow {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #4a6fa5;
    color: white;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow i {
    font-size: 1.2rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 0;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }
}

/* Solutions Section Styles */
.carousel-slide {
    position: relative;
    margin-top: 30px;
    /* Space for the icon to appear above */
    padding-bottom: 20px;
    /* Extra space at bottom */
}

.feature-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    z-index: 10;
    top: -30px;
    /* Half of icon height to make it appear above */
}

.icon-wrapper {
    border: 2px solid #f8f9fa !important;
    background-color: white !important;
    transform: translateX(-50%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.horizontal-carousel {
    overflow: visible;
    /* Ensure icons aren't clipped */
}

.carousel-slide-group {
    padding: 20px 0;
    /* Extra vertical space */
}

/* Solutions Section Specific Styles */
#solutions .carousel-slide {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    flex: 0 0 33.333%;
    padding: 15px;
    min-width: 33.333%;
    box-sizing: border-box;
}

#solutions .carousel-slide-group {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

#solutions .horizontal-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Features Section Carousel Styles (keep existing) */
.features-carousel .carousel-slide {
    display: none;
    transition: transform 0.5s ease;
}

.features-carousel .carousel-slide.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.features-carousel-mobile .carousel-slide-mobile {
    display: none;
    transition: transform 0.5s ease;
}

.features-carousel-mobile .carousel-slide-mobile.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Solutions Carousel Navigation */
#solutions .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#solutions .carousel-arrow.prev {
    left: 0;
}

#solutions .carousel-arrow.next {
    right: 0;
}

#solutions .carousel-arrow:hover {
    background: white;
}

#solutions .carousel-arrow:hover i {
    color: #4a6cf7 !important;
}

#solutions .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

#solutions .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

#solutions .carousel-dot.active {
    background-color: white;
    transform: scale(1.2);
}

#solutions .carousel-dot:hover {
    background-color: white;
}

/* Override scroll animations for solutions carousel */
#solutions .carousel-slide-group .carousel-slide.scroll-animate-stagger {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Design for Solutions */
@media (max-width: 1200px) {
    #solutions .carousel-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    #solutions .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    #solutions .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Additional styles for the parallax solutions section */
#solutions.parallax-section {
    position: relative;
    overflow: hidden;
}

#solutions .carousel-arrow {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#solutions .carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

#solutions .carousel-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

#solutions .feature-card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#solutions .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Custom CSS for feature images */
.feature-image {
    max-height: 300px;
    /* Adjust this value as needed */
    width: auto;
    object-fit: contain;
    border: 5px solid #078f44ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

/* Animation classes */
.animate__animated {
    animation-duration: 1s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .feature-image {
        max-height: 300px;
        margin-bottom: 20px;
    }
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid rgba(13, 110, 253, 0.1);
}

.quote-icon {
    font-size: 1.5rem;
    color: rgba(13, 110, 253, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    min-height: 80px;
}

.rating {
    color: #ffc107;
    font-size: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60%;
}

.client-logos {
    padding: 20px 0;
}

.logo-item {
    max-width: 120px;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-inner .col-md-4 {
        width: 100%;
        margin-bottom: 15px;
    }

    .client-img img {
        width: 70px;
        height: 70px;
    }

    .testimonial-text {
        min-height: auto;
    }

    .logo-item {
        max-width: 90px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-icon {
    color: #4CAF50;
    font-size: 60px;
    margin-bottom: 20px;
}

.modal h2 {
    color: #333;
    margin-bottom: 15px;
}

.modal p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #45a049;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Page Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    /* Slightly stronger blur */
    transition: opacity 0.8s ease-out;
    /* Smoother fade out */
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(34, 74, 190, 0.15);
    /* Lighter border */
    border-radius: 50%;
    border-top-color: #224abe;
    border-right-color: #224abe;
    animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    margin-bottom: 25px;
}

.loader-text {
    font-size: 28px;
    font-weight: 700;
    color: #224abe;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.subtext {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Fade out when loaded */



.parallax-section {
    position: relative;
    /* height: 100vh;*/
    overflow: hidden;
}

.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/parllaximages/background.png');
    /* local image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}


.parallax-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 43, 76, 0.85), rgba(74, 108, 247, 0.8));
}

.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    color: var(--dark);
    border-top: 4px solid var(--secondary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.client-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary);
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.client-info h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.client-info .text-muted {
    color: #6c757d !important;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background-size: 60%;
}

/* Animation for content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-content {
    animation: fadeInUp 1s ease-out;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Digital elements */
.digital-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.digital-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Logo carousel styles */
.logo-container {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;

}

.logo-container:hover {
    background: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    border-radius: 50%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: -1px;
}

.carousel-control-next {
    right: -1px;
}

@media (max-width: 768px) {
    .carousel-control-prev {
        left: -10px;
    }

    .carousel-control-next {
        right: -10px;
    }

    .logo-container {
        height: 100px !important;

    }

    .client-logo {
        max-height: 60px !important;
    }
}

/* Enhanced Solutions Section Styles */
.solutions-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}


.digital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.15;
    overflow: hidden;
}

.digital-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(66, 153, 225, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 40%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 18s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.title-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    margin: 15px auto;
    border-radius: 2px;
}

.modern-carousel {
    padding: 20px 0;
}

.solution-card {
    padding: 20px;
    height: 100%;
}

.solution-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.solution-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.card-front,
.card-back {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
    border-radius: 16px;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.solution-card:hover .card-inner {
    transform: rotateY(180deg);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    position: relative;
}

.icon-wrapper:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
    animation: pulse 2s infinite;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
}

.solution-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.card-actions {
    margin-top: auto;
}

.view-details {
    color: #a5b4fc;
    font-weight: 500;
    transition: all 0.3s;
}

.solution-card:hover .view-details {
    color: white;
}

.btn-gradient-primary {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-gradient-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-gradient-primary:hover:before {
    left: 100%;
}

.btn-gradient-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-gradient-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 1px;
}

.carousel-arrow.next {
    right: 1px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.placeholder-card {
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 100;
}


/* Carousel styling */
.carousel-wrapper {
    padding: 20px 0 40px;
}

.horizontal-carousel {
    overflow: 0;
    width: 100%;
    padding: 10px 0;
}



@keyframes pulse {
    0% {
        transform: scale(1.3);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-slide-group {
        flex-direction: column;
    }

    .carousel-slide {
        margin-bottom: 20px;
    }

    .carousel-arrow {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

.digital-solutions-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: white;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.digital-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
}

.digital-element {
    position: absolute;
    color: rgba(66, 153, 225, 0.7);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.2rem;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 3;
}


.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.5), transparent);
    animation: circuitFlow 6s linear infinite;
    animation-delay: var(--line-delay);
}

.circuit-line:nth-child(1) {
    top: 20%;
    width: 80%;
}

.circuit-line:nth-child(2) {
    top: 60%;
    width: 70%;
    left: 10%;
}

.circuit-line:nth-child(3) {
    top: 80%;
    width: 90%;
    left: 5%;
}



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}


.testimonial-content {
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #4299e1, #9f7aea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #cbd5e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.digital-carousel {
    position: relative;
    margin-bottom: 80px;
}

.digital-testimonial-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.digital-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(66, 153, 225, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #4299e1;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content h5 {
    color: white;
    margin-bottom: 5px;
}

.quote-icon {
    color: #4299e1;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rating {
    color: #fbbf24;
}

.carousel-controls {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.digital-control {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
}

.control-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(66, 153, 225, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.digital-control:hover .control-bg {
    background: rgba(66, 153, 225, 0.4);
    transform: scale(1.1);
}

.digital-control i {
    color: white;
    font-size: 1.2rem;
}

.digital-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4299e1;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .digital-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .digital-testimonial-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .client-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


.features-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f5ff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.feature-item {
    transition: var(--transition);
    margin-bottom: 5rem !important;
}

.feature-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(5deg);
}

.feature-item:hover .feature-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(74, 108, 247, 0.2);
}

.feature-image {
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
    transform: scale(1.03);
}

.feature-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;

}


.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-content::before {
    opacity: 1;
}

.icon-wrapper {
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
}

.feature-item:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.feature-list-item {
    background: #f8faff;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

/* Cursor bubble styles */
/* Enhanced Cursor bubble styles */
.cursor-bubble {
    position: fixed;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(15, 30, 80, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, background 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(15, 30, 80, 0.6);
    backdrop-filter: blur(2px);
}

.cursor-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-bubble.active {
    transform: translate(-50%, -50%) scale(1.3);
    background: rgba(15, 30, 120, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(15, 30, 120, 0.8);
}

.cursor-bubble.hover {
    transform: translate(-50%, -50%) scale(1.6);
    background: rgba(8, 20, 60, 0.95);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 25px rgba(8, 20, 60, 0.9);
}

.cursor-bubble.link-hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(74, 108, 247, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px rgba(74, 108, 247, 0.8);
}

.cursor-bubble.button-hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(0, 184, 148, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px rgba(0, 184, 148, 0.8);
}

/* Hide cursor bubble on mobile devices */
@media (max-width: 768px) {
    .cursor-bubble {
        display: none;
    }
}

/* Optional: Hide default cursor for better effect */
/* Uncomment if you want to hide the default cursor */
/*
        * {
            cursor: none !important;
        }
        */