
.default-bg {
    background-color: rgb(249, 202, 85); /* Blue */
    color: #000; /* Black text */
}

.default-text{
    color: rgb(249, 202, 85);
}

.logo-img{
    width:100px;
    height:70px;
}
.top-bar {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.nav-bar {
    background-color: #000c13;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: rgb(249, 202, 85) !important;
}

.nav-item .active {
    color: rgb(249, 202, 85) !important;
}

.quote-btn {
    background-color: rgb(249, 202, 85);
    color: #000;
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: bold;
}

.quote-btn:hover {
    background-color: rgb(249, 202, 85);
    color: #fff;
}

.contact-icon {
    font-size: 24px;
    color: rgb(249, 202, 85);
}

.contact-info small {
    font-size: 14px;
    color: #000;
}
    .carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.floating-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 10px;
}

.floating-icons a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.know-more-btn {
    display: inline-block;
    background-color: rgb(249, 202, 85); /* Blue */
    color: #000; /* Black text */
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px; /* Fully rounded */
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    }

    .know-more-btn:hover {
        background-color: rgb(249, 202, 85); /* Slightly darker on hover */
    }

    .equal-img-wrapper {
        height: 300px; /* Adjust height as needed */
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }
    .img-equal {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    ul.list-unstyled li {
        margin-bottom: 8px;
    }
    ul.list-unstyled li::before {
        content: "» ";
        color: #000;
        font-weight: bold;
    }

    ul.footer-quick-links li::before {
        content: "» ";
        color: white;
        font-weight: bold;
    }

    .scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: rgb(249, 202, 85);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn .arrow-up {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 3px solid black;
    border-bottom: 3px solid black;
    transform: rotate(133deg);
    margin-bottom: 4px;
}

.about-banner {
    background: url('../images/about-banner.jpg') no-repeat center center/cover;
    height: 300px;
}

.breadcrumb-divider::before {
    content: "●";
    color: rgb(249, 202, 85);
    margin: 0 8px;
}

.underline {
    width: 60px;
    height: 5px;
    background-color: rgb(249, 202, 85);
    margin: 0 auto 1rem;
}

.feature-box {
    background-color:rgb(249, 202, 85);
    color: white;
    padding: 2rem;
    border-radius: 4px;
    height: 100%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-box i {
    font-size: 2rem;
    margin-right: 0.75rem;
}


  .gallery-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .img-large {
    height: 350px;
  }

  .img-medium {
    height: 250px;
  }

  .img-small {
    height: 150px;
  }

  @media (max-width: 767px) {
    .img-large,
    .img-medium,
    .img-small {
      height: auto;
    }
  }
