* {
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: FuturaBkBt;
    src: url(./font/Futura\ Bk\ Book.ttf);
}

@font-face {
    font-family: FuturaHvBt;
    src: url(./font/Futura\ Hv\ Heavy.ttf);
}


/* navbar start */
.nav-link {
    font-size: 1.1rem;
    color: #000;
    font-family: FuturaBkBt;
    margin: 0rem 0.4rem;
}

.nav-link:hover {
    color: #E64141;
}

.navbar {
    width: 100%;
    padding: 16px;
    position: fixed;
    top: 0;
    z-index: 1;
}

.scrolled {
    background-color: #fff;
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url(./images/menu-button.png);
}

/* navbar end */

/* carosuel start */
.hero-section {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

.image-group {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@keyframes cycleImages {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.image-group:nth-child(1) {
    animation: cycleImages 16s infinite;
}

.image-group:nth-child(2) {
    animation: cycleImages 16s infinite 3s;
}

.image-group:nth-child(3) {
    animation: cycleImages 16s infinite 8s;
}

@media (max-width: 768px) {
    .image-group {
        display: block;
    }
}

/* carosuel end */

/* about us start */
.about-section {
    position: relative;
    background-color: black;
    height: 100vh;
    background-image: url(./images/water\ img\ about\ us.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.about-content {
    color: #fff;
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-content h5 {
    font-size: 1.8rem;
    font-family: FuturaBkBt;
}

.about-content p {
    font-size: 1.2rem;
    font-family: FuturaBkBt;
}

.about-title {
    color: #E64141;
    font-weight: bold;
    font-size: 3rem;
    font-family: FuturaHvBt;
}

.btn-custom {
    background-color: #E64141;
    border: none;
    padding: 14px 84px;
    font-size: 1rem;
    color: #fff;
    border-radius: 16px;
    font-family: FuturaBkBt;
}

.about-btn{
    text-decoration: none;
    color: white
}

.btn-custom:hover {
    background-color: #E64141;
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: justify;
    }

    br {
        display: none;
    }
}

/* about us end */

/* why choose us start */
.highlight-text {
    color: #E64141;
    font-size: 3rem;
    font-style: FuturaHvBt;
}

.vision-title {
    font-size: 2rem;
    font-style: FuturaBkBt;
}

.choose-us-title {
    font-size: 2rem;
    font-style: FuturaBkBt;
}

.choose-us-content {
    font-size: 1rem;
    font-style: FuturaBkBt;
}

@media (max-width: 768px) {
    .vision-title {
        text-align: center;
    }

    .highlight-text {
        text-align: center;
    }

    .choose-us-title {
        text-align: center;
    }

    .choose-us-content {
        text-align: justify;
    }
}

/* why choose us end */

/* what we offer start */
#service {
    background-color: #0d0d0d;
    color: white;
    background-image: url(./images/waterFlipArchitecture.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.section-title {
    margin-bottom: 100px;
}

.section-title h5 {
    color: #fff;
    font-family: FuturabkBt;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-title h2 {
    color: #E64141;
    font-size: 3rem;
    font-family: FuturaHvBt;
}

.offer-container {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    width: 350px;
    height: 450px;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.offer-card:hover img {
    filter: blur(4px);
}

.offer-card .text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: FuturaHvBt;
    font-weight: bold;
    font-size: 2.1rem;
    line-height: 36px;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
}

.offer-card .read-more {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: FuturaHvBt;
    padding: 8px 16px;
    font-size: 1.5rem;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.offer-card span {
    font-size: 1rem;
    font-family: FuturaBkBt;
}

.offer-card:hover .text-overlay {
    bottom: calc(100% - 120px);
}

.offer-card:hover .read-more {
    bottom: 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        text-align: center;
    }

    .offer-container {
        flex-direction: column;
        align-items: center;
    }
}

/* what we offer close */

/* meet our team start */
.team {
    background-color: #121212;
    color: white;
    text-align: center;
  }

  .team-section {
    padding: 50px 20px;
    position: relative;
  }

  .team-title {
    color: #E64141;
    font-family: FuturaBkBt;
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .carousel-inner {
    position: relative;
    min-height: 500px;
  }

  .carousel-item {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .carousel-item.active {
    display: flex;
  }

  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
  }

  .team-name {
    font-size: 1.8rem;
    font-family: FuturaHvBt;
    margin-top: 15px;
  }

  .team-role {
    font-family: FuturaBkBt;
    font-size: 1.4rem;
    color: #ffffff;
  }

  .team-description {
    font-family: FuturaBkBt;
    font-size: 0.9rem;
    max-width: 700px;
    margin: 10px auto;
    color: #CCCCCC;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 5%;
  }

  .carousel-content:hover~.carousel {
    animation-play-state: paused;
  }

  @media (max-width: 768px) {
    .carousel-item br{
      display: none;
    }

    .team-description {
      text-align: justify;
    }
  }
  /* meet our team end */

/* footer start */
#footer {
    background-image: url('./images/footerbgcover.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header h4 {
    font-size: 2.4rem;
    font-family: FuturaHvBt;
}

.header h2 {
    font-size: 2.4rem;
    color: #E64141;
    font-family: FuturaHvBt;
}

.contact-info h2 {
    font-size: 2rem;
    font-family: FuturaBkBt;
}

.overlay {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    min-height: 100vh;
}

.contact-container {
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 20px;
}

.contact-box {
    background-image: linear-gradient(rgb(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: FuturaBkBt;
}

.form-control {
    background: white;
    color: black;
    padding: 10px 0px;
}

::placeholder {
    font-size: 0.8rem;
    padding: 0px 6px;
    font-family: FuturaBkBt;
}

.btn-submit {
    background: #E64141;
    color: white;
    border: none;
    padding: 10px 50px;
    border-radius: 10px;
    font-family: FuturaBkBt;
}

:hover .btn-submit{
    background-color:#E64141;
}

.header {
    text-align: center;
    /* margin-bottom: 30px; */
}

.social-icons i {
    font-size: 36px;
    color: rgb(123, 123, 123);
    cursor: pointer;
    margin: 0px 16px;
}

.align-top {
    margin-top: 50px;
}

.contact-info i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .contact-container {
        text-align: center;
    }

    .contact-box {
        margin-top: 20px;
    }

    .social-icons {
        text-align: center;
        margin-top: 20px;
    }

    .text-end {
        text-align: center !important;
    }

    /* br{
        display: none;
    } */
}

/* footer loader animation styling */
@keyframes spin2 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#firstfan2 {
    opacity: 0;
    animation: spin2 3s 550ms infinite;
}

#secondfan2 {
    opacity: 0;
    animation: spin2 3s 350ms infinite;
}

#thirdfan2 {
    opacity: 0;
    animation: spin2 3s 150ms infinite;
}

/* loader animation end */
/* footer section style end */


/* about page start */
.about-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.section-title {
    font-size: 2.4rem;
    font-family: FuturaBkBt;
    color: #E64141;
    margin-bottom: 30px;
}
.content {
    font-family: FuturaBkBt;
    font-size: 1rem;
    color: #333;
}
.section {
    margin: 3rem 0;
    padding: 0 1rem;
}
/* about page end */