/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&family=Alegreya+Sans:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Exo 2', sans-serif!important;
    background-color: #F8F7F7;
    color: #444;
}

/* Logo Styling */
.logo {
    height: 70px;
    width: auto;
}

/* Navbar */
.navbar {
    background-color: #F8F7F7;
    padding: 1rem;
    transition: background-color 0.3s ease;
}

.nav-link {
    color: #2F5878;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #8ea9b8;
}

.cta-button {
    background-color: #8ea9b8;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2F5878;
}

/* Hero Section */
.hero-section{
    background: url("../img/backdrop1.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #ffffff;
}

.hero-container {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);  /* Semi-transparent background for better contrast */
    padding: 4rem;
    border-radius: 10px;  /* Subtle rounding of corners */
    max-width: 1200px;  /* Keeps content width manageable on larger screens */
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.25rem;
}

.hero-title, .hero-subtitle {
    color: #ffffff; /* Make sure the text stands out against the background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow for better readability */
}


.hero-button {
    background-color: rgba(0, 0, 0, 0.5); /*semi transparent */
    border-color: darkred;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #2F5878;
}

/* Services Section */
.card{
    min-width: 250px;
    width: 90%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-section {
    padding: 5rem 0;
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-title {
    color: #2F5878;
    font-weight: bold;
    margin-bottom: 3rem;
    padding: 3rem;
}

.service-item {
    margin-bottom: 3rem;
    background-color: #F9F9F9;
    flex: 1;
    min-height: 350px; /* Adjust based on your desired height */
}

.service-card-title{
    height: 3rem;
    padding: 1rem;
}

.service-item:hover {
    box-shadow: 12px 12px 12px rgba(0,0,0,0.1),
    -10px -10px 10px white;
}

.service-icon {
    font-size: 3rem;
    color: #61B3CC;
}

.service-icon-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    color: #2F5878;
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
}

.service-description {
    color: #7B8D8D;
}

/* Carousel slider*/

.slider-photo{
    height: 200px;!important;
}

/* About Section */
.about-section {
    background-color: #F8F7F7;
    padding: 5rem 0;
}

.about-title {
    color: #2F5878;
    font-weight: bold;
    margin-bottom: 3rem;
}

.about-description {
    color: #7B8D8D;
}

.about-card{
    background-color: transparent;
    border-radius: 10px;
}

.about-title{
    min-height: 6rem;
    padding-top: 2rem;
    text-align: center;
}

.self-photo{
    max-width: 400px;
    min-width: 200px;
    width: 90%;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-title {
    color: #2F5878;
    font-weight: bold;
    margin-bottom: 3rem;
}

.contact-info {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);  /* Semi-transparent background for better contrast */
    margin-bottom: 1.5rem;
}

.contact-info .card-body {
    padding: 1.5rem;
}

.contact-form .contact-input {
    border-radius: 5px;
    border: 1px solid #61B3CC;
    color: #444;
}

.contact-button {
    background-color: #61B3CC;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #2F5878;
}

/* Footer Styling */
.footer {
    background-color: #1F415C;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer p {
    margin: 0;
    color: #F8F7F7;
}

.social-link {
    margin-right: 15px;
    color: #F8F7F7;
    transition: color 0.3s;
}

.social-link:hover {
    color: #61B3CC;
}
