
:root {
    --primary-color: #7BC142;
    --secondary-color: #2B2873; 
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --light-color: #ffffff;
}

body {
    overflow-x: hidden;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, 'Geneva', Verdana, sans-serif, 'Poppins';
    color: #333;
}

.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px lab(93.65% 2.69 0.95 / 0.927);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

        #hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--light-color);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        #hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        #hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-custom {
            background-color: var(--light-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-custom:hover {
            background-color: var(--secondary-color);
            color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .services-card {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .services-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 3px solid var(--primary-color);
        }
        
        .services-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .services-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .about-content {
            padding: 40px;
        }
        
        .about-image img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 50px 0 20px;
        }
        
        .footer-links h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: var(--light-color);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .feature-item {
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            color: var(--light-color);
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .tech-icons {
            position: absolute;
            opacity: 0.1;
            font-size: 10rem;
            z-index: 0;
        }
        
        .tech-icon-1 {
            top: 20%;
            left: 10%;
            animation: float 6s ease-in-out infinite;
        }
        
        .tech-icon-2 {
            bottom: 20%;
            right: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .tech-icon-3 {
            top: 50%;
            right: 20%;
            animation: float 7s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .logo-color-text {
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }
        
        .section-center-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .section-center-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .newsletter-form .form-control {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            height: 50px;
        }
        
        .newsletter-form .btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
        }
        
        .newsletter-form .btn:hover {
            background-color: var(--secondary-color);
        }


         /* Partners section styling */
  #partners {
    background-color: #fff;
}

.partner-logo {
    max-width: 150px;
    padding: 15px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Custom carousel controls styling */
#partner-carousel .carousel-control-prev,
#partner-carousel .carousel-control-next {
    width: 5%;
}

#partner-carousel .carousel-control-prev-icon,
#partner-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
}

