/* Mobile-first styles */
body {
    font-family: 'Arial', sans-serif;
    font-size:20px !important;
     text-align: justify!important;
}

#services {
    padding: 20px;
}

#services h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    Color:rgb(0, 0, 155);
}

/* Card container styles */
.card {
    margin-bottom: 20px;
}

.card-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #5529f7 !important;
     text-align: justify!important;
}

.card-subtitle {
    font-size: 2rem;
    color: #338cff;
    margin-bottom: 1rem;
}

.card-text {
    font-size:24px !important;
    font-size: 0.95rem;
    color: #100058;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Image styles for mobile */
.image-container img {
    width: 100%;
    height: auto;
}

/* Responsive for medium devices (Tablets) */
@media (min-width: 768px) {
    .card {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
         text-align: justify!important;
    }

    .card-body {
        flex: 1;
        padding: 2rem;
    }

    .image-container {
        width: 40%;
    }

    .text-container {
        width: 60%;
    }

    #services h2 {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-subtitle {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 1rem;
         text-align: justify!important;
    }
}

/* Responsive for larger devices (Desktops) */
@media (min-width: 1200px) {
    .card-title {
        font-size: 1.8rem;
    }

    .card-subtitle {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 1.1rem;
         text-align: justify!important;
    }
}





/* General styles for nav links */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: bold;
    color: #007bff; /* Default blue color for links */
    text-decoration: none;
    padding: 8px 15px;
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}




/* Hover effect */
.navbar-nav .nav-link:hover {
    color: white; /* Text color changes on hover */
    background-color: #0056b3; /* Darker blue background */
    border-radius: 4px; /* Rounded corners for hover effect */
}

/* Visited links */
.navbar-nav .nav-link:visited {
    color: #6c757d; /* Muted gray for visited links */
}

/* Active link */
.navbar-nav .nav-link.active {
    color: white;
    background-color: #28a745; /* Green for active state */
    border-radius: 4px;
}

/* Focus state */
.navbar-nav .nav-link:focus {
    outline: 2px dashed #0056b3; /* Dashed outline for focus */
    outline-offset: 2px;
}






.logo-border {
    height: 60px;
    border: 2px solid blue;
    border-radius: 5px;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.logo-border:hover {
    transform: scale(1.1); /* Slightly enlarge the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow */
}

/* Click effect (active state) */
.logo-border:active {
    transform: scale(0.95); /* Slightly shrink the image */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Reduce shadow */
}




/* Hero Section Styles */
/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh; /* Full screen height */
    background: url('../assets/img/empower.jpg'); /* Ensure correct path */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevent image repeat */
    animation: animateBackground 15s infinite alternate; /* Animation (if needed) */
    color: white; /* White text for contrast */
    text-align: center; /* Center text */
    padding: 20px;
    background-color: #333; /* Fallback color */
}

/* Animation for the Background (Optional) */
@keyframes animateBackground {
    0% {
        background-position: center center;
    }
    100% {
        background-position: right top;
    }
}



/* Keyframe animation for the background */
@keyframes animateBackground {
    0% {
        background-position: center top;
    }
    50% {
        background-position: center center;
    }
    100% {
        background-position: center bottom;
    }
}

/* Hero Text and Button Styling */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    background-color: #007bff; /* Button color */
    border: none;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #0056b3; /* Darker button color on hover */
}

