﻿/* Top Navigation Boxed - Slightly Right */
.top-nav-bar {
    position: fixed;
    top: 0;
    left: 47.8%;
    transform: translateX(-48%);
    width: 90%;
    max-width: 1295px;
    background-color: #FDFDFD;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    height: 70px;
    z-index: 99999;
    padding: 0 20px;
    box-sizing: border-box;
    border-radius: 0;
}

.top-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo-section {
    flex: 0 0 auto;
}

.logo-image {
    height: 60px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}

/* Right container */
.login-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Welcome text */
.welcome-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

    .welcome-text img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        object-fit: contain;
    }

/* Buttons */
.login-button,
.register-button,
.logout-button {
    border-radius: 10px;
    border: 2px solid #FF6B00; /* 🔥 SAME ORANGE BORDER */
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button,
.logout-button {
    background: transparent;
    color: #FF6B00;
}

.register-button {
    background: #FF6B00;
    color: #fff;
}

    .login-button:hover,
    .register-button:hover,
    .logout-button:hover {
        background-color: #FF6B00;
        color: #fff;
        transform: translateY(-2px);
    }

/* Nav links + logout */
.nav-items {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-items a {
        text-decoration: none;
        color: #1D1D1D;
        transition: color 0.3s ease;
        padding: 6px 12px;
    }

        .nav-items a:hover,
        .nav-items a.active {
            color: #FF3C00;
            font-weight: bold;
        }

/* Responsive - Mobile */
@media (max-width: 768px) {

    .top-nav-bar {
        width: 94%;
        left: 50%;
        transform: translateX(-50%);
        height: 60px;
        padding: 0 15px;
    }

    /* Move logo slightly right to add space from login button */
    .logo-section {
        margin-right: 15px; /* adjust as needed */
    }




    .welcome-text {
        display: none !important;
    }

    .hamburger {
        display: none !important;
    }

    .login-container {
        gap: 20px;
    }

    .nav-items {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        padding: 0;
        gap: 10px;
        display: flex !important;
    }

        .nav-items a {
            border: none;
            padding: 6px 10px;
            background: none;
            text-align: center;
            font-size: 14px;
        }

            .nav-items a.active,
            .nav-items a:hover {
                background: none;
                color: #FF3C00;
            }

    /* 🔥 MOBILE-SPECIFIC LOGOUT BUTTON FIX */
    .logout-button {
        border: 2px solid #FF6B00 !important; /* Orange border */
        color: #FF6B00 !important;
        background: transparent !important;
        padding: 6px 12px;
        border-radius: 10px;
        font-size: 14px;
    }

        .logout-button:hover {
            background: #FF6B00 !important;
            color: #fff !important;
        }

    .logo-image {
        height: 45px;
        max-width: 150px;
    }
}

/* Prevent horizontal scroll */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* =====================================
   🔸 Category Header Styles
===================================== */

/* Category header fixed below top navbar */
.category-header {
    position: fixed;
    top: 70px;
    left: 47.8%; /* moved slightly left from 50% */
    transform: translateX(-48%); /* adjust transform to match left */
    width: 90%;
    max-width: 1295px;
    background-color: #000;
    height: 57px;
    z-index: 9998;
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 0;
}


/* Flex container for content remains unchanged */
.category-container {
    max-width: 1295px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; /* center categories horizontally */
    gap: 40px;
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    overflow-x: visible; /* allow child scroll if needed */
}

/* Horizontal Category List */
.horizontal-category-list {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Hide scrollbar on desktop */
    scrollbar-width: none; /* Firefox */
}

    .horizontal-category-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

.horizontal-category {
    flex: 0 0 auto; /* prevent shrinking */
    cursor: pointer;
    color: #FCFCFC;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .horizontal-category:hover,
    .horizontal-category.active {
        color: #FF6B00;
        background-color: rgba(255,107,0,0.1);
    }

/* Floating Product Popup */
#productPopup {
    display: none;
    position: fixed;
    top: 22% !important;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 5000;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.popup-content {
    display: flex;
    height: 420px;
}

.popup-subcategories {
    width: 26%;
    background: #fafafa;
    padding: 18px 0;
    overflow-y: auto;
    border-right: 1px solid #e5e5e5;
}

.popup-subcategory {
    padding: 12px 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .popup-subcategory:hover {
        background-color: rgba(255,107,0,0.1);
        color: #FF6B00;
    }

    .popup-subcategory.active {
        background-color: #FF6B00;
        color: #fff;
    }

.popup-products {
    width: 74%;
    padding: 10px 25px 10px 35px;
    overflow-y: auto;
    padding-top: 0 !important; /* 🔥 FIX: remove gap above header */
}

.popup-product {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
}

    .popup-product.header {
        position: sticky;
        top: 0 !important; /* 🔥 FIX: header sticks just below tabs */
        background: #f8f8f8;
        font-weight: 600;
        border-bottom: 2px solid #ddd;
        z-index: 2;
        padding: 14px 0 12px 0;
    }

/* Scrollbar styles */
.popup-subcategories::-webkit-scrollbar,
.popup-products::-webkit-scrollbar {
    width: 6px;
}

.popup-subcategories::-webkit-scrollbar-thumb,
.popup-products::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* =====================================
   🔸 Responsive Category Bar
===================================== */

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .category-container {
        gap: 20px;
    }

    .horizontal-category-list {
        gap: 20px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .category-header {
        width: 94.01%; /* slightly wider */
        left: 50%; /* keep centered */
        transform: translateX(-50%);
        height: auto;
        padding: 10px 15px;
        top: 61px;
    }

    .category-container {
        display: block;
        width: 100%;
        padding: 0;
        overflow-x: auto; /* enable horizontal scroll */
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .horizontal-category-list {
        display: inline-flex; /* horizontal layout */
        gap: 12px;
        width: max-content; /* ensures all categories are visible */
        overflow-x: visible; /* parent handles scroll */
        white-space: nowrap;
        padding: 5px 0;
    }

    .horizontal-category {
        flex: 0 0 auto;
        font-size: 14px;
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        background-color: rgba(255,255,255,0.05);
        transition: background 0.3s, color 0.3s;
    }

        .horizontal-category:hover,
        .horizontal-category.active {
            color: #FF6B00;
            background-color: rgba(255,107,0,0.1);
        }

    /* Optional: hide mobile scrollbar too */
    .horizontal-category-list::-webkit-scrollbar {
        display: none;
    }

    .horizontal-category-list {
        scrollbar-width: none;
    }
}

    .popup-content {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .popup-subcategories {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        gap: 10px;
        padding: 8px 0;
        overflow-x: auto;
    }

    .popup-subcategory {
        padding: 8px 12px;
        border-radius: 6px;
        background-color: #f5f5f5;
        min-width: max-content;
        text-align: center;
        cursor: pointer;
    }

.popup-products {
    width: 100%;
    padding: 10px;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 300px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    padding-top: 0 !important; /* 🔥 FIX: remove gap above header */
}

.popup-product {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    min-width: 720px;
    background-color: #fff;
    border-radius: 4px;
}

    .popup-product.header {
        display: grid;
        grid-template-columns: repeat(6, minmax(120px, 1fr));
        position: sticky;
        top: 0 !important; /* 🔥 FIX: header sticks perfectly */
        z-index: 10;
        background-color: #f8f8f8;
        font-weight: 600;
        border-bottom: 2px solid #ddd;
        padding: 12px 0;
        border-radius: 4px;
    }
            .popup-product.header div {
                background-color: #f8f8f8;
                text-align: center;
                padding: 4px 2px;
                min-width: 120px;
            }

        .popup-product div {
            font-size: 13px;
            text-align: center;
            padding: 4px 2px;
            word-break: break-word;
            min-width: 120px;
        }


        /* HIDE SCROLLBARS but keep scrolling working */

/* Chrome, Safari, Edge */
.category-container::-webkit-scrollbar,
.horizontal-category-list::-webkit-scrollbar,
.popup-products::-webkit-scrollbar,
.popup-subcategories::-webkit-scrollbar {
    display: none;
}

/* Firefox */
.category-container,
.horizontal-category-list,
.popup-products,
.popup-subcategories {
    scrollbar-width: none;
}


 /* //all product pricing//*/

/* =====================================
   🔸 Responsive Pricing Table + Filters
===================================== */

/* Container */
/* Container */
.pricing-table-container {
    width: 95%;
    max-width: 1200px;
    margin: 130px auto 20px; /* top margin increased to avoid header overlap */
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', sans-serif;
    overflow-x: auto;
}

/* Back Button */
.back-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }


/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-input {
    height: 36px; /* thoda chhota */
    border-radius: 20px; /* rounded edges */
    border: 1px solid #ccc;
    padding: 6px 12px; /* padding reduce kiya */
    font-size: 13px; /* font size chhota */
    flex: 1 1 100px; /* responsive flex width */
    min-width: 90px; /* minimum width */
}


/* Table */
.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 500px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead {
    background-color: #090909;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #DCF3F9;
}

/* Action Buttons */
.action-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 6px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid transparent;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .action-btn.buy {
        border-color: #FF6E20;
        color: #FF6E20;
    }

        .action-btn.buy:hover {
            background-color: #FF6E20;
            color: #fff;
        }

    .action-btn.sell {
        border-color: #1A6B84;
        color: #1A6B84;
    }

        .action-btn.sell:hover {
            background-color: #1A6B84;
            color: #fff;
        }

    .action-btn.whatsapp {
        border-color: #25D366;
        color: #25D366;
    }

        .action-btn.whatsapp:hover {
            background-color: #25D366;
            color: #fff;
        }

        .action-btn.whatsapp img {
            width: 18px;
            height: 18px;
        }

/* ==============================
   Responsive Mobile
=============================== */
@media (max-width: 768px) {
    .pricing-table-container {
        margin: 120px 10px 20px; /* ensure back button visible */
        padding: 15px;
    }

    .filter-bar {
        gap: 8px;
        margin-bottom: 15px;
    }

    .filter-input {
        height: 36px;
        font-size: 13px;
        padding: 6px 10px;
    }

    .pricing-table-wrapper {
        max-height: 400px;
    }

    table {
        min-width: 600px;
    }
}   
/*    globalsolution css*/

.hero-section {
    width: 100%;
    position: relative;
    overflow: visible; /* allow metrics to overflow */
}

.hero-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 0 15px;
}

    .hero-text h1 {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 46px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.4;
    }

/* Metrics Container */
.metrics-container {
    position: absolute;
    bottom: -40px; /* move it up from -50px to -20px */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1120px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
    height: 100px;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
}


.metric-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

    .metric-card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255,255,255,0.3);
    }

/* Colors */
.metric-orange {
    background-color: #FF6B00;
}

.metric-black {
    background-color: #0B0B0B;
}

.metric-gray {
    background-color: #3B3B3B;
}

    .metric-black h3, .metric-gray h3 {
        color: #FF6B00;
    }

.metric-orange h3 {
    color: #fff;
}

.metric-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-card p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 768px) {
    /* Hero Text */
    .hero-text h1 {
        font-size: 24px; /* smaller for mobile */
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .hero-text p {
        font-size: 14px; /* smaller paragraph */
        line-height: 1.4;
    }

    /* Metrics Container */
    .metrics-container {
        flex-direction: row;
        width: auto;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 5px;
        gap: 12px;
        bottom: -25px; /* ← yahan add karna hai */
        margin: 0;
     
        background-color: transparent;
        box-shadow: none;
        height: auto;
        border-radius: 0;
        scroll-behavior: smooth;
    }

        .metrics-container::-webkit-scrollbar {
            display: none;
        }

    .metrics-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .metric-card {
        min-width: 180px; /* slightly smaller for mobile */
        padding: 10px 8px;
        flex: none;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .metric-orange {
        background-color: #FF6B00;
    }

    .metric-black {
        background-color: #0B0B0B;
    }

    .metric-gray {
        background-color: #3B3B3B;
    }

    .metric-card h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .metric-card p {
        font-size: 12px;
        margin: 0;
    }

    .metric-card:not(:last-child)::after {
        display: none;
    }
}


/*Check Out Our Product Segments*/

/* ============================
   Product Section Container
============================ */
.product-section {
    background: #F3E9E1;
    width: 100%;
    padding: 60px 0;
}

    .product-section .container {
        max-width: 1440px;
        margin: 0 auto;
        text-align: center;
    }

/* Labels & Titles */
.categories-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0A92FF;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: #101010;
    margin-top: 10px;
}

/* Product Grid */
.product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Card */
.product-card {
    background-color: #F0F0F0;
    border-radius: 10px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 6px;
}

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }

/* Image Section */
.product-image-container {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    border-radius: 0 0 8px 8px;
}

.product-name-inside {
    position: absolute;
    bottom: 8px;
    left: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

/* Text area */
.product-text-area {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 18px;
}

.view-all-btn {
    background: transparent;
    border: 1.5px solid #FF6B00;
    color: #FF6B00;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    padding: 3px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .view-all-btn:hover {
        background-color: #FF6B00;
        color: #fff;
    }

/* ============================
   Mobile / Tablet Responsive
============================ */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 90%;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 95%;
    }
}
/* Remove underline from View All button */
.view-all-btn {
    text-decoration: none; /* remove hyperlink underline */
}

