/* Phone navigation bar */
.navbar {
    position: sticky;
    padding: 15px 20px;
}

/* Show the hamburger only on phones */
.menu-button {
    display: block;
    padding: 5px;

    color: white;
    background-color: transparent;
    border: none;

    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

/* Hide the links before the hamburger is clicked */
.nav-links {
    display: none;

    position: absolute;
    top: 100%;
    right: 0;

    width: 180px;
    padding: 15px;

    background-color: black;

    flex-direction: column;
    align-items: stretch;
    gap: 5px;
}

/* JavaScript adds the show class */
.nav-links.show {
    display: flex;
}

.nav-links a,
.nav-links a:visited {
    margin: 0;
    padding: 12px;
}

/* Phone page content */
#home {
    padding: 0;
}

.content {
    padding: 0;
}

section {
    min-height: auto;
    padding-top: 30px;
}

/* Home hero section */
.hero {
    min-height: calc(100vh - 65px);
    padding: 50px 25px;
}

.hero h1 {
    font-size: 42px;
}

.hero-description {
    font-size: 16px;
}

.hero-buttons {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
}

.hero-buttons a {
    width: auto;
    text-align: center;
}

/* About section */
.heading {
    min-height: auto;
    padding: 70px 25px;
}

.heading h1 {
    font-size: 42px;
}

.heading-aboutUs {
    font-size: 16px;
}

/* Services section */
.heading2 {
    min-height: auto;
    padding: 70px 25px;
}

.heading2 h1 {
    font-size: 42px;
}

.services-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
}

.service-card {
    min-height: auto;
    padding: 35px 25px;
}

/* Contact section */
.heading3{
    min-height:auto;
    text-align:center;

}

.heading3 h1{
    font-size: 42px;
}





