@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: #ffffff;
    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 {
    background-image: url('/images/background001.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    height:20vh;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow:
    -1px -1px 0 blue,
     1px -1px 0 blue,
    -1px  1px 0 blue,
     1px  1px 0 blue; 
    max-width: 950px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    opacity: 100%;
    background-color: #2c3a4700;
}

.hero-content p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 2rem;
    background-color: #f39c12;
}

.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: #333;
}

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

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

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

}

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

.service-card {
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5%;

}
.services-grid :hover{
    cursor: pointer;
    color: #f39c12;
    opacity: 100%;
    scale: 103%;
    
}

.image-container {
    position: relative;
}

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

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

.service-card h3 {
    margin-top: 2.5rem; /* Space for the icon */
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

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

.pdf-file{
            padding: 1rem 0; 
            text-align: center;
        }

.pdf-file h2 {
            font-size: 2.25rem;
            font-weight: 700; 
            margin-bottom: 1.5rem; 
            color: #000000;
}

.pdf-file p {
            font-size: 1.25rem; 
            max-width: 42rem; 
            margin: 0 auto 2rem auto; 
            opacity: 0.9;
}
.pdf-file .btn {
            display: inline-block;
            background-color: #ffd900;
            color: #000000; 
            font-weight: 700; 
            padding: 1rem 2rem; 
            border-radius: 9999px; 
            font-size: 1.125rem; 
            transition: background-color 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.pdf-file .btn:hover{
            transform: scale(1.07);
}
.pdf-file .btn:hover {
            background-color: #ffc403;
            color: #ffffff;
}
.site-footer{
    max-width: 100%;
}