/* Mobile / Tablet Responsive */
@media (max-width: 768px) {
    /* 2 rows horizontal scroll */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(8, 140px); /* adjust total columns */
        grid-auto-rows: 130px; /* 2 rows height */
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px;
        width: 100%;
        -ms-overflow-style: none; /* hide scrollbar for IE and Edge */
        scrollbar-width: none; /* hide scrollbar for Firefox */
    }

        .product-grid::-webkit-scrollbar {
            display: none; /* hide scrollbar for Chrome, Safari */
        }

        .product-grid a {
            scroll-snap-align: start;
        }

       

    .product-card {
        height: 120px; /* smaller height */
        padding: 4px;
    }

        .product-card .product-image-container {
            height: 60px;
        }

        .product-card .product-text-area {
            margin-top: 6px;
        }
}


/* Remove underline from links around product cards for all screen sizes */
.product-grid a {
    text-decoration: none; /* remove underline */
    color: inherit; /* inherit text color */
    display: block; /* make full card clickable */
}

    /* Scrollbar styling */
    .product-grid::-webkit-scrollbar {
        height: 6px;
    }

    .product-grid::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.2);
        border-radius: 3px;
    }
}


/* =========================
   Register cshtml Page Styles
========================= */

/* Wrapper */
.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

/* Container */
/* Wrapper */
.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

