
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    margin: 0;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 0rem 2rem;
}
.navbar-brand {
    font-weight: 700;
    color: #ff6200;
    font-size: 1.6rem;
}
.navbar-nav .nav-link {
    color: #672087;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ff6200;
}
.btn-primary-cta {
    background-color: #ff6200;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.btn-primary {
    color: #fff;
    background: #652184;
    border-color: #652184;
}
.btn-primary-cta:hover,
.btn-primary-cta:focus {
    background-color: #e25800;
}
.justify-content-center {
    justify-content: end !important;
}
/* Dropdown menu custom colors */
.dropdown-menu {
    background-color: #0b1e38;
    border: none;
    border-radius: 0 0 8px 8px;
}
.dropdown-menu a.dropdown-item {
    color: #fff;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease;
}
.dropdown-menu a.dropdown-item:hover,
.dropdown-menu a.dropdown-item:focus {
    background-color: #ff6200;
    color: #fff;
}

/* Section backgrounds */
#slider {
    background-color: #ccc; /* Dark navy behind slider for contrast */
}

#about {
    background-color: #ccc;
    padding-top: 24px;
    padding-bottom: 24px; /* White for clean form area */
}
#products {
    background-color: #f0f5f9;
    padding-top: 24px;
    padding-bottom: 24px; /* Light bluish-gray */
}
#services {
    background-color: #fff9f3;
    padding-top: 24px;
    padding-bottom: 24px; /* Very light warm cream */
}
#testimonials {
    background-color: #e9f5f9;
    padding-top: 24px;
    padding-bottom: 24px; /* Soft pale blue */
}
#contact {
    background-color: #fff;
    padding-top: 24px;
    padding-bottom: 24px; /* White for clean form area */
}
footer {
    background-color: #0b1e38; /* Dark navy footer */
}
.navbar-brand img {
    width: 100%;
    height: 76px;
}
/* Hero Slider */
.carousel-item img {
    height: 58vh;
    object-fit: cover;
    /* filter: brightness(0.65);*/
}
.carousel-caption {
    bottom: 30%;
    left: 10%;
    max-width: 450px;
    /* background: rgba(255, 98, 0, 0.85);
     box-shadow: 0 6px 20px rgb(255 98 0 / 0.8);*/
    padding: 2rem 2.5rem;
    border-radius: 8px;
}
.carousel-caption h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.carousel-caption p {
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Sections Titles */
.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #0b1e38;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title::after {
    content: '';
    width: 90px;
    height: 4px;
    background: #ff6200;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards */
.card {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    background-color: #fff;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    background-color: #fff7f0; /* subtle warm highlight */
}
.card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Read More toggle */
.more-text {
    display: none;
}
.read-more-btn {
    margin-top: 0.8rem;
}

/* Testimonials cards hover */
.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
    background-color: #f9fefc; /* subtle cool highlight */
}
.testimonial-card p {
    font-style: italic;
    color: #555;
}
.testimonial-card h6 {
    margin-top: 1.4rem;
    font-weight: 700;
    color: #0b1e38;
}
.text-warning {
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

/* Contact form */
#contact .form-control:focus {
    border-color: #ff6200;
    box-shadow: 0 0 6px #ff6200a1;
}
#contact button {
    background-color: #ff6200;
    border: none;
    font-weight: 600;
}
#contact button:hover {
    background-color: #e25800;
}
#clients{
    background: #e9d0c0;
    padding: 47px;
}
#clients img {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

#clients img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.carousel-control-next, .carousel-control-prev {
    width: 3%;
}

.product-img {
    width: 100%;
    border-radius: 10px;
}
.product-title {
    font-size: 28px;
    font-weight: 600;
}
.spec-table td {
    padding: 10px;
}
a{
    color: white;
    text-decoration: auto;
}
.carousel-caption h3{
    padding: 10px;
    background: #672087d6;
    width: 100%;
}
.error{
    color: red;
    font-size: 12px;
}
/* Footer */
footer {
    color: #ccc;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #ff6200;
}
footer h5 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-logo {
    height: 95px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item img {
        height: auto;
    }
    .carousel-caption {
        bottom: 0%;
        left: 5%;
        max-width: 80%;
        padding: 0.5rem 1rem;
    }
}