@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* Body Style --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* --- Header & Navigation --- */
header {
    background-color: #2c3a47;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.logo {
    max-width: 150px;
    height: auto;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #f39c12;
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; 
    min-height: 60vh;
    max-height: 100vh;
    padding: 0 5%;
    background-image: url('/images/Hands_holding007.jpg');
    background-size: cover;
    
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    max-width: 950px;
    margin: 0 auto 1rem;
    line-height: 1.2;
     text-shadow:
    -1px -1px 0 blue,
     1px -1px 0 blue,
    -1px  1px 0 blue,
     1px  1px 0 blue; 
}

.hero-content p {
    font-weight: 1200;
    font-size: 30px;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-shadow:
    -1px -1px 0 rgb(0, 0, 0),
     1px -1px 0 rgb(0, 0, 0),
    -1px  1px 0 rgb(0, 0, 0),
     1px  1px 0 rgb(0, 0, 0);
    
    
}

.hero-buttons .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0 0.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #535353;
}

.btn-primary {
    background-color: #ffffff00;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #707070;
}

/* --- Services Section --- */
.services-section {
    padding: 4rem 5%;
    background-color: #9e9e9e85;
    
} 

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    text-align: center;
    border: 1px solid #eee;
}
.service-card:hover{
    transform: scale(1.05);
}

.image-container {
    position: relative;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: #f39c12;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.service-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    
}
.service-card h3:hover{
    color: #f39c12;
}
.service-card p:hover{
    color: #f39c12;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #000000;
    line-height: 1.6;

}


.quote-section {
    background-color: #f39c12;
    height: flex;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;

}

.quote-text {
    font-size:30px;
    text-align: center;
    color: #eee;
    font-style: italic;
    font-weight: 600;
    max-width: 900px;


}
.site-footer {
    background-color: #333; 
    width: auto;
    height: 80px;
}

.footer-text {
    text-align: center;
    padding-top: 30px;
    color: #eee;
    font-size: 15px;
}
