html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    margin: 20px auto;
    max-width: 100%;
}


/* Hero Section */
#hero {
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    padding: 20px;
}

footer a {
    text-decoration: none;
}

/*.nav-tabs .nav-link {
    font-size: 1.1rem;
    color: #495057;
}

    .nav-tabs .nav-link.active {
        background-color: #007bff;
        color: white;
    }*/

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .card:hover {
        transform: scale(1.05);
        transition: transform 0.3s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }


/* Button Styling */
.nav-pills .nav-link {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

    .nav-pills .nav-link i {
        margin-right: 8px;
        font-size: 1.2rem;
    }

    /* Active Button */
    .nav-pills .nav-link.active {
        background-color: #0056b3;
        color: #fff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Hover Effect */
    .nav-pills .nav-link:hover {
        background-color: #004494;
        color: #fff;
    }

/* Features Section Enhancements */
#features .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #features .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    #features .card i {
        color: #0056b3;
    }

#features h2 {
    font-size: 2.5rem;
    color: #333;
}

#features p {
    color: #555;
    line-height: 1.6;
}

/* Circular Feature Containers */
.feature-circle {
    width: 250px;
    height: 250px;
    background-color: #fff;
    border-radius: 50%;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.3s ease, border-radius 0.4s ease, width 0.4s ease, background-color 0.3s ease;
    padding: 15px;
}

    /* Oval Transformation and Background on Hover */
    .feature-circle:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        width: 300px;
        height: 250px;
        background-color: #f9f9f9; /* Light gray background on hover */
    }

    /* Icon Styling */
    .feature-circle i {
        color: #0056b3;
        transition: color 0.3s ease;
    }

    .feature-circle:hover i {
        color: #004494;
    }

    /* Text Styling */
    .feature-circle h5 {
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .feature-circle:hover h5 {
        color: #222;
    }

    .feature-circle p {
        color: #555;
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    .feature-circle:hover p {
        color: #444;
    }

/* Testimonial Cards */
.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

/* Blockquote Styling */
blockquote {
    font-size: 1rem;
    font-style: italic;
    color: #555;
}

    blockquote footer {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
        font-style: normal;
    }

/* Icon Styling */
.testimonial-card i {
    color: #0056b3;
}



/* Contact Us Section */
#contact-us {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

    #contact-us h2 {
        font-size: 2.5rem;
        color: #333;
        font-weight: 700;
    }

    #contact-us p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

    #contact-us form .form-control {
        border-radius: 10px;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
    }

        #contact-us form .form-control:focus {
            border-color: #0056b3;
            box-shadow: 0 0 4px rgba(0, 86, 179, 0.3);
        }

    #contact-us .btn-primary {
        border-radius: 25px;
        font-size: 1rem;
        padding: 10px 20px;
    }

        #contact-us .btn-primary:hover {
            background-color: #004494;
        }

    /* Icons and Contact Info */
    #contact-us i {
        color: #0056b3;
        margin-right: 5px;
    }

    #contact-us a {
        color: #0056b3;
        transition: color 0.3s ease;
    }

        #contact-us a:hover {
            color: #003366;
        }


    /* Social Media Icons */
    #contact-us a {
        color: #0056b3;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        #contact-us a:hover {
            color: #003366;
            transform: scale(1.2);
        }


/* General Styling for Social Icons */
.social-icon {
    color: #0056b3; /* Default color */
    transition: color 0.3s ease, transform 0.3s ease;
}

    /* Facebook Hover */
    .social-icon.facebook:hover {
        color: #3b5998; /* Facebook Blue */
        transform: scale(1.2);
    }

    /* Twitter Hover */
    .social-icon.twitter:hover {
        color: #1da1f2; /* Twitter Blue */
        transform: scale(1.2);
    }

    /* LinkedIn Hover */
    .social-icon.linkedin:hover {
        color: #0077b5; /* LinkedIn Blue */
        transform: scale(1.2);
    }




/* Ensure the carousel is visually appealing */
#image-slider .carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

/* Fade-in effect for captions */
.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 10px;
    animation: fadeInUp 1s ease-in-out;
}

/* Animation for the caption text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for slides */
.carousel-item img:hover {
    transform: scale(1.05);
}

/* Custom styles for the indicators */
.carousel-indicators button {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #007bff;
}






/* General styles for smooth animation */
.carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Slide-up effect for captions */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-title {
    animation: slideUp 1s ease-in-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-description {
    animation: slideUp 1s ease-in-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Zoom-in effect on image hover */
.carousel-item img:hover {
    transform: scale(1.05);
}

/* Custom styles for carousel indicators */
.carousel-indicators button {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #007bff;
}