/* Container */
.register-container {
    display: flex;
    width: 100%;
    max-width: 1000px; /* max width for desktop */
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    justify-content: center; /* centers left+right sections horizontally */
    align-items: center; /* vertically center content */
    margin: 0 auto; /* ensures container is centered in wrapper */
    height: auto; /* auto height to adapt content */
}

/* Left Image Section */
.register-left {
    width: 50%;
    background-color: #FFF5EE;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .register-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Right Form Section */
.register-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}


/* Register Box */
.register-box {
    width: 90%;
    max-width: 360px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 40px 35px;
}

/* Headings */
.register-title {
    color: #101010;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 8px;
}

.register-subtitle {
    color: #101010;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Form Fields */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

    .form-grid input,
    .form-grid select {
        width: 100%;
        height: 43px;
        border: 1px solid #DCDFEC;
        border-radius: 10px;
        padding: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        color: #101010;
        background: #FFFFFF;
        transition: 0.3s ease;
    }

        .form-grid input:focus,
        .form-grid select:focus {
            border-color: #FF6B00;
            box-shadow: 0 0 6px rgba(255, 107, 0, 0.25);
            outline: none;
        }

/* Button */
.register-btn {
    width: 100%;
    background-color: #FF6B00;
    color: #FFF;
    border: none;
    border-radius: 10px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .register-btn:hover {
        background-color: #e65d00;
        transform: translateY(-2px);
    }

/* Alert Message */
.alert {
    background: #FFECEC;
    color: #D90000;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .register-container {
        flex-direction: column;
        height: auto;
    }

    .register-left,
    .register-right {
        width: 100%;
    }

    .register-left {
        height: auto; /* scales image automatically */
        padding: 20px 0;
    }

        .register-left img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

    .register-right {
        padding: 25px;
    }

    .register-box {
        padding: 30px 20px;
    }

    .register-title {
        font-size: 22px;
    }

    .register-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .register-wrapper {
        padding: 15px;
    }

    .register-left img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .register-box {
        padding: 25px 15px;
    }

    .register-title {
        font-size: 20px;
    }

    .register-subtitle {
        font-size: 13px;
    }

    .form-grid input,
    .form-grid select {
        padding: 10px;
        font-size: 13px;
    }

    .register-btn {
        font-size: 14px;
        padding: 12px 0;
    }
}

/* ===== Footer ===== */
.custom-footer {
    background-color: #090909;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    padding: 50px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Wrap left section and columns separately */
.footer-top {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: nowrap; /* keep horizontal */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 0 0 auto; /* logo section stays fixed */
    min-width: 250px;
}

.footer-columns-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    overflow-x: auto; /* scroll only for columns */
    -webkit-overflow-scrolling: touch;
}

.footer-column {
    flex: 0 0 auto;
    min-width: 200px;
}

/* Logo & Social */
.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}

