@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');


:root {

  --color-primary: #000;
  --color-secondary: #1E1E1E;
  --color-border: ;

  --font-family-primary: "Sofia Sans Semi Condensed", sans-serif;
  --font-family-secondary: "Roboto", sans-serif ;
  --font-size-sm: 0.875rem;
  --font-size-md: 3rem;
  --font-size-h3: 2.2rem;
  --font-size-h4: 1.8rem;
  --font-size-lg: 4rem;
  --font-size-xl: 2rem;
  --line-height: 1.5;
}



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

body {
    background-color: #f6f7f6;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

section {
    height: 100%;
    width: 100%;
    padding: 0 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: column;

}

h2 {
        text-transform: uppercase;
        font-family: var(--font-family-primary);
        font-size: var(--font-size-md);
        font-weight: 500;
        text-align: left;
        width: 100%;
        border-bottom: 2px solid #00000060;
}

h3 {
    font-size: var(--font-size-h3);
    font-family: var(--font-family-primary);
}

h4 {
    font-size: var(--font-size-h4);
}

h1 {
    font-size: var(--font-size-lg);
        text-transform: uppercase;
        font-family: var(--font-family-primary);
        /* letter-spacing: -3px; */
        font-weight: 500;
}



header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.navbar {
    font-family: var(--font-family-secondary);
  max-width: 1300px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT LINKS */
.nav-left, .nav-right {
  display: flex;
  gap: 5rem;
}

.nav-links a:hover {
    color: #000;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #00000060;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-left a:hover, .nav-right a:hover {
  color: #000;
}

a.active {
  color: #000;
}



/* LOGO */
.nav-logo img {
  width: 50px;
}

/* HAMBURGER ICON */
.hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  right: 30px;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  color: #222;
  transition: 0.3s;
}

.close-btn:hover {
  color: #0077ff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  padding-top: 120px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
  box-shadow: -4px 0px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
  color: #111;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.mobile-menu.active {
  right: 0;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


a {
    font-family: var(--font-family-secondary);
    font-weight: 500;
    font-size: 16px;
    color: #00000080;
    text-decoration: none;
    transition: .3s ease-in;
}

.active {
    color: #000;
}

a:hover {
    color: #000;
}

.left-nav, .right-nav {
    display: flex;
    gap: 150px;
}

.home {
    padding: 0;
}

.home-title {
    padding: 0 100px;
    width: 100%;
}

.first {
    text-align: right;
}

.second {
    text-align: center;
}

.third {
  font-family: var(--font-family-secondary);
  font-weight: 500;
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-transform: uppercase;
}

.third-links {
    display: flex;
    gap: 2rem;
    flex-direction: row;
}

.third-links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.third a {
  padding-bottom: 15px;
  color: #00000080;
  text-decoration: none;
  transition: 0.3s ease-in;
}

.third a:hover {
  color: #000;
}

.third p {
  width: 200px;
  color: #00000080;
  padding-bottom: 15px;
  text-align: right;
  font-family: var(--font-family-secondary);
}


.home-title h1 {
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  font-family: var(--font-family-primary);
  font-weight: 500;
}


.home-img {
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background-size: cover;
}

.scroll-img {
background-position: bottom;
width: 100%;
transform: translateY(0);
transition: transform 0.2s ease-out;
will-change: transform;
}

.statsbar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100px;
    gap: 20px;
    justify-content: space-between;
}

.stat {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    text-transform: uppercase;
    border-right: 2px solid #00000060;
}

.stat h3 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h3);
}


.stat p {
    font-size: 16px;
    font-weight: 500;
    color: #00000080;
    font-family: var(--font-family-secondary);
}

.more-why {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.more-why h3 {
    font-family: var(--font-family-secondary);
    padding-top: 5rem;
    color: #00000090;
    font-weight: 400;
    width: 70%;
}

.services-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 5rem;
}

.service {
    display: flex;
    flex-direction: column;
    gap: 2rem;

}
.service img {
    width: 50%;
    height: 50%;
}

