/*color: #e07474*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    top: 0;
    margin: 0;
    padding: 0;
    bottom: 0;
    box-sizing: border-box;
    font-family: "Work Sans", serif;
}
body {
    font-family: "Work Sans", serif;
    font-weight: 400;
    font-style: normal;
}
/* Optional: Add custom styles for the navbar */
.navbar {
    transition: background-color 0.3s ease;
}
/* Default background color */
.navbar.bg-light {
    background-color: white;
}

/* Background color after scrolling */
.navbar.bg-custom {
    background-color: #e07474;
    color: white;
}

h1,h5{
    color: #e07474;
}

header h1 {
    color: #fff;
}

header p {
    font-weight: bolder;
    font-size: 1.5rem;
}

.contact-body i{
    color: #e07474;
}

 /* Basic fade-in animation for sections */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Minimalist styling */
h2, h5 {
    font-weight: bold;
    margin-bottom: 1rem;
}
.about-summary h5 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-summary ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1rem;
}

.about-summary ul li {
    margin-bottom: 0.5rem;
}

/* Add spacing and padding for a clean look */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Container and Row Adjustments */
.detailed-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #000;
}

.detailed-summary .col-md-3 {
    margin-bottom: 1.5rem;
    text-align: center; /* Center the text within the columns */
    background-color: #f7f7f7; /* Light background for subtle appearance */
    border-radius: 8px; /* Rounded corners for a modern look */
    padding: 1.5rem;
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.detailed-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detailed-summary p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover effect */
.hover-effect:hover {
    background-color: #e0e0e0; /* Change to a slightly darker background on hover */
}

.detailed-summary h3,
.detailed-summary p {
    transition: color 0.3s ease; /* Smooth color change for text */
}

.hover-effect:hover h3,
.hover-effect:hover p {
    color: #008080 /* Change text color on hover */
}
/* Testimonials Section */
.testimonials .col-md-4 {
    background-color: #fff; /* White background for clarity */
    padding: 1.5rem;
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light box shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    margin-bottom: 1.5rem; /* Space between testimonial cards */
}

.testimonials .col-md-4 h6 {
    font-size: 1rem;
    margin-top: 1rem;
    color: #008080; /* Professional color for the name */
}

.testimonials .col-md-4 p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333; /* Dark gray text for readability */
}

/* Hover Effect for Box Shadow */
.testimonials .col-md-4:hover {
    transform: translateY(-5px); /* Slight upward shift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker, more prominent shadow */
}

/* Disclaimer Section */
.disclaimer {
    background-color: #f9f9f9; /* Light background for separation */
    padding: 3rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin-top: 3rem;
    color: #333; /* Dark gray text for easy reading */
}

.disclaimer h1 {
    font-size: 2rem; /* Larger font size for the heading */
    margin-bottom: 1.5rem;
    color: #008080; /* Blue color for professionalism */
}

.disclaimer p {
    font-size: 1rem;
    line-height: 1.8; /* Increased line height for readability */
    color: #555; /* Slightly lighter gray for the text */
    text-align: justify; /* Justified text for neat alignment */
    max-width: 800px; /* Limiting width for better readability */
    margin: 0 auto; /* Centering the text */
}

.about-container h3{
    color: #e07474;
}

/* Footer Styles */
footer {
    background-color: #008080; /* Dark blue for footer background */
    color: #fff; /* White text for visibility */
    padding: 2rem 0; /* Balanced padding for footer */
    position: relative; /* Ensures proper placement */
    bottom: 0;
    width: 100%;
    margin-top: auto; /* Keeps footer at the bottom */
}

footer h5 {
    font-size: 1.25rem;
    color: #fff; /* White color for headings */
}

footer p {
    font-size: 1rem;
    color: #ccc; /* Light gray text for paragraphs */
}

footer a {
    color: #fff; /* Links in the footer should remain white */
    text-decoration: none; /* No underline */
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for accessibility */
}

footer i {
    margin-right: 10px; /* Space between icon and text */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {

    .about-summary h5 {
        font-size: 1.1rem;
    }
    .about-summary ul li {
        font-size: 0.9rem;
    }

    .detailed-summary .col-md-3 {
        margin-bottom: 1rem;
        width: 100%;
    }

    .detailed-summary h3 {
        font-size: 1.25rem;
    }

    .detailed-summary p {
        font-size: 0.9rem;
    }

    .testimonials .col-md-4 {
        margin-bottom: 1rem;
        width: 100%; /* Ensure full-width on small screens */
    }

    .testimonials .col-md-4 h6 {
        font-size: 0.9rem;
    }

    .testimonials .col-md-4 p {
        font-size: 0.9rem;
    }

    .disclaimer h1 {
        font-size: 1.8rem;
    }

    .disclaimer p {
        font-size: 0.9rem;
        max-width: 100%; /* Full width on smaller screens */
    }
    footer .row {
        text-align: center; /* Center text on smaller screens */
    }
    
    footer .col-md-5 {
        margin-bottom: 20px;
    }
}
