/* Page Stylesheet for index.blade.php */

.small span {
            transition: all 0.3s ease;
        }

.carousel-img {
        height: 505px;
        object-fit: cover;
        width: 100%;
    }

    @media (max-width: 768px) {
        .carousel-img {
            height: 200px;
        }
    }

    .overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    /* Gradient Layer */
    .gradient-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        color: #fff;
        max-width: 700px;
        padding: 0 15px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Heading Style */
    /* .hero-title {
        color: #ffffff;
        font-size: 60px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 1px;
    } */
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        animation: fadeUp 1s ease forwards;
    }

    .hero-subtitle {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.6;
        opacity: 0.95;
    }

    /* Mobile Font */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 26px;
            /* padding: 0 10px; */
        }

        .hero-subtitle {
            font-size: 14px;
        }
    }

    /* Smooth Animation */
    .hero-title {
        animation: fadeUp 1s ease;
    }

    .hero-content {
        animation: fadeUp 1s ease;
    }


    @keyframes fadeUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

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

    .supplier-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.35s ease;
        position: relative;
    }

    .supplier-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* Image */
    .supplier-img {
        height: 220px;
        overflow: hidden;
    }

    .supplier-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .supplier-card:hover img {
        transform: scale(1.08);
    }

    /* Body */
    .supplier-body {
        padding: 18px;
    }

    .supplier-name {
        font-size: 20px;
        font-weight: 700;
        color: #2c2c2c;
    }

    .supplier-info {
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
    }

    .supplier-address {
        font-size: 13px;
        color: #888;
    }

    /* Button */
    .supplier-card .btn {
        border-radius: 8px;
        font-weight: 600;
    }

    .section-subtitle {
        /* max-width: 650px; */
        margin: 10px auto 0;
        font-size: 22px;
        color: #666;
        line-height: 1.6;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .section-title {
            font-size: 24px;
        }

        .section-subtitle {
            font-size: 14px;
            padding: 0 10px;
        }
    }

    .gradient-text {
        background: linear-gradient(120deg, #C89B3C, #f3d7a0, #C89B3C);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shine 3s linear infinite;
    }

