/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('/img/icMain.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    justify-content: space-evenly;
    width: 100%;
    height: 8em;
    background: #DEE2E3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.container-navbar {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.navbar .container {
    display: flex;
    align-items: flex-start;
    padding-top: 1rem;
}

.header {
    margin: 2em 0 0 2em;
}

.header a {
    color: #162B3C;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 800;
    padding-right: 2rem;
}

.logo-image {
    height: 15rem;
    width: 15rem;
    margin-top: 1rem;
    margin-left: 0.5rem;
    border-radius:50%!important
}

.nav-menu {
    display: flex;
    list-style: none;
    padding-top: 1rem;
    padding-left: 3rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #1976d2;
}

/* Main Section */
.main {
    height: 65rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.3);
}

.main-content {
    max-width: 800px;
    padding: 0 20px;
}

.main h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.main p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #162B3C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #547daa;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f5f5f5;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Add these styles for service images */
.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1rem -2rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card ul {
    display: inline-block;
    text-align: left;
    width: 80%;
}

/* About Section */
.about {
    padding: 5rem 0;
    color: #000000;
    font-weight: 600;
    font-size: 2.5rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1976d2;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f5f5f5;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button {
    background: #1976d2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1565c0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content  {
    display: grid;
    grid-template-columns: 500px 700px;
    gap: 1rem;
}

.container-footer-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 800px) {
    .nav-toggle {
        display: block;
        margin-right: 1rem;
        margin-top: 1rem;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 27%;
        width: 100%;
        background: #DEE2E3;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        margin: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .main h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .header {
        margin-left: 0rem;
    }

    .header a {
        font-size: 1.5rem;
        font-weight: 800;
    }
} 

/* Add these styles for the alert messages */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.d-none {
    display: none;
} 