/* Navbar Styling */
.navbar {
    background-color: #f8f9fa;
}

.navbar-logo {
    height: 30px;
    width: auto;
    max-width: 100%;
    transform: scale(5);
    transition: transform 0.3s ease;
    margin-left: 20px;
    margin-top: 15px;
}
@media (max-width: 767.98px) {
    .navbar-logo {
        margin-left: 80px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Carousel / Hero Banner Styling */
.hero-slide {
    height: 85vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-top: 1rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 60vh;
    }
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
}

.carousel-inner {
    position: relative;
}

.carousel-item {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 768px) {
    .carousel-item {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Hero Section (if used separately) */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 46, 117, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Card Section */
.card-container {
    margin-top: 30px;
}

.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.custom-card .card-body {
    padding: 20px;
    text-align: center;
}

.custom-card .card-body h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-card .card-body p {
    color: #6c757d;
}

/* Buttons */
.btn-custom {
    background-color: #3e64ff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #2d4ccc;
    color: #fff;
}

/* Footer Styles */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #007bff;
}

.footer .social-icons {
    margin: 20px 0;
}

.footer .social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
}

/* Dropdown Scroll for Long Menus */
.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #999 #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 4px;
}

/* Body padding to avoid navbar overlap */
body {
    padding-top: 70px;
}

/* Static navbar fix */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.why-choose-us {
    background-color: #fff;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff7a00;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #ff7a00;
    margin: 10px auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1rem;
    /* max-width: 900px; */
    margin: 0 auto;
    color: #333;
    text-align: justify;
}

.feature-item-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

.feature-item .bar {
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 100%;
    background-color: #fdb913;
    border-radius: 2px;
}

.team-img {
    max-width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .feature-item {
        text-align: center;
        padding-left: 12px;
    }

    .feature-item .bar {
        left: 0;
        margin: 0 auto;
    }

    .feature-item-wrap {
        align-items: center;
    }

    .section-description {
        font-size: 0.95rem;
    }
}


.contact-section {
    background-color: #b3b3b3; /* gray top bg */
    padding: 60px 0;
}

.contact-box {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: #fff;
}

.contact-info {
    background-color: #1e1e1e;
}

.contact-info h4,
.contact-form h4 {
    font-weight: 700;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-icons a {
    background-color: #ff6600;
    color: #fff;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    font-size: 1rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background-color: #e65100;
}

.btn-orange {
    background-color: #ff6600;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    text-transform: uppercase;
}

.btn-orange:hover {
    background-color: #e65100;
}

.form-control {
    border-radius: 0;
    font-size: 0.95rem;
}

