
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Base HTML and global settings */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.motto-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95); /* Slightly see-through */
}

    .motto-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.hero-slide {
    height: 60vh; /* Decreased height from 70vh */
    background-size: cover;
    background-position: center center;
    position: relative;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45); /* Slightly darker overlay for better contrast */
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-overlay h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #ffffff;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
        animation: fadeInDown 0.8s ease-in-out;
    }

    .hero-overlay p {
        font-size: 1.2rem;
        color: #f1f1f1;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        animation: fadeInDown 1.1s ease-in-out;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }
}

.carousel-indicators {
    justify-content: center;
    margin-top: 1rem;
}

    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid #ccc;
        opacity: 0.5;
        transition: all 0.3s ease-in-out;
        margin: 0 6px;
    }

        .carousel-indicators [data-bs-target]:hover {
            opacity: 0.8;
            transform: scale(1.2);
            background-color: #f8f9fa;
        }

    .carousel-indicators .active {
        opacity: 1;
        background-color: #007bff;
        border-color: #007bff;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
    }

/* Custom CSS to ensure dropdown appears below the button */
#langDropdown + .dropdown-menu {
    top: 100% !important; /* Ensure it opens below the button */
    left: 0 !important; /* Align it with the left edge of the button */
}

/*** NAV BAR STYLING START ***/
.navbar-nav .nav-link {
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

    /* Hover and Focus: No underline, just color */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: #ffc107;
    }

    /* Active item (current page) */
    .navbar-nav .nav-link.active {
        color: #ffca2c;
        font-weight: 600;
    }

