@import url(/utitlity.css);

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

body {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

.header {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 15px 10px -15px var(--shadow-color);
    padding: 1.5rem;
    background-color: var(--bg-color);
    color: var(--primary-color);
    justify-content: space-between;

}

a {
    text-decoration: none;
    color: black;
}

.name_heading {
    display: flex;
    gap: 3rem;
    align-items: center;

}

.contact_links {
    display: flex;
    gap: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    justify-content: flex-end;
}

.get_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    gap: 2rem;
    padding: 10rem;
}

.title {
    font-size: 4rem;
    font-weight: bold;

}

.head_link {
    font-weight: bold;
}

.head_link:hover {
    color: var(--btnPghover-color);
}

.getstart {
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    box-shadow: 2px 3px 4px 1px var(--shadow-color);
    background-color: var(--primary-color);
}

.getstart:hover {
    background-color: var(--btnPghover-color);
}

.title_para {
    font-size: 2rem;
    text-align: center;
}

/* footer start */

.page_footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 15rem;
    color: white;
    background-color: var(--home-footer);
}

.fotter_icon {
    color: white;
    font-size: 1.5rem;
}

.footer_link_div {
    display: flex;
    gap: 2rem;
}

.footer_text {
    display: flex;
    gap: 2rem;
}