body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.section {
    padding: 50px 0;
}

.bg-dark-blue {
    background-color: #2f4f7f;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ccc;
}

#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#hero h1 {
    font-size: 48px;
    font-weight: bold;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#hero p {
    font-size: 24px;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#hero button {
    z-index: 1;
}
.animate-fade-in {
    animation: fadeIn 2s ease-in-out;
}

.animate-slide-in {
    animation: slideIn 2s ease-in-out;
}

.animate-scale-up {
    animation: scaleUp 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

#services {
    background-color: #f7f7f7;
}

#about {
    background-color: #fff;
}

#contact {
    background-color: #f7f7f7;
}



.service-card {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-card i {
    color: #2f4f7f;
    margin-bottom: 20px;
}


.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    margin-bottom: 10px;
}

.service-card li::before {
    content: "\2022";
    font-weight: bold;
    margin-right: 10px;
}


.about-image {
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
}

.animate-slide-in {
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}


.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    font-weight: bold;
        margin-bottom: 10px;
    }

    .team-members {
        display: flex;
        justify-content: space-between;
    }

    .team-member {
        text-align: center;
        margin: 20px;
    }

    .team-member img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .hover-scale {
        transition: transform 0.3s ease-in-out;
    }
    
    .hover-scale:hover {
        transform: scale(1.1);
    }
    
    .animate-pulse {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    .hover-rotate {
        transition: transform 0.3s ease-in-out;
        }
    
        .hover-rotate:hover {
            transform: rotate(10deg);
        }
    
        .animate-fade-in-up {
            animation: fadeInUp 1s ease-in-out;
        }
    
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mission-values {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .value {
            text-align: center;
            margin: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }
        
        .value:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 1s ease-in-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reasons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .reason {
            text-align: center;
            margin: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }
        
        .reason:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .client-logos {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .client-logos img {
            width: 150px;
            height: auto;
            margin: 20px;
            transition: all 0.3s ease-in-out;
        }
        
        .client-logos img:hover {
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .gallery-images {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .gallery-images img {
            width: 300px;
            height: auto;
            margin: 20px;
            transition: all 0.3s ease-in-out;
        }
        
        .gallery-images img:hover {
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .mission-values, .reasons, .client-logos, .gallery-images, .team-members {
                flex-direction: column;
                align-items: center;
            }
        
            .value, .reason, .client-logos img, .gallery-images img, .team-member {
                margin: 20px 0;
            }
        }

        #footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
        }
        
        #footer h3 {
            margin-top: 0;
        }
        
        .social-media {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .social-media li {
            display: inline-block;
            margin-right: 10px;
        }
        
        .social-media a {
            color: #fff;
            font-size: 18px;
        }
        
        .social-media a:hover {
            color: #ccc;
        }
        
        #footer form {
            margin-top: 10px;
        }
        
        #footer input[type="email"] {
            width: 70%;
            height: 40px;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        #footer button[type="submit"] {
            width: 30%;
            height: 40px;
            padding: 10px;
            border: none;
            border-radius: 0 5px 5px 0;
            background-color: #555;
            color: #fff;
            cursor: pointer;
        }
        
        #footer button[type="submit"]:hover {
            background-color: #666;
        }

        .post {
            margin-bottom: 20px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }
        
        .post:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }
        
        .hover-scale {
            transition: transform 0.3s ease-in-out;
        }
        
        .hover-scale:hover {
            transform: scale(1.1);
        }
        
        .animate-slide-in {
            animation: slideIn 1s ease-in-out;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .read-more {
            color: #337ab7;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }
        
        .read-more:hover {
            color: #23527c;
            padding-left: 10px;
        }
        
        .post img {
            width: 100%;
            height: auto;
            border-radius: 10px 10px 0 0;
        }
        
        .post h3 {
            margin-top: 0;
        }
        
        .read-more {
            color: #337ab7;
            text-decoration: none;
        }
        
        .read-more:hover {
            color: #23527c;
        }