@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

.hidden {
    display: none !important;
}

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
   /* margin-top: 40px; */
   margin: 0;
   padding: 0;
   /* margin-top: 50px; */
}

:root {
   --swiper-navigation-color: #fff;
   --swiper-pagination-color: #fff;
}

.section-config {
    padding: 60px 20px;
    margin: 0 auto;  
} 

#navbarNav {
    margin-left: 90px;
}

.landing-section--background-img-container {
    background-image: url('../assets/img/compressed/hero/hero-img.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    width: 100%;
    height: 100vh;

    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    z-index: -1;
}

#navbarSection {
    height: 73px;
}

.landing-section--background-img-container > div {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    background-position: center;
    background-size: cover;

    background: linear-gradient(
        to left,
        rgba(10,10,10,0) 12%,
        rgba(10,10,10,0.54) 44%,
        rgba(0,0,0,0.79) 55%
    );

    background: linear-gradient(
        to left,
        rgba(10,10,10,0.64) 12%,
        rgba(10,10,10,0.64) 44%,
        rgba(0,0,0,0.79) 55%
    );
}

#landingSection .landing-section--text-content {
    min-height: 85vh;

    /* padding: 0 20px; */

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 617px;

    color: #fff;
}

#landingSection .landing-section--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 50px;
}

#landingSection .landing-section--text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.custom-navbar {
    background-color: #1a1a1a;
    padding: 10px 30px;

    display: flex;
    flex-direction: column;

    position: fixed;
    z-index: 999;
    width: 100%;

    transition: all ease .2s;
}

.custom-navbar a:hover {
    color: #fff;
}

.custom-navbar .logo-container img {
    height: 70px;
}

.custom-navbar ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-around;
    list-style: none;
    padding: 0;

}

.custom-navbar ul li {
    height: fit-content;
}

.custom-navbar ul li a {
    font-weight: 600;
    font-size: 15px;
    color: #cccccc;
    text-decoration: none;
}

.custom-navbar .nav-item--button {
    text-align: center;
}

.custom-navbar .top-navbar--calling-button {
    display: flex;
    text-decoration: none;
    color: #FFFFFF;
    background: #4762FF;
    padding: 10px 45px;
    border-radius: 5px;
    justify-content: center;

    margin-top: 20px;

    gap: 8px;
    cursor: pointer;

    width: 100%;
}

.custom-navar--hide-btn {
    width: 100px;
    height: 100px;

    position: absolute;
    right: 0;
    top: 0;

    z-index: 1000;
    font-size: 90px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.custom-navar--hide-btn button {
    background-color: transparent;
    border: 1px solid #ffffff4a;
    color: #ffff;
    border-radius: 2px;
    cursor: pointer;
}

/* ---------------------------- OUR SERVICES ---------------------------- */
#ourServicesSection {
    background: #ffffff;
}

#ourServicesSection .our-services--hedding-container {
    text-align: center;
    margin-bottom: 40px;
}

#ourServicesSection .our-services--hedding-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

#ourServicesSection .our-services--hedding-container p {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.our-services--service-cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    /* padding: 0 20px; */
    /* max-width: 1200px; */
}

.service-card {
    background-color: #F4F6FA;
    display: flex;
    flex-direction: column;
    padding: 25px 28px;

    overflow: hidden;

    max-width: 600px;
}

.service-card--text-content-heading-container {
    margin-bottom: 15px;
}

.service-card--text-content-heading-container h2 {
    color: #333333;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.service-card--text-content-heading-container p {
    color: #333333;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.service-card--image-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: auto;
}


.service-card--image-container img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;



    position: absolute;
    bottom: 0;
    border-radius: 10px 30px 10px 30px;

}

.service-card--text-content-description {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}


/* ---------------------------- CALL TO ACTION ---------------------------- */
#callToActionSection {
    background: url('../assets/img/road.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.call-to-action-section--heading {
    text-align: center;
    margin-bottom: 40px;
}
.call-to-action-section--heading h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;

    color: #fff;
}

/* end call to action section */

/* --- ABOUT US SECTION --- */

#aboutUsSection {
    background: #ffffff;
}


.about-us-section--text-content {
    margin-bottom: 40px;
}

.about-us-section--text-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;

    color: #333;
}

.about-us-section--text-content p {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.about-us-section--image-container {
    text-align: center;
}

.about-us-section--image-container img {
    max-width: 100%;
    height: auto;

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-us-section--image-container img:hover {
    transform: scale(1.05);
}

/* ---------------------------- ourLocation US SECTION ---------------------------- */
#ourLocationSection {
    background: #F4F4F4;
    
}
#ourLocationSection .our-location-section--text-content {
    margin-bottom: 40px;
}
#ourLocationSection .our-location-section--text-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.our-location-section--map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 400px;
}
.our-location-section--map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ---------------------------- Our Services Carrosel ---------------------------- */
#ourWorkSection {
    background: #ffffff;
}
#ourWorkSection .our-work-section--heading {
    margin-bottom: 40px;
}
#ourWorkSection .our-work-section--heading h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

