
        @media (min-width: 1400px) {
            .container {
                max-width: 1373px;
            }
        }

        .btn.btn-gradient-primary {
            background: #234360;
            border: none;
            color: #fff;
            box-shadow: 0 5px 20px rgba(52, 58, 64, 0.1);
        }

        .btn.btn-gradient-primary:hover {
            background: #ed5835;
            border: none;
            color: #fff;
            box-shadow: 0 5px 20px rgba(52, 58, 64, 0.1);
        }

        .btn.btn-gradient-danger {
            background: #20425e;
        }

        .btn.btn-gradient-danger:hover {
            background: #ed5835;
        }

        #flash-message {
            opacity: 1;
            transition: opacity 1s ease-out;
            position: absolute;
            top: 112px;
            left: 20%;
        }

        #flash-message.fade-out {
            opacity: 0;
            display: none;
        }

        .header-bottom {
            background: #234360 !important;

            height: 60px;
        }

        .inlinee {
            color: #ed5835;
        }

        .fire-badge {
            font-size: 13px;
            text-transform: uppercase;
            background: #ed58353d;
            padding: 8px;
            color: #ed5835;
            border-radius: 15px;
            display: inline-block;
        }

        .griude {
            font-size: 48px;
        }

        .subheading {
            font-size: 15px;
            color: #202122;
        }

        .opacity-75 {
            color: #202122;
        }

        .hero-soft-gradient {
            position: relative;
            background: linear-gradient(135deg,
                    #e8e2da 0%,
                    #f3e7dc 50%,
                    #f6e1d2 100%);
            overflow: hidden;
        }

        .hero-soft-gradient::before {
            content: "";
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle,
                    rgba(255, 255, 255, 0.4) 0%,
                    transparent 70%);
            pointer-events: none;
        }

        .btnn {
            padding: 10px 12px !important;
            background-color: transparent !important;
            border: 1px solid #26435f !important;
            border-radius: 10px;
        }

        p {
            line-height: 1.5 !important;
        }

        /* Subtitle */
        .subtitle {
            color: #f15a2d;
            letter-spacing: 1px;
            font-size: 14px;
        }

        /* Title Highlight */
        .highlight {
            color: #f15a2d;
        }

        /* Industry Card */
        .industry-card {
            background: #ffffff;
            padding: 40px 25px;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            height: 100%;
        }

        .industry-card h5 {
            font-weight: 600;
            margin-top: 20px;
            font-size: 18px;
            color: #222;
        }

        /* Icon Circle */
        .industry-icon-box {
            width: 75px;
            height: 75px;
            margin: 0 auto;
            background: rgba(241, 90, 45, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .industry-icon-box i {
            font-size: 32px;
            color: #f15a2d;
        }

        /* Hover Effect */
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .industry-card:hover .industry-icon-box {
            background: #f15a2d;
        }

        .industry-card:hover .industry-icon-box i {
            color: #ffffff;
        }


        .custom-accordion .accordion-item {
            border: none;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            border-left: 5px solid transparent;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        /* Active Left Border */
        .custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-left: 5px solid #f15a2d;
        }

        /* Button Styling */
        .custom-accordion .accordion-button {
            background: #ffffff;
            font-weight: 600;
            padding: 20px 25px;
            box-shadow: none;


        }

        .custom-accordion .accordion-button:focus {
            box-shadow: none;
        }

        /* Remove default icon */
        .custom-accordion .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 22px;
            font-weight: bold;
            color: #f15a2d;
            transform: rotate(0deg);
        }

        /* Change to minus when open */
        .custom-accordion .accordion-button:not(.collapsed)::after {
            content: "−";
        }

        /* Body */
        .custom-accordion .accordion-body {
            padding: 0 25px 25px 25px;
            color: #555;
            line-height: 1.7;
        }
        .inlineee{
            color:#234360;
        }

          :root {
        --primary: #0f2742;
        --accent: #ff6b00;
        --light: #ffffff;
        --gray-light: #f5f7fa;
        --gray-border: #e4e8ee;
        --text-dark: #1f2d3d;
        --text-light: #6b7c93;
        --radius: 10px;
        --transition: 0.3s ease;
    }

    .btn-primary {
        background: var(--accent);
        color: #fff;
        padding: 14px 26px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }

    .btn-primary:hover {
        background: #e85e00;
        transform: translateY(-2px);
    }

    .btn-outline {
        border: 2px solid #fff;
        padding: 12px 26px;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    .btn-outline:hover {
        background: #fff;
        color: var(--primary);
    }

    .btn-light {
        background: #fff;
        color: var(--primary);
        padding: 14px 26px;
        border-radius: 6px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-light:hover {
        background: var(--accent);
        color: #fff;
    }

    .full-btn {
        width: 100%;
        margin-top: 20px;
    }


    .productss {
        gap: 40px;
    }

    .product-card {
        background: #fff;
        border-radius: var(--radius);
        border: 1px solid var(--gray-border);
        transition: var(--transition);
        position: relative;
    }

    .product-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 4px;
        width: 100%;
        background: var(--accent);
        border-radius: 10px 10px 0 0;
    }

    .product-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px);
    }

    .product-card h3 {
        margin-bottom: 12px;
    }

    .product-card p {
        color: var(--text-light);
    }

    /* SIZE TAGS */
    .sizess {
    background: #f4f5f7;
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #9d9d9d80;
    transition: var(--transition);
    margin: 10px 0px;
    }

    .sizess:hover {
        background: #f4f5f7;
        color: #343a4b;
        border-color: #c9c9ca;
    }

.product-body{
   background: #26435f0d;
}

.product-title{
    font-size:21px;
}


.intro-section{
    position: relative;
    overflow: hidden;
}

/* Arrow Images */
.intro-arrow{
    position: absolute;
    width: 208px;
    animation: floatArrow 4s ease-in-out infinite;
    opacity: 0.7;
}

/* Top Right Arrow */
.arrow-top{
    top: 20px;
    right: -26px;
}

/* Bottom Left Arrow */
.arrow-bottom{
    bottom: 20px;
    left: -21px;
}

/* Animation */
@keyframes floatArrow{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width:991px){
    .intro-arrow{
        display:none;
    }
}