/*=================Main Universal Resets================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/*==============Header Styles============*/
.header {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    padding: 18px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 25px;
    margin-right: 25px;
}

.menuBar {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-left: -0.8rem;
}

.menu_item {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
}

.menu_item:hover{
    color: #28a745;
}

/*================= HERO SECTION =================*/
/*================= HERO SECTION =================*/

.hero-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 20px;
}

.sky {
    width: 100%;
    margin-top: -2rem;
    max-width: 1100px;

    height: auto;

    display: block;

    border-radius: 18px;
}

.hero-content {
    text-align: center;
    margin-top: 35px;
    width: 100%;
}

.home_head {
    padding: 0 20px;
    text-align: center;
}

.home_heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    line-height: 1.2;

    max-width: 1000px;
    margin: 0 auto;
}

.welcome_message {
    max-width: 850px;

    margin: 24px auto 0 auto;

    line-height: 1.8;
    font-size: 1.1rem;

    color: #444444;

    padding: 0 20px;
}

.email-button {
    display: inline-block;

    margin-top: 34px;


    border: none;
    border-radius: 10px;

    color: white;


    background: linear-gradient(
        135deg,
        rgb(4,108,71),
        rgb(3,85,56)
    );

    padding: 14px 36px;

    font-weight: bold;
    font-size: 1.05rem;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(4, 108, 71, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.email-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(4, 108, 71, 0.25);
}

/*================= SERVICES SECTION =================*/
.services-wrapper {
    width: 100%;

    background-color: #f8f9fa;

    padding: 70px 24px;
}

.section-title {
    text-align: center;

    font-size: clamp(1.8rem, 4vw, 2.8rem);

    color: #111111;

    margin-bottom: 50px;

    font-weight: bold;
}

.services-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 24px;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.service-block {
    background-color: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    padding: 32px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-block:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-block h3 {
    color: #111111;

    font-size: 1.4rem;

    margin-bottom: 12px;
}

.service-block p {
    color: #555555;

    font-size: 1rem;

    line-height: 1.7;
}

/*================= FOOTER =================*/
.main-footer {
    background-color: #1a1d20;

    color: #ffffff;

    padding: 70px 24px 30px 24px;

    text-align: center;
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info h4 {
    font-size: 1.5rem;

    margin-bottom: 16px;

    color: #28a745;
}

.footer-info p {
    font-size: 1rem;

    color: #cccccc;

    line-height: 1.7;

    margin-bottom: 16px;
}

.footer-contact {
    font-weight: bold;
}

.footer-contact a {
    color: #28a745;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 40px;

    border-top: 1px solid #2d3238;

    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;

    color: #868e96;
}

/*================= TABLETS =================*/
@media (min-width: 768px) {

    .header {
        padding: 24px 32px;
    }

    .logo {
        height: 34px;
    }

    .menuBar {
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*================= LAPTOPS =================*/
@media (min-width: 1024px) {

    .header {
        display: flex;
        flex-direction: column;
    }

    .logo {
        height: 80px;
    }
    

    .menu_item {
        font-size: 3rem;
        margin-top: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sky {
        margin-top: 2rem;
        width: 100%;
        max-width: 1100px;
        height: auto;
        margin-top: -2rem;
    }

    .hero-container {
        padding: 30px 40px;
    }
}

/*================= LARGE DESKTOPS =================*/
@media (min-width: 1440px) {

    .hero-container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .menu_item{
        margin-top: 1rem;
    }

    .home_heading {
        max-width: 1400px;
    }

    .welcome_message {
        max-width: 950px;
        font-size: 1.2rem;
    }
}