.footer-tagline p {
    font-size: 15px;
    line-height: 22px;
    color: #CCCCCC;
    margin: 0 0 4px 0;
}

.footer-social {
    margin-top: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

    .footer-social-icons img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

/* Footer items */
.footer-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-item {
    font-size: 14px;
    color: #BBBBBB;
    margin-bottom: 10px;
    cursor: pointer;
}

    .footer-item:hover {
        color: #FF6B00;
    }

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 25px 0;
}

/* Contact row stays horizontal */
.footer-contact-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.footer-contact-block {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-contact-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-contact-line {
    font-size: 14px;
    color: #BBBBBB;
    line-height: 22px;
    margin-bottom: 5px;
}

    .footer-contact-line img {
        width: 15px;
        height: 15px;
        margin-right: 8px;
        vertical-align: middle;
        filter: brightness(0) invert(1);
    }

.address {
    line-height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #AAAAAA;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-columns-wrapper,
    .footer-contact-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer-column,
    .footer-contact-block {
        flex: 0 0 auto;
        min-width: 200px;
    }
}

/* ============================
   📱 Mobile Footer Fix (Horizontal Columns)
   ============================ */
@media (max-width: 576px) {

    /* Footer top vertical first, then columns horizontal */
    .footer-top {
        flex-direction: column; /* stack items */
        gap: 20px; /* reduce space */
        align-items: flex-start;
    }

    /* Left section full width */
    .footer-left {
        width: 100%;
        min-width: unset;
    }

    /* Columns now show + scroll horizontally */
    .footer-columns-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 25px;
        width: 100%;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    /* Each column same width */
    .footer-column {
        flex: 0 0 180px;
        min-width: 180px;
    }

    /* scroll bar hidden */
    .footer-columns-wrapper::-webkit-scrollbar {
        display: none;
    }
}
/* ================================
   🌐 Desktop Footer Width Reduce
   ================================ */

@media (min-width: 992px) {
    .custom-footer {
        max-width: 1298px; 
        margin: 0 auto; /* center */
    }
}

@media (max-width: 576px) {
    .custom-footer {
        max-width: 95%;
        margin: 0 auto;
    }
}


  
/*//requiremnt model//*/

/* =============================
   Table Header Styling
   ============================= */
.table thead {
    background-color: #090909 !important; /* Dark background */
    color: #ffffff !important; /* White text */
}

    .table thead th {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        vertical-align: middle;
    }

/* Table Body Styling */
.table tbody td {
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(220, 243, 249, 0.5); /* semi-transparent */
}

/* Table responsive container */
.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
}