.service h4 {
    font-family: var(--font-family-secondary);
    text-transform: uppercase;
    font-size: var(--font-size-h4);
    font-weight: 400;
}

.service p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-family-secondary);
    color: #00000080;
}

.about-section, .contact-section {
    align-items: self-end;
}

.about-description-wrapper {
    align-items: self-end;
}


.about-image-container {
    width: 100%;
    height: 50vh;
    display: flex;    
    border-bottom: 2px solid #00000060;
    border-top: 2px solid #00000060;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 0;
}

.about-img-1-container {
    flex: 1;
    flex-direction: row;
    display: flex;
}

.about-img-2-container {
    flex: 1;
}

.about-img-1-container img {
    height: 100%;
    object-fit: contain;
}

.about-img-2-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-description {
    font-family: var(--font-family-secondary);
    display: flex;
    font-size: 20px;
    color: #00000080;
    flex-direction: row;
    gap: 50px;
    width: 50%;
    align-items: flex-end;
}

.contact-description {
    width: 50%;
    align-items: flex-end;
}

.sub-contact {
    display: flex;
    gap: 50px;
    flex-direction: row;
}

.sub-contact h4 {
    padding: 10px 0 0;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-h4);
}

.contact-lines {
    width: 100%;
}

.contact-lines p {
    font-family: var(--font-family-secondary);
    padding: 20px 0;
    color: #00000080;
    text-transform: uppercase;
    font-size: 16px;
    border-bottom:  2px solid #00000060;
}

.contact-section h1 {
        text-transform: uppercase;
        font-family: var(--font-family-primary);
        letter-spacing: -3px;
        font-weight: 500;
        width: 100%;
        border-bottom: 2px solid #00000060;
    }


iframe {
    filter: grayscale(100%);
}

.message-section {
    align-items: flex-start;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input, textarea {
    font-size: 16px;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid #00000060;
    text-transform: uppercase ;
    font-family: var(--font-family-secondary);
}

.submit-btn {
    width: fit-content;
    padding: .5rem 2rem;
    margin: .5rem 0 0;
    background: none;
}

.submit-btn:hover {
    background-color: #000000;
    color: #fff;
}

.message-input {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.message-btn img {
    width: 25px;
    transition: .3s ease-in;
}

.message-btn a {
        text-decoration: underline;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: #000000;
    flex-direction: row;
}


a img {
    width: 25px;
    transition: .3s ease-in;
}


a img:hover {
transform: rotate(45deg);
}

.links {
    text-decoration: underline;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: #000000;
    flex-direction: row;
}

.links:hover {
    color: #000000;
}



.horizontal-scroll-section {
    position: relative;
    height: 100vh;
    padding: 0 50px;
}

.horizontal-scroll-section h2 {
    text-transform: uppercase;
    font-family: var(--font-family-primary);
    font-weight: 500;
    text-align: left;
    width: 100%;
    border-bottom: 2px solid #00000060;
}

        .scroll-container {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .cards-wrapper {
            display: flex;
            gap: 2rem;
            transition: transform 0.1s ease-out;
        }

        .card {
            min-width: 400px;
            height: 600px;
            display: flex;
            flex-direction: column;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            transition: 0.3s ease-in;
        }

        .card:hover {
         filter: grayscale(80%) contrast(100%) brightness(50%);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }


        .card p {
            text-transform: uppercase;
            font-size: 30px;
            font-family: var(--font-family-primary);
            font-weight: 600;
            color: #fff;
        }

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 50px;
    width: 100%;
    margin-bottom: 50px;
}

footer p {
    font-size: 14px;
    font-family: var(--font-family-secondary);
}

footer h4 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h4);
    text-transform: uppercase;
}

.footer-sec-1 {
    flex: 3;
}

.footer-sec-2, .footer-sec-3 {
    flex: 1;
    border-left: 1px solid #00000060;
    padding-left: 1rem;
}

.footer-sec-1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-sec-1 p {
    width: 70%;
}