#ourWorkSection swiper-slide img {
    height: 250px;
    object-fit: cover;
}

/* -------- FOOTER ---------- */
footer ul {
    list-style: none;
}

footer {
    background-color: #1A1A1A;
    display: flex;
    flex-direction: column;
}

.footer-section-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-column--heading {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    padding-left: 5px;
}

footer ul a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-to-action-section--content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* components */
.call-to-action--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;


    max-width: 800px;
    
}

.call-to-action--container .call-to-action--whatsapp,
.call-to-action--container .call-to-action--phone {
    font-size: 20px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    flex: 1;
    min-width: 300px;
    
}

.call-to-action--container .call-to-action--whatsapp {
    border: 1px solid #00FF62;
    color: #00FF62;
    
}

.call-to-action--container .call-to-action--phone {
    color: #FFFFFF;
    background: #4762FF;
}

.text-gray-base {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.logo-heading-text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 340px;
}

.logo-heading-text-container h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    line-height: 65px;
    margin: 0;
}

.logo-heading-text-container img {
    display: none;
    position: absolute;
    bottom: 12px;
    right: 0px;
    height: 55px;
}

swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;

      overflow: hidden;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .swiper-button-next {
        height: 100%;
    }
    .swiper-button-prev path {
        fill: #fff;
        color: #fff;
        left: 10px;
    }

    .swiper-button-next path {
        fill: #fff;
        right: 10px;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }

@media (min-width: 430px) {
   
    
}

@media (min-width: 576px) {
    #landingSection {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-config {
        padding: 60px 50px;
    }
    
    .service-card {
        max-width: 400px;
    }

    .service-card--text-content-heading-container p {
        font-size: 16px;
    }
    .service-card--text-content-description {
        font-size: 18px;
    }
    .custom-navbar ul {
        width: 100%;
        justify-content: space-between;
    }
    .custom-navbar ul li {
        font-size: 16px;
    }
    .custom-navbar .top-navbar--calling-button {
        padding: 10px 30px;
    }

    #ourWorkSection swiper-slide img {
        height: 400px;
    }
    
}

@media (min-width: 768px) {
    .section-config {
        padding: 60px 100px;
    }

    .logo-heading-text-container img {
        display: block;
    }

    #landingSection .logo-heading-text-container {
        margin-bottom: 20px;
    }

    #landingSection .landing-section--text p {
        font-size: 20px;
    }
    
}

@media (min-width: 993px) {
    .custom-navbar .logo-container img {
        height: 50px;
    }

    .custom-navbar ul {
        flex-direction: row;
    }

    .custom-navbar {
        flex-direction: row;
        justify-content: space-evenly;
        padding-left: 50px;
        padding-right: 50px;
        align-items: center;
    }

    .navbar-shrink-hide {
        display: flex !important;
    }

    .custom-navbar .top-navbar--calling-button {
        margin-top: 0;
    }

    .custom-navbar ul {
        margin: 0;
    }

    .custom-navar--hide-btn {
        display: none;
    }
}

@media (min-width: 1000px) {
    #ourLocationSection {
        display: flex;
        flex-direction: row;
        padding: 0;
    }


    #ourLocationSection .our-location-section--text-content {
        padding: 60px 100px;
        margin-bottom: 0;
        flex: 1;

        order: 2;

        flex-direction: column;
        display: flex;
        gap: 10px;
        justify-content: center;

        max-width: 880px;
        margin: 0 auto;
    }

    #ourLocationSection .our-location-section--map-container {
        min-width: 400px;
        flex: 1;
        max-width: 800px;
        margin-top: 0;

        order: 1;
    }
    #ourLocationSection .our-location-section--map-container iframe {
        border-radius: 0px;
    }

    #aboutUsSection {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

        padding: 50px 150;

        gap: 30px;
    }

    #aboutUsSection .about-us-section--text-content {
        flex: 1;
        margin-bottom: 0;
        min-width: 620px;
    }

    #aboutUsSection .about-us-section--image-container {
        flex: 1;
        min-width: 620px;
        
        min-height: 600px;
        text-align: center;
    }

    #ourWorkSection swiper-slide img {
        height: 500px;
    }
}

@media (min-width: 1200px) {

    #ourLocationSection .our-location-section--map-container {
        height: 500px;
    }

    .section-config {
        padding: 60px 150px;
    }

}


/* card lateral */
@media (min-width: 1400px) {
     /* .service-card {
        flex-direction: row;
        gap: 20px;
        min-width: 505px;
    }

    .service-card--text-content {
        width: 60%;
    }

    .service-card--image-container {
        height: 100%;
        width: 40%;
        min-width: 210px;
        transform: translateX(40px);
    }

    .service-card--image-container img {
        height: 100%;
        border-radius: 10px 0px 0px 10px;
    } */
}

@media (min-width: 1500px) {
    #ourWorkSection swiper-slide img {
        height: 600px;
    }
}