/* Optional: Add shadow for nicer look */
.table {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: #061D23;
    padding: 35px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Close Button */
.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* Form Grid */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

    .form-grid input,
    .form-grid select {
        width: 48%;
        padding: 12px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 14px;
        background-color: #fff;
        color: #000;
        box-sizing: border-box;
    }


/* Hide close icon everywhere */
.close-modal {
    display: none !important;
}

/* Modal Content Fix */
.modal-content {
    background: #061D23;
    padding: 45px 30px 35px; /* increased top padding */
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

    /* Fix heading being cut in mobile */
    .modal-content h2 {
        margin-top: 5px !important;
        text-align: center;
    }

/* Mobile Height Safe Padding */
@media (max-width: 768px) {
    .modal-content {
        padding-top: 55px !important; /* extra top space */
    }
}

/* =============================
   Buy/Sell Toggle Buttons (Outline)
   ============================= */
.toggle-btn {
    padding: 10px 20px;
    border-radius: 20px;
    background-color: transparent;
    color: #FF6E20; /* change from black to bright color */
    border: 2px solid #FF6E20;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

    /* Active state (Buy or Sell selected) */
    .toggle-btn.active {
        background: linear-gradient(90deg, #FF3C00, #1A6B84);
        color: #fff;
        border-color: transparent; /* optional for active look */
    }

    /* Hover state */
    .toggle-btn:not(.active):hover {
        background-color: #FF6E20;
        color: #fff;
    }

    /* Optional: different color for Sell button */
    .toggle-btn.sell {
        color: #1A6B84;
        border-color: #1A6B84;
    }

        .toggle-btn.sell.active {
            background: linear-gradient(90deg, #1A6B84, #FF3C00);
            color: #fff;
        }


/* =============================
   Gradient Theme Buttons (Outline)
   ============================= */
.gradient-btn-theme {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 14px;
    background-color: transparent;
    color: #FF6E20;
    border: 2px solid #FF6E20;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gradient-btn-theme:hover {
        background: linear-gradient(90deg, #FF3C00, #1A6B84);
        color: #fff;
        transform: scale(1.03);
    }

/* =============================
   Theme Buttons (Outline)
   ============================= */
.theme-btn {
    padding: 6px 14px;
    border-radius: 20px;
    background-color: transparent;
    color: #FF6E20;
    border: 2px solid #FF6E20;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .theme-btn:hover {
        background: linear-gradient(90deg, #FF3C00, #1A6B84);
        color: #fff;
        transform: scale(1.05);
    }

/* =============================
   Buy/Sell/WhatsApp Buttons
   ============================= */
.buy-btn, .sell-btn, .whatsapp-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn {
    background-color: transparent;
    color: #FF6E20;
    border: 2px solid #FF6E20;
}

    .buy-btn:hover {
        background-color: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

.sell-btn {
    background-color: transparent;
    color: #1A6B84;
    border: 2px solid #1A6B84;
}

    .sell-btn:hover {
        background-color: #1A6B84;
        color: #fff;
        transform: scale(1.03);
    }

.whatsapp-btn {
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
}

    .whatsapp-btn:hover {
        background-color: #25D366;
        color: #fff;
        transform: scale(1.03);
    }

    .whatsapp-btn img {
        height: 18px;
        width: 18px;
    }

/* Back button styling */
.back-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

/* =============================
   Responsive Adjustments
   ============================= */
@media (max-width: 768px) {
    .form-grid input,
    .form-grid select {
        width: 100%; /* stack fields vertically */
    }

    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }

    .table thead th, .table tbody td {
        font-size: 14px;
        padding: 8px;
    }

    .toggle-btn, .gradient-btn-theme, .theme-btn, .buy-btn, .sell-btn, .whatsapp-btn, .back-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .table thead th, .table tbody td {
        font-size: 12px;
        padding: 6px;
    }

    .modal-content {
        padding: 20px 15px;
    }

    .toggle-btn, .gradient-btn-theme, .theme-btn, .buy-btn, .sell-btn, .whatsapp-btn, .back-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
/*Our Services section*/

/* MAIN CONTAINER */
.services-section {
    background-color: #090909;
    width: 100%;
    padding: 40px 0 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.services-subtitle {
    text-align: center;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
}

.services-title {
    text-align: center;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    width: 65%;
    margin-top: 8px;
    line-height: 1.4;
}

/* DESKTOP GRID (3 columns) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
    width: 100%;
    max-width: 960px;
    justify-items: center;
}

/* SERVICE CARD */
.service-card {
    background-color: #222222;
    border-radius: 16px;
    width: 300px;
    height: 150px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0; /* for horizontal scroll */
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    }

.service-icon {
    width: 26px;
    height: 32px;
    margin-bottom: 8px;
}

.service-title-card {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #F2F2F2;
    margin-bottom: 6px;
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #E3E3E3;
    line-height: 1.4;
}

/* EXPLORE BTN */
.explore-btn {
    margin-top: 50px;
    background: transparent;
    border: 1.5px solid #FF6B00;
    color: #FF6B00;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .explore-btn:hover {
        background-color: #FF6B00;
        color: #fff;
    }

/* ⭐⭐⭐ MOBILE VIEW ⭐⭐⭐ */
@media (max-width: 768px) {

    .services-title {
        width: 90%;
        font-size: 18px;
    }

    /* 2 ROWS + HORIZONTAL SCROLL */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(6, 150px); /* small cards */
        grid-auto-rows: auto;
        grid-template-rows: repeat(2, auto);
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding-bottom: 10px;
        width: 100%;
        padding-left: 12px;
        /* Hide scrollbar for mobile */
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

        /* Hide scrollbar for Chrome, Safari */
        .services-grid::-webkit-scrollbar {
            display: none;
        }

    /* smaller mobile card size */
    .service-card {
        width: 150px;
        height: 140px;
        padding: 12px;
    }

    .service-title-card {
        font-size: 12px;
    }

    .service-desc {
        font-size: 10px;
    }
}





/* About Us section*/
/* OUTER SECTION */
.about-section {
    background-color: #090909;
    width: 100%;
    max-width: 2000px;
    margin: -35px 0 0 0;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.about-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}

/* LEFT AREA */
.about-left {
    width: 500px;
    color: #F2F2F2;
}

.about-subtitle {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* ===== PERFECT ICON ALIGNMENT FIX ===== */
.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.point-item {
    display: flex;
    align-items: center; /* Perfect vertical center */
    gap: 12px; /* Balanced spacing */
    min-height: 36px; /* Prevents misalignment */
    color: #F2F2F2;
    font-size: 14px;
}

    .point-item img {
        width: 30px;
        height: 30px;
        object-fit: contain; /* Keep shape clean */
        display: block; /* Fix baseline issue */
    }

/* RIGHT IMAGE */
.about-right {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 350px;
    border-radius: 12px;
    object-fit: cover;
}



/* ⭐⭐⭐ MOBILE RESPONSIVE ⭐⭐⭐ */
@media (max-width: 768px) {

    .about-wrapper {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .about-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }

    /* Points mobile layout — FIXED: 2 columns */
    .about-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        justify-items: center;
    }

    /* icons centered & aligned */
    .point-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .point-item img {
            width: 26px;
            height: 26px;
            margin-right: 8px;
        }

    /* Image below */
    .about-right {
        width: 100%;
    }

    .about-img {
        width: 90%;
        max-width: 320px;
    }

    .about-section {
        height: auto;
        padding: 50px 0;
        margin-top: 0;
    }
}

/*input field cshtml */

/* ================================================
   REQUIREMENT SECTION — FULLY RESPONSIVE
================================================ */
.requirement-section {
    background: url('/images/Tell Us Your Requirement Bg_IMG.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

    .requirement-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

.requirement-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 35px 45px;
    text-align: center;
    margin: auto;
}

/* Titles */
.req-title {
    color: #101010;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
}

.req-subtitle {
    color: #101010;
    font-size: 15px;
    margin-bottom: 25px;
}

.req-question {
    color: #101010;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUY / SELL options */
.req-options {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.option-card {
    width: 150px;
    height: 110px;
    border: 2px solid #DCDFEC;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFF;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s ease;
}

    .option-card:hover,
    .option-card.active {
        background-color: #FF6B00;
        border-color: #FF6B00;
        color: #FFF;
        box-shadow: 0 6px 15px rgba(255,107,0,0.3);
    }

        .option-card:hover img,
        .option-card.active img {
            filter: brightness(0) invert(1);
        }

.option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* Form grid (Desktop) */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 35px;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

input, select {
    width: 100%;
    height: 46px;
    border: 1px solid #DCDFEC;
    border-radius: 10px;
    padding: 10px;
    font-size: 15px;
}

/* Buttons */
.form-buttons {
    text-align: center;
    margin-top: 15px;
}

.submit-btn {
    padding: 8px 18px; /* slightly bigger than back button */
    font-size: 14px; /* a bit larger */
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    margin-right: 10px; /* adds a little left spacing effect */
}

    .submit-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

/* Keep back button as before */
.back-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }




/* ================================================
   RESPONSIVE BREAKPOINTS
================================================ */

/* 🔵 Tablet screens */
@media (max-width: 992px) {
    .requirement-container {
        max-width: 700px;
        padding: 30px 25px;
    }

    .form-grid {
        gap: 20px 20px;
    }
}

/* 🔵 Mobile screens */
@media (max-width: 768px) {
    .requirement-container {
        width: 90%;
        padding: 30px 20px;
        border-radius: 15px;
    }

    .req-title {
        font-size: 24px;
    }

    .req-subtitle {
        font-size: 14px;
    }

    /* Cards responsive */
    .option-card {
        width: 130px;
        height: 100px;
    }

    /* FORM becomes 1 column */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

  
}

/* 🔵 Extra small phones */
@media (max-width: 480px) {
    .option-card {
        width: 120px;
        height: 95px;
    }

    input, select {
        height: 44px;
        font-size: 14px;
    }
}




/* UNIVERSAL FIX FOR ALL REQUIREMENT FORMS */
.form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100%;
}

    /* Inputs always full width inside grid */
    .form-grid input,
    .form-grid select {
        width: 100% !important;
        box-sizing: border-box !important;
    }

/* Desktop laptops me perfect centre alignment */
.modal-content form,
.requirement-container form {
    width: 100%;
    margin: 0 auto;
}

/* 🔥 FOR LARGE SCREENS — form width reduce so it looks centered & tighter */
@media (min-width: 1024px) {
    .modal-content {
        max-width: 650px !important; /* narrower = better alignment */
    }

    .requirement-container {
        max-width: 750px !important; /* reduces wide gaps */
    }
}

/* 🔥 Mobile — single column */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}



/* ---------------------------
   WHY CHOOSE US - CONTAINER`
----------------------------*/
.why-choose-container {
    background: #F3E9E1;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Small Title */
.why-small-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #15191E;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

/* Main Title */
.why-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #101010;
    text-align: center;
    max-width: 650px;
    line-height: 1.3;
    margin-bottom: 45px;
}

/* Feature Section */
.why-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}

/* Each Item */
.why-item {
    max-width: 240px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Circle */
/* Icon Circle */
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.1);
    display: flex;
    justify-content: center; /* center text horizontally */
    align-items: center; /* center text vertically */
    position: relative;
    margin-bottom: 18px;
}

/* Number inside the circle */
.why-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #15191E;
}

/* Title Text */
.why-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #FF6B00;
    margin-bottom: 6px;
}

/* Description */
.why-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #15191E;
    line-height: 1.5;
}

/* ---------------------------
   RESPONSIVE ADJUSTMENTS
----------------------------*/
@media (max-width: 768px) {
    .why-main-title {
        font-size: 22px;
        max-width: 90%;
    }

    .why-features {
        gap: 35px;
    }

    .why-item {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .why-main-title {
        font-size: 20px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .why-title {
        font-size: 14px;
    }

    .why-desc {
        font-size: 12px;
    }
}
/* ordr statu tracker section*/

/*BuyerPaymentReceived*/
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* ✅ Scroll wrapper for mobile */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Desktop Table Styles */
.details-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    min-width: 900px; /* Prevent squishing on mobile */
    color: #000;
}

    .details-table th,
    .details-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }

    .details-table th {
        background-color: #FF6B00;
        color: #fff;
        font-weight: bold;
    }

    .details-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .details-table tr:hover {
        background-color: #DCF3F9;
    }

/* Status Badges */
.status-Received,
.status-Pending,
.status-Failed {
    color: #fff;
    background-color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.status-Pending {
    background-color: #FF9800;
}

.status-Failed {
    background-color: #F44336;
}

/* -------------------------
   📱 Mobile View Fixes 
--------------------------*/
@media (max-width: 768px) {

    .main-content {
        padding: 10px;
    }

    .details-table th,
    .details-table td {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap; /* Prevent breaking */
    }
}

/*MaterialDispatch*/
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* ✅ Mobile scroll wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Table Styles */
.details-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    min-width: 900px; /* Prevent squishing */
    color: #000;
}

    .details-table th,
    .details-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }

    .details-table th {
        background-color: #FF6B00;
        color: white;
        font-weight: bold;
    }

    .details-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .details-table tr:hover {
        background-color: #DCF3F9;
    }

/* Status Badges */
.status-Pending,
.status-Dispatched,
.status-Delivered,
.status-Cancelled {
    color: #fff;
    background-color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Specific colors if you want */
.status-Pending {
    background-color: #FF9800;
}

.status-Dispatched {
    background-color: #2196F3;
}

.status-Delivered {
    background-color: #4CAF50;
}

.status-Cancelled {
    background-color: #F44336;
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {

    .main-content {
        padding: 10px;
    }

    .details-table th,
    .details-table td {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap;
    }
}

/*Quotation*/

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* 📌 Responsive scroll wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Table */
.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    min-width: 900px; /* Prevent table squeezing on mobile */
}

    .details-table th,
    .details-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }

    .details-table th {
        background-color: #FF6B00;
        color: #fff;
        font-weight: bold;
    }

    .details-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .details-table tr:hover {
        background-color: #DCF3F9;
    }

/* Status badges */
.status-WaitingForApproval,
.status-QuotationApproved,
.status-Rejected,
.status-QuotationSent {
    color: #fff;
    background-color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* 🎨 Better individual colors */
.status-WaitingForApproval {
    background-color: #FF9800;
}

.status-QuotationApproved {
    background-color: #4CAF50;
}

.status-Rejected {
    background-color: #F44336;
}

.status-QuotationSent {
    background-color: #2196F3;
}

/* Edit Status Button */
.btn-edit-status {
    background: linear-gradient(90deg, #FF3C00, #1A6B84);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

    .btn-edit-status:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 110, 32, 0.3);
        opacity: 0.95;
    }

/* 📱 Mobile tweaks */
@media (max-width: 768px) {
    .details-table th,
    .details-table td {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap;
    }
}


/*Requirement*/

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* 📌 Responsive scroll wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Table */
.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    min-width: 1000px; /* prevents squeezing on mobile */
}

    .details-table th,
    .details-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }

    .details-table th {
        background-color: #090909;
        color: #fff;
        font-weight: bold;
    }

    .details-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .details-table tr:hover {
        background-color: #DCF3F9;
    }

/* Status badges */
.status-New,
.status-InProgress,
.status-Completed,
.status-Cancelled {
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* ⬅ Specific colors */
.status-New {
    background-color: #2196F3;
}

.status-InProgress {
    background-color: #FF9800;
}

.status-Completed {
    background-color: #4CAF50;
}

.status-Cancelled {
    background-color: #F44336;
}

/* 📱 Mobile tweaks */
@media (max-width: 768px) {
    .details-table th,
    .details-table td {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap;
    }
}

/*Edit Material Status*/
/* Flex layout to push footer down */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* Center container with spacing */
.edit-status-container {
    max-width: 400px;
    width: 90%;
    margin: 80px auto 0 auto;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .edit-status-container h4 {
        text-align: center;
        margin-bottom: 20px;
    }

/* Form spacing */
.edit-status-form .form-group {
    margin-bottom: 15px;
}

/* Submit Button */
.edit-status-form .btn {
    width: 100%;
    background: linear-gradient(90deg, #FF6E20 0%, #1A6B84 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(255, 110, 32, 0.25);
}

    .edit-status-form .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(255, 110, 32, 0.35);
        filter: brightness(1.05);
    }

/* Edit Button */
.btn-edit {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-edit:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

/* Back Button */
.back-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

/* ============================
   📱 RESPONSIVE (Mobile First)
=============================== */
@media (max-width: 480px) {

    .edit-status-container {
        margin-top: 60px;
        padding: 20px;
        width: 92%;
    }

        .edit-status-container h4 {
            font-size: 18px;
        }

    .edit-status-form .btn {
        font-size: 14px;
        padding: 10px;
    }

    .back-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .edit-status-container {
        margin-top: 70px;
        width: 85%;
    }
}

/*Edit Quotation Status*/

/* =============================
   Main container centered
============================= */
.quotation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: #f4f6f8;
}

/* Card */
.quotation-card {
    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 30px 28px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .quotation-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

/* Title */
.title {
    text-align: center;
    margin-bottom: 25px;
    color: #FF6E20;
    font-weight: 700;
    font-size: 26px;
}

/* Form Labels */
.form-label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Select field */
.form-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-select:focus {
        outline: none;
        border-color: #FF6E20;
        box-shadow: 0 0 6px rgba(255,110,32,0.25);
    }

/* Buttons */
.btn-update-status,
.btn-back {
    background: linear-gradient(90deg, #FF6E20 0%, #1A6B84 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,110,32,0.25);
}

    .btn-update-status:hover,
    .btn-back:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255,110,32,0.35);
        filter: brightness(1.05);
    }

/* Button row */
.btn-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Alert message */
.alert {
    background: #FFECEC;
    color: #D90000;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .quotation-card {
        padding: 22px 18px;
    }

    .title {
        font-size: 22px;
    }

    .btn-row {
        flex-direction: column;
        gap: 12px;
    }

    .btn-update-status,
    .btn-back {
        width: 100%;
    }

    .form-select {
        font-size: 14px;
    }
}
/*MaterialTracking*/

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 20px;
}

/* ⭐ Responsive table wrapper (scroll only table, not whole page) */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.details-table {
    width: 100%;
    min-width: 800px; /* Prevent column breaking */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

    .details-table th, .details-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
        white-space: nowrap; /* Prevent stacking text on mobile */
    }

    .details-table th {
        background-color: #FF6B00;
        color: #fff;
        font-weight: bold;
    }

    .details-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .details-table tr:hover {
        background-color: #DCF3F9;
    }

/* 🔥 Edit button */
.btn-edit {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #FF6E20;
    border-radius: 25px;
    background: transparent;
    color: #FF6E20;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

    .btn-edit:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(255,110,32,0.3);
    }

/* 🔥 Status badges */
.status-Pending,
.status-InTransit,
.status-Delivered,
.status-Delayed,
.status-Received {
    color: #fff;
    background-color: #4CAF50;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
}

/* Table links */
.details-table a {
    color: #FF3C00;
    text-decoration: none;
    font-weight: bold;
}

    .details-table a:hover {
        text-decoration: underline;
    }

/* 📱 Mobile tweaks */
@media (max-width: 600px) {

    .details-table th,
    .details-table td {
        padding: 10px;
        font-size: 13px;
    }

    .btn-edit {
        padding: 6px 12px;
        font-size: 13px;
    }
}
/*order status index */

/* --- Layout padding (under navbar) --- */
.page-padding {
    padding-top: 40px;
}

/* --- Back button --- */
.back-btn-container {
    margin-bottom: 15px;
    width: auto;
    display: inline-block;
}

.back-btn {
    display: inline-block;
    width: auto;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    cursor: pointer;
    transition: 0.3s;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }


/* --- Tabs --- */
.tabs-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    /* 🟧 Mobile horizontal scroll */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

    /* Hide mobile scroll bar (optional) */
    .tabs-container::-webkit-scrollbar {
        height: 0;
    }

.tab {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

    .tab:hover {
        background: #FF6E20;
        color: white;
        transform: scale(1.03);
    }

    .tab.active {
        background: #FF6E20;
        color: white;
    }

/* --- Status Card --- */
.status-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 15px;
    /* Prevent content going outside */
    overflow-x: auto;
}

/* --- Table (Requirement style) --- */
.details-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px; /* 🟧 prevents squeezing */
    margin-top: 10px;
}

    .details-table th,
    .details-table td {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .details-table th {
        background-color: #FF6B00;
        color: white;
    }

/* --- Mobile responsive tweaks --- */
@media (max-width: 768px) {
    .status-card {
        padding: 12px;
    }

    .details-table th,
    .details-table td {
        padding: 8px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* supllier stats tracker*/

.page-padding {
    padding-top: 90px;
}

/* Back Button */
.back-btn-container {
    margin-bottom: 15px;
}

.back-btn {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    width: auto; /* prevents stretching */
    display: inline-block; /* keeps it small */
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

/* Tabs */
.tabs-container {
    display: flex;
    flex-wrap: nowrap; /* ❗ force single row */
    overflow-x: auto; /* ❗ horizontal scroll */
    white-space: nowrap; /* ❗ prevent wrapping */
    gap: 10px;
    margin: 25px 0;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

    /* Hide scrollbar (optional) */
    .tabs-container::-webkit-scrollbar {
        height: 0;
    }


.tab {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #FF6E20;
    border-radius: 20px;
    background: transparent;
    color: #FF6E20;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tab:hover {
        background: #FF6E20;
        color: #fff;
        transform: scale(1.03);
    }

    .tab.active {
        background: #FF6E20;
        color: #fff;
        border-color: #FF6E20;
        transform: scale(1.03);
    }

/* Card */
.status-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-top: 15px;
}

/* Table Responsive Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 15px;
}

/* Table */
.details-table {
    width: 100%;
    min-width: 1000px; /* prevents squeezing */
    border-collapse: collapse;
    margin-top: 10px;
}

    .details-table th,
    .details-table td {
        border-bottom: 1px solid #ddd;
        padding: 10px 14px;
        text-align: left;
    }

    .details-table th {
        background-color: #FF6B00;
        color: white;
        font-weight: bold;
    }

/* Mobile Tweaks */
@media (max-width: 768px) {
    .tab {
        font-size: 13px;
        padding: 7px 14px;
    }

    .details-table th,
    .details-table td {
        font-size: 14px;
        white-space: nowrap;
    }
}

/*login cshtml*/
/* Wrapper */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    padding: 10px;
    box-sizing: border-box;
}

/* Main Container */
.auth-container {
    display: flex;
    width: 950px;
    max-width: 100%;
    height: 520px;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

/* Left Image Section */
.auth-left {
    width: 50%;
    background: #FFF5EE;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .auth-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Right Form Section */
.auth-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Login Box */
.auth-box {
    width: 90%;
    max-width: 360px;
    text-align: center;
}

/* Headings */
.auth-title {
    color: #101010;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #101010;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Form Fields */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

    .form-grid input {
        width: 100%;
        height: 43px;
        border: 1px solid #DCDFEC;
        border-radius: 10px;
        padding: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        color: #101010;
        background: #FFFFFF;
        transition: 0.3s ease;
    }

        .form-grid input:focus {
            border-color: #FF6B00;
            box-shadow: 0 0 6px rgba(255, 107, 0, 0.25);
            outline: none;
        }

/* Button — Solid Orange */
.gradient-btn {
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .gradient-btn:hover {
        background-color: #e65d00;
        transform: translateY(-2px);
    }

/* Alert Message */
.alert-danger {
    background: #FFECEC;
    color: #D90000;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

/* Force solid orange button */
.gradient-btn,
.gradient-btn:focus,
.gradient-btn:active {
    background: #FF6B00 !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

/* Remove Chrome autofill yellow background */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #101010 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        height: auto;
    }

    .auth-left, .auth-right {
        width: 100%;
    }

    .auth-left {
        height: 200px;
    }

    .auth-box {
        padding: 20px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 14px;
    }

    .form-grid input {
        font-size: 14px;
    }

    .gradient-btn {
        font-size: 15px;
        padding: 12px 0;
    }
}