 
body {
    margin: 0;
    padding: 0;
    font-family: 'Red Hat Display', sans-serif;
}

 
.nav-link {
    transition: color 0.3s, text-decoration 0.3s;
}

.nav-link:hover {
    color: #1c2d37 !important;
    background: #a4b5ba;
}

 img.card-img-top {
    height: 26rem;
}
main {
    min-height: 100vh;  
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;  
}
 
footer {
    background-color: #0a0a23; 
    color: #ffffff;  
}

footer h5 {
    border-bottom: 2px solid #a4b5ba;  
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer a:hover {
    color: #a4b5ba !important;  
    text-decoration: none;
}
.bg-blue {
background-color: #1c2d37;
}
.text-gr {
    color: #a5b6bb;
}
#imageSlider  img {
    /* height: 80vh; */
    object-fit: cover;
}
@media only screen and (max-width: 600px) {
    #imageSlider  img {
        height: 50vh;
        object-fit: cover;
    }
  }
.form-section {
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.form-section h2 {
    color: #1c2d37;
    font-weight: bold;
}

.btn-custom {
    background-color: #1c2d37;
    color: #fff;
    font-weight: bold;
}
.h1real {
    font-size: 3rem;
}
.bg-lt {
    background-color: #bdcddd;
}
[data-bs-target="#responsiveCarousel"] {
    filter: invert(1);
}
.btn-custom:hover {
    background-color: #a4b5ba;
    color: #1c2d37;
}

/* Modal Overlay */
.popup-overlay {
    display: none;  /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

/* Popup Content Box */
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    position: relative;
}

/* Close Button */
.close-popup-btn {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.icon {
    font-size: 1.5rem;
    margin-right: 10px;
  }
  .section-heading {
    font-weight: bold;
    font-size: 1.8rem;
    color: #1c2d37;
  }
  .benefit-item {
    font-size: 1rem;
    color: #1c2d37;
  }
  hr {
    border: 1px solid #1c2d37;
  }
  /* Add animations for showing and hiding the popup */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

#manualPopup {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#manualPopup.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

#manualPopup.hide {
    animation: fadeOut 0.3s forwards;
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1c2d37;
    margin-bottom: 20px;
  }
  .section-text {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 20px;
  }
  .section-image {
    max-width: 100%;
    height: auto;
  }
  .bg-light-nw {
    background-color:white;
  }
  .video-card {
    position: relative;
  }
  .video-icon {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    z-index: 2;
    opacity: 1;  /* Initially visible */
    transition: opacity 0.3s ease;  /* Smooth transition on hover */
  }
  .video-card:hover .video-icon {
    opacity: 0;  /* Hide icon on hover */
  }
  video {
    width: 100%;
    height: 215px;
    object-fit: cover;
  }
  .highlight-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1c2d37;
    text-transform: uppercase;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-list .bi {
    color: burlywood; 
    margin-right: 8px;
}
 
.project-image {
    border-radius: 8px;
}
.contact-box i {
    background: #1c2d37;
    padding: 10px 12px;
    color: white !important;
    border-radius: 5px;
}
.maincontentbox {
    color: white;
    background: #1c2d37;
    padding: 12px 14px;
}
.dwe a {
    text-decoration: none;
    color: burlywood;
}
.feature-list {
    list-style-type: none;  
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;  
}
.minbold {
    color: #1c2d37;
    font-weight: 600;
}

.feature-list li {
    display: flex;
    align-items: center;
    flex: 1 0 calc(50% - 10px); 
    margin-bottom: 10px;  
}

.feature-list li i {
    margin-right: 10px;  
}
 div#imageSlider button {
    opacity: 0;
}
@media (max-width: 768px) {
    .feature-list li {
        flex: 1 0 calc(100% - 10px); 
    }
}
.subx {
    color: burlywood;
}
html {
    scroll-padding-top: 70px;  
}
