body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: maroon;
}

body {
    background: url('https://images.unsplash.com/photo-1576785603363-8335b2acfa94?auto=format&fit=crop&w=1650&q=80') center/cover no-repeat;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: -1;
}

.border-box {
    border: 2px solid maroon;
    padding: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.box-fill-skyblue {
    background-color: #87ceeb;
    padding: 12px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
    margin-right: 10px;
    color: maroon;
}

.box-fill-olive {
    background-color: #556b2f;
    padding: 15px;
    border-radius: 10px;
    color: white;
    margin-right: 10px;
    margin-bottom: 20px;
}

.box-fill-golden {
    background-color: goldenrod;
    padding: 15px;
    border-radius: 10px;
    color: maroon;
    margin-bottom: 20px;
    margin-right: 10px;
}

.box-fill-khaki {
    background-color: burlywood;
    padding: 15px;
    border-radius: 10px;
    color: maroon;
    margin-bottom: 20px;
    margin-right: 10px;
}

.box-fill-peach {
    background-color: peachpuff;
    padding: 15px;
    border-radius: 10px;
    color: maroon;
    margin-bottom: 20px;
    margin-right: 10px;
}

.box-fill-steel {
    background-color: lightsteelblue;
    padding: 15px;
    border-radius: 10px;
    color: maroon;
    margin-bottom: 20px;
    margin-right: 10px;
}

.box-border-maroon {
    border-radius: 10px;
    border-style: solid 2px maroon;
    color: maroon;
    font-size: 20px;
    font-weight: bold;
}

.navbar {
    /* background-color: rgba(255, 140, 0, 0.8); */
    background-color: rgba(255, 255, 255);
    /* Orange tone */
}

.partition {
    border-left: 2px ridge darkgray;
    padding-right: 5px;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-brand,
.nav-link {
    color: rgba(200,100,0,0.9) !important;
    border-radius: 10px;
}

.nav-link, .dropdown-item {
  cursor: pointer;
}

.nav-link:hover {
    color: #000 !important;
}

.dropdown-menu {
    background-color: #ff8c00;
    border-radius: 15px;
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: #e67300;
    border-radius: 8px;
}

.hero-area {
    margin-top: 100px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.hero-image {
  border-radius: 10px; /* Adjust the value for more or less rounding */
}

.cap-list {
    padding: 15px;
    margin-bottom: 15px;
}

.clients-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 5px;
    margin-top: 10px;
    padding-left: 10px;
    max-width: 600px;
    background-color: white;
    color:orange
}

.menu-link.active {
    background: orange;
    color: #fff !important;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}


.menu-link {
    padding: 5px 10px;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 30px;
}

.info { margin-bottom: 25px; }
.info p { margin: 8px 0; }
.label { font-weight: bold; }
.contact-form label { display: block; margin-top: 15px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 8px; margin-top: 5px; border: 1px solid #ccc; border-radius: 4px;
}
.contact-form textarea { resize: vertical; height: 100px; }
.contact-form button {
    margin-top: 18px; padding: 10px 20px; background: #007bff; color: #fff; border: none; border-radius: 4px;
    cursor: pointer; font-size: 16px;
}
.contact-form button:hover { background: #0056b3; }

.maroon-content {
    color: maroon;
    font-weight: bold;
}

.nav-pills .nav-link.active {
    background-color: orange; /* A darker orange for the active state */
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.clients-carousel-outer {
    overflow: hidden;
    width: 100%;
    background: #fdf6e3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin: 0 auto 32px auto;
    max-width: 900px;
    padding: 32px 0;
}

.clients-carousel-inner {
    width: 100%;
    position: relative;
}

.clients-carousel-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: scrollClients 30s linear infinite;
    will-change: transform;
}

.clients-carousel-track div {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(200,100,0,0.08);
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.clients-carousel-track div:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(200,100,0,0.18);
}

.clients-carousel-track img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s;
}

.clients-carousel-track div:hover img {
    filter: none;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.floating-img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    border: 0.5pt solid orangered;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 24px 24px 16px 24px;
    min-width: 220px;
    min-height: 120px;
    max-width: 90vw;
    max-height: 80vh;
    text-align: center;
}
.floating-img-modal img {
    max-width: 80vw;
    max-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.floating-img-modal .close-btn {
    position: absolute;
    top: 8px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.7rem;
    color: #a00;
    cursor: pointer;
}