.footer-sec-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-sec-3 {
    display: flex;
    flex-direction: column;
}

.footer-sec-3 .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-sec-3 .social-links a {
    font-weight: 400;
    font-size: 14px;
}




@media screen and (max-width: 1024px) {

    section {
        padding: 0 50px;
    }

    h3 {
        font-size: 1.8rem;
    }

      .nav-left,
  .nav-right {
    display: none;
  }


  .nav-logo {
    margin-right: auto;
  }

  .hamburger {
    display: flex;
  }

    .home-title {
        padding: 0 50px;
        width: 100%;
    }

    .home-title h1 {
        font-size: 3.2rem;
        font-weight: 600;
        margin: 0.25rem 0;

    }

     .first {
        text-align: right;
    }

    .second {
        text-align: center;
        width: 100%;
    }

    .home-title .third {
        flex-direction: row;
        text-align: left;
        width: 100%;
        align-items: flex-end;
    } 

    .third-links {
        flex-direction: column;
        gap: 0;
        padding: 0 0 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .third a {
        padding-bottom: 0;
    }



    .home-img {
        height: 50vh;
    }

    .home-img .scroll-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }

            .scroll-container {
                height: max-content;
                padding: 2rem 0;
            }

            .card {
                min-width: 450px;
                height: 600px;
                padding: 2rem;
            }

            .cards-wrapper {
                padding: 0 2rem;
                gap: 1rem;
            }

            .card h2 {
                font-size: 1rem;
            }

            .card p {
                font-size: 1rem;
            }


    .about-description, .contact-description, .more-why {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .about-image-container {
        flex-direction: row;
        height: auto;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 0;
    }

    .about-img-1-container, .about-img-2-container {
        width: 100%;
        height: 40vh;
    }

    .statsbar {
        flex-direction: row;
    }

    .more-why h3 {
        width: 100%;
    }

    .more-why {
        gap: 2rem;
    }

    .services-container {
        flex-direction: row;
        gap: 2rem;
    }

    .service img {
        width: 100px;
        height: 100px;
    }


    footer {

        padding: 32px 50px;
        gap: 20px;
    }

    .footer-sec-1 p {
        width: 100%;
    }

    iframe#map_canvas {
        height: 280px;
    }
} 

@media screen and (max-width: 480px) {

    body {
        gap: 80px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .home-title {
        padding: 0 20px;
    }

    .home-title h1 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

     .home-title .first {
        text-align: left;
        width: 100%;
    }

    .home-title .third {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .third h1 {
        text-align: left;
    }

    .home-title .second {
        text-align: left;
    }

    nav.md-screen {
        display: none;
    }

    .third-links {
        display: flex;
        justify-content: center;
        padding: 0;
        height: fit-content;
        flex-direction: column;
    }

    a .links {
        font-size: 1rem;
    }

    .third-links-container {
        width: 100%;
        padding-top: 2rem;
        justify-content: space-between;
        display: flex;
        flex-direction: row;
    }

    .third-links-container p {
        padding: 0;
    }

    .horizontal-scroll-section {
        padding: 0 20px;
        height: 100vh;
    }

    .scroll-container {
        padding: 2rem 0;
    }

    .about-img-1-container, .about-img-2-container {
        height: 250px;
    }
    .about-image-container {
        height: fit-content;
    }

    .about-description p {
        font-size: 16px;
    }

    .statsbar {
        flex-direction: column;
        height: 100%;
    }

    .stat h3 {
        font-size: 24px;
    }

    .stat {
        gap: 1rem;
    }

    .stat p {
        font-size: 16px;
    }

    .more-why h3 {
        width: 100%;
    }

    .more-why {
        gap: 2rem;
    }

    .service {
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .services-container {
        flex-direction: column;
    }
    

    .sub-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .service p {
        font-size: 16px;
    }

    .service img {
        width: 80px;
    }

    .service h4 {
        font-size: 18px;
    }

    footer {
        flex-direction: column;
    }

    .about-section, .why-us, .contact-section, footer {
        padding: 0 20px
    }

}
