
/* <!-- Navbar --> */

.navbar-brand img {
    max-height: 60px;
  }

  .top-bar {
    font-size: 14px;
    background: #f8f9fa;
    padding: 5px 0;
  }

  .contact-icons i {
    margin-right: 5px;
  }

  .navbar-nav .nav-link {
    font-weight: 500;
  }

  .navbar-nav .nav-link.active {
    color: darkblue !important;
  }


  /* <!-- Services Section --> */

  .service-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
  }

  .service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .service-box:hover img {
    transform: scale(1.1);
  }

  .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
  }

  .service-box:hover .overlay-content {
    opacity: 1;
  }

  .overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .overlay-content p {
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .service-box {
      height: 250px;
    }
  }

  @media (max-width: 480px) {
    .service-box {
      height: 200px;
    }

    .overlay-content h4 {
      font-size: 1.2rem;
    }

    .overlay-content p {
      font-size: 0.9rem;
    }
  }


  /* content section */

  .content-section {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.content-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.content-btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.content-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .content-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .content-section {
        padding: 20px 0;
    }
    .content-heading {
        font-size: 1.75rem;
    }
    .content-text {
        font-size: 1rem;
    }
}

/* Add this to your CSS */
.content-heading span {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Delay each word */
.content-heading span:nth-child(1) { animation-delay: 0.1s; }
.content-heading span:nth-child(2) { animation-delay: 0.3s; }
.content-heading span:nth-child(3) { animation-delay: 0.5s; }

/* footer section */

    .footer {
        background-color: #0f1c35;
        color: #fff;
        padding: 40px 0;
      }
  
      .footer a {
        color: #ffffff;
        text-decoration: none;
      }
  
      .footer a:hover {
        color: #00c6ff;
        text-decoration: underline;
      }
  
      .footer .logo {
        max-width: 200px;
        height: auto;
      }
  
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 30px;
        padding-top: 15px;
        font-size: 14px;
      }
  
      @media (max-width: 768px) {
        .footer {
          text-align: center;
        }
        .footer .logo {
          margin-bottom: 20px;
        }
      }
  

      
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    /* background: url("images/45.png") no-repeat; */
    background: url("./image/banner22.png") no-repeat;
    background-size: cover;
    padding: 80px 0px;
    position: relative;
    background-position: center;
  }
  
  #hero::before {
    position: absolute;
    content: "";
    background: rgb(0 0 0 / 30%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
  
  #hero .hero-content {
    position: relative;
    z-index: 1;
  }
  
  #hero .hero-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 44px;
    /* font-size: 64px; */
    font-weight: 900;
  }
  
  
  #hero .hero-content h2 span {
    color: #cd9d49;
    text-decoration: underline;
  }
  
  @media (max-width: 767px) {
    #hero .hero-content h2 {
        font-size: 20px;
    }
  }
  
  #hero .hero-content .btn-get-started,
  #hero .hero-content .btn-projects {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
  }
  
  #hero .hero-content .btn-get-started {
    background: #cd9d49;
    border: 2px solid #cd9d49;
  }
  
  #hero .hero-content .btn-get-started:hover {
    background: none;
    color: darkblue;
  }
  
  #hero .hero-content .btn-projects {
    background: #cd9d49;
    border: 2px solid #cd9d49;
  }
  
  #hero .hero-content .btn-projects:hover {
    background: none;
    color: darkblue;
  }
  
  #hero .hero-slider {
    z-index: 8;
    height: 60vh;
  }
  
  #hero .hero-slider::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
  }
  
  #hero .hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
  }
  
  
  
  /* form */
  
  
  .banner-form {
    border-radius: 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 14px 28px rgb(0 0 0 / 10%), 0 10px 10px rgb(0 0 0 / 2%);
    box-shadow: 0 14px 28px rgb(0 0 0 / 10%), 0 10px 10px rgb(0 0 0 / 2%);
    padding: 40px;
  }
  
  .banner-form form .form-group {
    margin-bottom: 15px;
  }
  
  .banner-form form button {
    display: block;
    width: 100%;
    margin-top: 20px;
    color: #ffffff;
    background-color: darkblue;
    padding: 14px 25px;
    border: 1px solid #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }

  
    /* buttons */

.whatsapp {
    background: #25d366;
    border-radius: 50%;
    padding: 10px 12px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 0 14px 0 #12ca59;
    box-shadow: 0 0 14px 0 #12ca59;
    color: #fff !important;
}

.call-btn {
    
    border-radius: 50%;
    background: red;
    padding: 10px;
    -webkit-box-shadow: 0 0 14px 0 #006aad;
    box-shadow: 0 0 14px 0 #006aad;
    color: #fff !important;
}

.sticky-btn {
    position: fixed;
    right: 10px;
    bottom: 250px;
    z-index: 999;
}

.blink {
  animation: blinker 2s linear infinite !important;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}