/* --- DROPDOWN MENU STYLING --- */
.dropdown-menu {
    background-color: #fff;
    border-radius: 0.5rem;
    border: none;
    padding: 0.5rem 0;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    /* Zebra striping on dropdown items */
    .dropdown-menu > li:nth-child(odd) > .dropdown-item {
        background: linear-gradient(to right, #f3f3e7, #ffffff);
    }

    .dropdown-menu > li:nth-child(even) > .dropdown-item {
        background: linear-gradient(to right, #ffffff, #f3f3e7);
    }

    .dropdown-menu .dropdown-item:hover {
        background: linear-gradient(to right, #ffc107, #ffca2c) !important;
        color: #000 !important;
    }

/* Dropdown item styles */
.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: #212529;
    transition: all 0.2s;
}

    /* On hover: matching main nav */
    .dropdown-item:hover {
        background-color: #ffc107;
        color: #fff;
    }

    /* Active item in dropdown */
    .dropdown-item.active {
        background-color: #0dcaf0;
        font-weight: 600;
        color: #fff;
    }

/* --- LANGUAGE DROPDOWN --- */
#langDropdown {
    padding: 0.75rem 1rem;
    font-weight: 500;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }

        .navbar-nav .nav-link,
        .navbar-nav .dropdown-toggle {
            display: block;
            padding: 1rem;
            border-bottom: none;
        }

    .dropdown-menu {
        position: static;
        float: none;
        background-color: #fff;
        border: none;
        box-shadow: none;
    }

    .dropdown-submenu .dropdown-menu {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* --- CUSTOM NAVBAR BG IMAGE --- */
.custom-navbar {
    position: relative;
    background-image: url('/Images/mv-nav-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 1030;
    min-height: 60px;
    display: flex;
    align-items: flex-end;
}

/* --- CUSTOM BUTTON STYLE --- */
.btn-care {
    background-color: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .btn-care:hover {
        background-color: #0b5ed7;
    }

/*** NAV BAR STYLING END ***/
/* Footer styling */
footer h5, footer h6 {
    font-family: 'Poppins', sans-serif;
}

footer a:hover {
    color: #ffc107 !important; /* Gold hover */
    text-decoration: underline;
}

footer {
    position: relative;
    background-image: url('/Images/your-footer-bg.png'); /* keep your footer bg */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border: 2px solid gold; /* GOLD border */
    padding: 20px; /* optional, for spacing */
    box-sizing: border-box; /* ensure padding and border included */
}

    footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 0;
        pointer-events: none;
    }

    footer > * {
        position: relative;
        z-index: 1;
    }

    footer .row > div {
        padding-bottom: 1rem;
    }

@media (max-width: 767.98px) {
    footer {
        text-align: center;
    }

        footer .row > div {
            margin-bottom: 1rem;
        }
}


/* Buttons and highlights */
.btn-custom {
    background-color: #ff7f50; /* Coral */
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-custom:hover,
    .btn-custom:focus {
        background-color: #ff6347; /* Tomato */
        box-shadow: 0 6px 20px rgba(255, 99, 71, 0.6);
        text-decoration: none;
        outline: none;
    }

.custom-highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    background-color: #ffbf00; /* base golden tone */
    background-image: url('/Images/your-golden-texture.png'); /* replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #d4af37; /* optional gold border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 576px) {
    .custom-highlight-text {
        padding: 12px;
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p.lead {
        font-size: 1rem;
    }

    .btn-custom {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
    }
}


/* Hero Section Styling */
.hero-section {
    background: url('/Images/Header-bg11.jpg') center/cover no-repeat; /* Keep original background from _Layout */
    min-height: 140px; /* Keep original min-height from _Layout */
    color: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the start */
    padding: 0 1rem; /* Adjust padding to match _Layout */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    gap: 1rem;
}

    .hero-section::before { /* Dark overlay from _Layout */
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); /* subtle white overlay for extra brightness */
        z-index: 0;
    }

    .hero-section > .container { /* Ensure container content is above overlay if used */
        position: relative;
        z-index: 1;
    }

    .hero-section .company-name { /* Specific company name in hero section */
        font-size: 1.8rem;
        color: #fff;
    }


/* Social Icons in Header */
.social-icons {
    position: absolute !important;
    top: 50% !important;
    right: 1rem !important;
    transform: translateY(-50%);
    z-index: 1100 !important; /* Make sure it's well above overlay and other elements */
    pointer-events: auto !important;
    display: flex;
    align-items: center;
    gap: 14px; /* Default gap */
}

    .social-icons a {
        color: #e3f0fb; /* Light background for icons */
        background: #0d6efd; /* Blue background for icons */
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
        font-size: 1.25rem;
        text-decoration: none;
    }

        .social-icons a.email-link {
            border-radius: 18px;
            background: #e3f0fb;
            color: #1976d2 !important;
            width: auto;
            height: 36px;
            padding: 0 14px 0 12px;
            font-size: 1rem;
            gap: 6px;
            white-space: nowrap;
        }

            .social-icons a:hover,
            .social-icons a.email-link:hover {
                background: rgba(255,255,255,0.12); /* Subtle hover effect for icons */
                color: #FFD700 !important; /* Gold hover color */
            }

@media (max-width: 768px) {
    .social-icons {
        right: 12px;
        top: 10px;
        gap: 7px;
    }

        .social-icons a.email-link span {
            display: none !important; /* Only show the icon on small screens */
        }

        .social-icons a.email-link {
            padding: 0 10px;
            min-width: 36px;
            justify-content: center;
        }
}


/* Header Specifics */
header h1 {
    font-family: 'Abril Fatface', cursive;
    color: #FFE082;
    font-size: 2.5rem; /* slightly reduced from 3rem */
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Page section common styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.modern-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #f4a261; /* warm, modern orange/gold */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    letter-spacing: 2px;
    margin: 40px 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0d6efd, #6610f2);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Logo Block (if used outside header, otherwise header styles might apply) */
.logo-block {
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    margin-left: 0;
    padding-left: 0;
}

.logo-img {
    height: 75px; /* bigger logo */
    width: 75px;
}

.logo-block .company-name {
    font-size: 0.85rem; /* or 1rem, depending on how small you want it */
    color: white;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}


/* Elegant Borders for sections/cards */
.elegant-border-yellow {
    border: 8px solid rgba(var(--bs-primary-rgb), 0.9);
    border-radius: 0.75rem;
    padding: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #212529;
    background-image: url('/Images/subtle-pattern-border-yellow.png');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.elegant-border-owsq {
    border: 2px solid rgba(var(--bs-primary-rgb), 0.9);
    border-image-source: url('/Images/subtle-pattern-border.png') !important;
    border-radius: 0.75rem;
    padding: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #212529;
    background-image: url('/Images/subtle-pattern-border-owsq.png');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.elegant-border-blue {
    border: 2px solid rgba(var(--bs-primary-rgb), 0.9);
    border-image-source: url('/Images/subtle-pattern-border.png') !important;
    border-radius: 0.75rem;
    padding: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #212529;
    background-image: url('/Images/subtle-pattern-border-blue.png');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover animations */
div.hover-animate:hover {
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #0d6efd; /* optional: change color */
    letter-spacing: 0.5px;
}

div.hover-underline {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

    div.hover-underline::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #0d6efd;
        transition: width 0.3s ease;
    }

    div.hover-underline:hover::after {
        width: 100%;
    }


/* Call to action section */
.cta-section {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .cta-section h2 {
        font-size: 2.5rem;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    }

    .cta-section p.lead {
        font-size: 1.25rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

/* WOW.js for animations */
.wow {
    visibility: hidden;
}

    .wow.animate__animated {
        visibility: visible;
    }

/* Background section color */
.our-story-section {
    background: linear-gradient(to right, #fff8f3, #fff0e5);
    color: #333;
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4e342e;
    position: relative;
}

.story-text {
    background-color: #ffffff;
    border-left: 5px solid #ff7043;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

    .story-text:hover {
        background-color: #fff5ec;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        transform: translateY(-5px);
    }

.our-story-section {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ff7043;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

.vision-mission-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.vision-mission-section {
    background: linear-gradient(to bottom right, #f0f4f8, #ffffff);
}

    .vision-mission-section .info-card {
        background-color: #ffffff;
        transition: all 0.35s ease;
        border: 1px solid #e6e6e6;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }


.vision-mission-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
}

    .vision-mission-section .info-card {
        background-color: #ffffff;
        transition: all 0.4s ease;
        border: 2px solid transparent;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
        position: relative;
    }

        .vision-mission-section .info-card:hover {
            transform: translateY(-10px);
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

/* Add border glow based on icon theme on hover */
.info-card:hover .icon-box.text-primary ~ h5,
.info-card:hover .icon-box.text-primary ~ p {
    color: #0056b3;
}

.info-card:hover .icon-box.text-primary {
    color: #0056b3;
}

.info-card:hover .icon-box.text-success {
    color: #218838;
}

.info-card:hover .icon-box.text-danger {
    color: #c82333;
}

    .info-card:hover .icon-box.text-primary ~ h5::before,
    .info-card:hover .icon-box.text-success ~ h5::before,
    .info-card:hover .icon-box.text-danger ~ h5::before {
        content: '';
    }

/* Border color styles */
.info-card:hover.border-primary {
    border-color: #007bff;
}

.info-card:hover.border-success {
    border-color: #28a745;
}

.info-card:hover.border-danger {
    border-color: #dc3545;
}

/* Optional glowing edge effect */
.info-card.border-primary:hover {
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
}

.info-card.border-success:hover {
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.4);
}

.info-card.border-danger:hover {
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.4);
}


.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #007bff, #28a745);
    margin-top: 0.75rem;
    border-radius: 10px;
}

.section-subtitle {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.why-choose-section {
    background: linear-gradient(to bottom right, #f0f4f8, #ffffff);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-card {
    transition: all 0.35s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
}

    .choose-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        background-color: #ffffff;
    }

        .choose-card:hover .icon-box {
            transform: scale(1.1);
        }

.icon-box {
    transition: transform 0.3s ease;
}

.process-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.4s ease;
}

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background-color: #f9fcff;
    }

/* Unique border hover colors */
.process-card-1:hover {
    border-color: #007bff;
}
/* Blue */
.process-card-2:hover {
    border-color: #28a745;
}
/* Green */
.process-card-3:hover {
    border-color: #fd7e14;
}
/* Orange */
.process-card-4:hover {
    border-color: #6610f2;
}
/* Purple */
.process-card-5:hover {
    border-color: #dc3545;
}
/* Red */
.process-card-6:hover {
    border-color: #20c997;
}
/* Teal */



.card-hover {
    transition: all 0.5s ease;
    border: none;
}

    .card-hover i {
        transition: transform 0.4s ease;
    }

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        color: #fff !important;
    }

.card-analytics:hover {
    background: linear-gradient(135deg, #64b5f6, #1976d2); /* Blue shade */
}

.card-nlp:hover {
    background: linear-gradient(135deg, #81c784, #2e7d32); /* Green shade */
}

.card-vision:hover {
    background: linear-gradient(135deg, #ef9a9a, #c62828); /* Red shade */
}

.card-hover:hover i,
.card-hover:hover .card-title,
.card-hover:hover .card-text {
    color: #fff !important;
}


.text-box-border {
    border-left: 8px solid #0d6efd; /* Bootstrap primary color */
    background: linear-gradient(135deg, #f8f9fa, #e9f3ff); /* subtle shade */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    .text-box-border:hover {
        border-left-color: #6610f2; /* Purple highlight on hover */
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
        background: linear-gradient(135deg, #f1f3f5, #ddefff);
        transform: translateY(-4px);
    }


.approach-step {
    background-color: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
    border-radius: 1rem;
}

    .approach-step:hover {
        background-color: #e0f0ff;
        border-image: linear-gradient(to right, #007bff, #6610f2);
        border-image-slice: 1;
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(102, 16, 242, 0.2);
    }

.feature-box {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    /* Unique hover styles for each column */
    .feature-box.box-1:hover {
        background-color: #e3f2fd; /* light blue */
        border-left: 5px solid #2196f3;
    }

    .feature-box.box-2:hover {
        background-color: #e8f5e9; /* light green */
        border-left: 5px solid #43a047;
    }

    .feature-box.box-3:hover {
        background-color: #fff3e0; /* light orange */
        border-left: 5px solid #fb8c00;
    }

    .feature-box i {
        transition: transform 0.3s ease;
    }

    .feature-box:hover i {
        transform: scale(1.2);
    }

.hover-card {
    background-color: #fff;
    transition: background 0.4s ease, transform 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-8px);
        color: #fff !important;
    }

.hover-blue:hover {
    background: linear-gradient(135deg, #007bff, #339af0);
}

.hover-green:hover {
    background: linear-gradient(135deg, #28a745, #5cd68c);
}

.hover-red:hover {
    background: linear-gradient(135deg, #dc3545, #f66);
}

.hover-card:hover h5,
.hover-card:hover p,
.hover-card:hover i {
    color: #fff !important;
}

.hover-transition {
    transition: background-color 0.4s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* Hover styles */
.hover-primary:hover {
    background-color: #e7f1ff !important;
    border-color: #0d6efd !important;
    transform: translateY(-6px);
}

.hover-success:hover {
    background-color: #e9f7ef !important;
    border-color: #198754 !important;
    transform: translateY(-6px);
}

.hover-danger:hover {
    background-color: #ffe8e9 !important;
    border-color: #dc3545 !important;
    transform: translateY(-6px);
}

/* Icon bounce on hover */
.feature-box:hover .feature-icon {
    animation: bounce-icon 0.6s;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.section-title {
    font-size: 2rem;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: #0d6efd;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.img-hover-zoom img {
    transition: transform 0.4s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #fff;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .timeline-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.timeline-number {
    background-color: #0d6efd;
    color: #fff;
    font-weight: bold;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}


.hover-effect {
    transition: all 0.4s ease-in-out;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 0.75rem;
}

    .hover-effect:hover {
        transform: translateY(-6px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    }

    /* Hover tint backgrounds and border colors */
    .hover-effect.text-primary:hover {
        background-color: rgba(0, 123, 255, 0.1);
        border-color: #007bff;
    }

    .hover-effect.text-success:hover {
        background-color: rgba(40, 167, 69, 0.1);
        border-color: #28a745;
    }

    .hover-effect.text-warning:hover {
        background-color: rgba(255, 193, 7, 0.1);
        border-color: #ffc107;
    }

.elegant-gradient-bg {
    background: linear-gradient(135deg, #1f2e4d 0%, #3b5998 100%);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .bg-glass:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.text-gradient-blue {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-box {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .benefit-box:hover {
        transform: translateY(-5px);
        color: #fff;
    }

.hover-bg-blue:hover {
    background-color: #007bff !important;
}

.hover-bg-green:hover {
    background-color: #28a745 !important;
}

.hover-bg-yellow:hover {
    background-color: #ffc107 !important;
}

.hover-bg-red:hover {
    background-color: #dc3545 !important;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.animate-icon {
    transition: transform 0.3s ease;
}



.btn-care {
    background-color: #c2185b; /* We Care: pink/red tone */
    border: groove;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

    .btn-care:hover {
        background-color: #c2185b; /* Darker pink on hover */
        color: #fff;
    }


.impact-box {
    background-color: #f0f8ff;
    border-left: 4px solid #0d6efd;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
}

.impact-text {
    display: inline-block;
    vertical-align: middle;
}

/* Learn More Button */
.industry-card .btn-outline-primary {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 30px;
}

.hero-industry {
    background: url('/Images/logistics-hero.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1b2645;
}

.challenges-list .list-group-item {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .challenges-list .list-group-item:hover {
        background: #e8f1ff;
        border-color: #0d6efd;
    }

.solution-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .solution-card i {
        transition: color 0.3s;
    }

    .solution-card:hover i {
        color: #0d6efd;
    }

.section-title {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1rem;
}

.card:hover, .industry-card:hover {
    background-color: #f0f8ff;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.challenge-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background-color: #ffffff;
    border-radius: 12px;
}

    .challenge-card:hover {
        background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
        border-color: #0d6efd;
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 24px rgba(13, 110, 253, 0.1);
    }

    .challenge-card i {
        transition: color 0.3s ease;
    }

    .challenge-card:hover i {
        color: #0a58ca;
    }

#langForm button img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 4px;
}

#langForm button:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
