
html, body {
    height: 100%;
}

body {
    /*font-family: 'Segoe UI', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    margin-top: 0;
    padding-top: 0;
    padding-top: 50px;
}

.navbar {
    /*background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);*/
    background: #004773;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}

.nav-link {
    color: #ffffffcc !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background-color: #ffc107;
        transition: width 0.3s;
    }

    .nav-link:hover {
        color: white !important;
    }

        .nav-link:hover::after {
            width: 100%;
        }

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

.dropdown-item {
    font-weight: 500;
    color: #333;
}

    .dropdown-item:hover {
        background-color: #f1f1f1;
        color: #0d6efd;
    }

.btn-login {
    background-color: #ffc107;
    color: #212529;
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background-color: white;
        color: #0d6efd;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }

/*        .footer {
            background-color: #f8f9fa;
            text-align: center;
            padding: 16px 0;
            border-top: 1px solid #dee2e6;
        }*/

/*SLIDER*/
.slider-img {
    width: 100%;
    height: 100vh; /* Full screen height on desktop */
    max-height: 600px; /* Limits it */
    object-fit: cover;
}

@media (max-width: 768px) {
    .slider-img {
        height: 300px; /* Smaller height for mobile */
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-caption {
        text-align: center;
        padding-bottom: 1rem;
    }
}

.card:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

img.img-fluid {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

    img.img-fluid:hover {
        filter: grayscale(0%);
    }

.top-bar {
    position: sticky;
    top: 0;
    z-index: 1040;
}

a.text-decoration-none:hover {
    text-decoration: underline !important;
    color: #ffc107 !important;
}

.top-bar {
    background-color: #e9f1fb; /* light background to contrast dark text */
    color: #003366; /* dark blue */
    font-size: 0.85rem; /* smaller font size */
    padding: 6px 0;
}

    .top-bar a {
        color: #003366;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
    }

        .top-bar a:hover {
            text-decoration: underline;
        }

    .top-bar .contact-icon {
        margin-right: 6px;
        color: #0056b3; /* slightly brighter blue for icon */
    }

footer {
    font-size: 0.9rem;
    /*background: linear-gradient(135deg, #001f4d, #003366);*/ /* Dark blue gradient */
    background: #004773; /* Dark blue gradient */
    color: #ffffff;
}

    footer h5 {
        font-size: 1.1rem;
        color: #ffffff;
    }

    footer a {
        color: #ffffff;
        font-size: 0.8rem;
        text-decoration: none;
        transition: color 0.3s;
    }

        footer a:hover {
            color: #ffc107; /* Highlight on hover */
            text-decoration: underline;
        }

    footer p,
    footer small {
        color: #dddddd;
        font-size: 0.85rem;
    }

    footer i.text-warning {
        color: #ffc107 !important; /* Keep icons gold/yellow */
    }

    footer .btn-warning {
        background-color: #ffc107;
        border: none;
        color: #003366;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

        footer .btn-warning:hover {
            background-color: #fff;
            color: #001f4d;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

.partner-logo {
    max-height: 80px; /* Controls height */
    max-width: 100%; /* Keeps it responsive */
    object-fit: contain; /* Ensures logos don’t stretch */
}


.top-bar {
    background-color: #0d1b2a;
    color: #fff;
    font-size: 0.95rem;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

    .top-bar a:hover {
        text-decoration: underline;
    }

.top-bar .contact-icon {
    margin-right: 6px;
    color: #ffc107; /* Accent color */
}

@media (max-width: 768px) {
    .top-bar .text-end {
        text-align: center !important;
        margin-top: 5px;
    }
}


<!-- Hover Effects CSS -->

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #007bff !important; /* Change to your brand's primary color */
}

.breadcrumb-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 300px;
    color: white;
}

    .breadcrumb-hero .breadcrumb a {
        color: #fff;
    }

    .breadcrumb-hero .breadcrumb .active {
        color: #ffc107;
    }

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}


body {
    overflow-x: hidden;
}

.product-card {
    height: 100%; /* stretch within column */
    min-height: 200px; /* fixed height for uniform look */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    background-color: #fff;
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

.carousel-inner,
.carousel-item,
.row {
    overflow: visible !important;
}

