body {
    /* background: linear-gradient(to right, #001f3f, #ffffff); */
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background: rgba(0, 31, 63, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 28px !important;
    font-weight: 700;
    color: white !important;
}

.navbar a {
    color: white !important;
    font-size: 18px;
    font-weight: 700;
}

.section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 20px;
    text-align: center;
    font-size: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

.spacer {
    margin-top: 90px;
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.about-list li {
    margin: 20px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative;
}

.products-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto 10px auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.footer {
    background: #001f3f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.carousel-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    /* Default for desktop */
}

/* Adjust on smaller devices */
@media (max-width: 768px) {
    .carousel-img {
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }

    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
}


.map-container {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

.footer a {
    color: white;
    margin: 0 6px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 20px;
    border-radius: 15px;
}

.about-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.about-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

h4 {
    font-weight: 600;
}

.about-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    color: #555;
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #001f3f;
    color: white;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#backToTopBtn:hover {
    background: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

#backToTopBtn span {
    display: block;
    transform: translateY(2px);
}

.brand-card {
    min-width: 300px;
    max-width: 90vw;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007bff;
    text-align: center;
}

.brand-text {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    font-size: 0.85rem;
}

.reach-section {
    background: linear-gradient(135deg, #f8f9fa, #e0f7fa);
    padding: 20px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-in-out;
}

.reach-title {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.reach-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
}

.reach-description {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: auto;
}

.reach-icon {
    font-size: 2.5rem;
    color: #17a2b8;
    margin-bottom: 1rem;
}

.owner-section {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
