/* Spare Parts Showcase Styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
/* 
        body {
            font-family: 'Arial', sans-serif;
        } */

        .spareparts-container {
            min-height: 100vh;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }

        .spareparts-showcase {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            z-index: 10;
        }

        .spareparts-content {
            max-width: 1400px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 20;
            margin-top: 50px;
        }

        /* Title Styling */
        .spareparts-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-family: 'Arial', sans-serif;
        }

        .title-part {
            display: inline-block;
            color: #e2e8f0;
            margin: 0 0.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: titleSlideIn 0.8s ease-out forwards;
        }

        .title-part:nth-child(1) { animation-delay: 0.1s; }
        .title-part:nth-child(2) { animation-delay: 0.2s; }
        .title-part:nth-child(3) { animation-delay: 0.3s; }
        .title-part:nth-child(4) { animation-delay: 0.4s; }

        .title-part.highlight {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .title-part.highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            border-radius: 2px;
            animation: underlineExpand 1s ease-out 0.8s forwards;
            transform: scaleX(0);
        }

        /* Subtitle */
        .spareparts-subtitle {
            font-size: 1.25rem;
            color: #94a3b8;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        /* Grid Layout - Updated for 4 columns */
        .spareparts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        /* Responsive Grid */
        @media (max-width: 1200px) {
            .spareparts-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .spareparts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        @media (max-width: 600px) {
            .spareparts-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .spareparts-showcase {
                padding: 1rem;
            }
            
            .spareparts-content {
                margin-top: 20px;
            }
        }

        /* Spare Part Items */
        .sparepart-item {
            background: rgba(136, 134, 134, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
            animation: itemSlideIn 0.8s ease-out forwards;
            cursor: pointer;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .sparepart-item:nth-child(1) { animation-delay: 0.8s; }
        .sparepart-item:nth-child(2) { animation-delay: 1s; }
        .sparepart-item:nth-child(3) { animation-delay: 1.2s; }
        .sparepart-item:nth-child(4) { animation-delay: 1.4s; }
        .sparepart-item:nth-child(5) { animation-delay: 1.6s; }
        .sparepart-item:nth-child(6) { animation-delay: 1.8s; }
        .sparepart-item:nth-child(7) { animation-delay: 2s; }
        .sparepart-item:nth-child(8) { animation-delay: 2.2s; }

        .sparepart-item:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(245, 158, 11, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .featured-sparepart {
            background: rgba(245, 158, 11, 0.1);
            border-color: rgba(245, 158, 11, 0.3);
        }

        .featured-sparepart:hover {
            background: rgba(245, 158, 11, 0.15);
            border-color: rgba(245, 158, 11, 0.6);
        }

        /* Image Container */
        .sparepart-image-container {
            position: relative;
            margin-bottom: 1rem;
            overflow: hidden;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sparepart-image {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
            transition: transform 0.4s ease;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        .sparepart-item:hover .sparepart-image {
            transform: scale(1.1) rotate(5deg);
        }

        /* Cross Overlay */
        .cross-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sparepart-item:hover .cross-overlay {
            opacity: 0.3;
        }

        .cross-line {
            position: absolute;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            border-radius: 2px;
        }

        .cross-line-1 {
            width: 30px;
            height: 3px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .cross-line-2 {
            width: 3px;
            height: 30px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Spare Part Info */
        .sparepart-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .sparepart-info h3 {
            color: #f1f5f9;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .view-more {
            color: #f59e0b;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border: 1px solid #f59e0b;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: auto;
        }

        .view-more:hover {
            background: #f59e0b;
            color: #0f172a;
            transform: translateY(-2px);
        }

        .engine-header {
            padding-left: 100px;
            margin-left: 750px;
            margin-top: 100px;
        }
        /* Background Elements */
        .spareparts-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.1);
            filter: blur(40px);
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation: float 20s infinite ease-in-out;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation: float 25s infinite ease-in-out reverse;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            bottom: 20%;
            left: 20%;
            animation: float 30s infinite ease-in-out;
        }

        .floating-cross {
            position: absolute;
            width: 40px;
            height: 40px;
            opacity: 0.1;
        }

        .cross-bg-1 {
            top: 20%;
            right: 30%;
            animation: rotate 20s linear infinite;
        }

        .cross-bg-2 {
            bottom: 30%;
            left: 15%;
            animation: rotate 25s linear infinite reverse;
        }

        .cross-bg-3 {
            top: 50%;
            right: 10%;
            animation: rotate 30s linear infinite;
        }

        .bg-cross-line {
            position: absolute;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            border-radius: 2px;
        }

        .bg-cross-line-1 {
            width: 40px;
            height: 4px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .bg-cross-line-2 {
            width: 4px;
            height: 40px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Animations */
        @keyframes titleSlideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes underlineExpand {
            to {
                transform: scaleX(1);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes itemSlideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

/* Background Elements */
.spareparts-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

/* Floating Crosses */
.floating-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.1;
    animation: crossFloat 8s ease-in-out infinite;
}

.cross-bg-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.cross-bg-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.cross-bg-3 {
    top: 50%;
    left: 5%;
    animation-delay: 6s;
}

.bg-cross-line {
    position: absolute;
    background: #f59e0b;
    border-radius: 1px;
}

.bg-cross-line-1 {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-cross-line-2 {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animations */
@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes itemSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes crossFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .spareparts-showcase {
        padding: 1rem;
    }
    
    .spareparts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sparepart-item {
        padding: 1.5rem;
    }
    
    .sparepart-image-container {
        height: 150px;
    }
    
    .bg-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .title-part {
        display: block;
        margin: 0.2rem 0;
    }
    
    .spareparts-subtitle {
        font-size: 1rem;
    }
    
    .sparepart-item {
        padding: 1rem;
    }
}

    .view-more {
        display: inline-block;
        background-color: #ff4400bd;     /* Bootstrap-style blue */
        color: white;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .view-more:hover {
        background-color: #ff440081;     /* Darker blue on hover */
        transform: translateY(-2px);   /* Slight hover lift */
        text-decoration: none;
    }

/* product page css starting */

        .container.product {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

       /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 0;
            color: rgb(1, 1, 1);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #070707, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
            to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Filters */
        .filters {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .filter-row {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-group label {
            color: rgb(3, 3, 3);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .filter-select {
            padding: 10px 15px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            color: rgb(14, 13, 13);
            cursor: pointer;
            min-width: 150px;
            backdrop-filter: blur(10px);
        }

        .filter-select option {
            background: #4a5568;
            color: rgb(17, 17, 17);
        }

        /* Product Grid */
        .products-section {
            padding: 2rem 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title {
            color: rgb(1, 1, 1);
            font-size: 2rem;
            font-weight: 700;
        }

        .view-toggle {
            display: flex;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .view-btn {
            padding: 8px 12px;
            border: none;
            background: transparent;
            color: rgba(26, 24, 24, 0.7);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn.active {
            background: rgba(255, 255, 255, 0.2);
            color: rgb(5, 5, 5);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(45deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .product-image span {
            font-size: 3rem;
            color: rgba(25, 24, 24, 0.8);
            z-index: 1;
            position: relative;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: rgb(22, 21, 21);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: rgb(15, 14, 14);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 2;
        }

        .product-favorite:hover {
            background: rgba(255, 107, 107, 0.8);
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
            color: rgb(27, 25, 25);
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .product-description {
            color: rgba(21, 20, 20, 0.8);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .price-current {
            font-size: 1.5rem;
            font-weight: 700;
            color: #feca57;
        }

        .price-original {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: line-through;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .stars {
            color: #feca57;
        }

        .rating-text {
            color: rgba(12, 12, 12, 0.8);
            font-size: 0.9rem;
        }

        .product-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn-add-cart {
            flex: 1;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: rgb(6, 6, 6);
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-add-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        .btn-quick-view {
            background: rgba(255, 255, 255, 0.2);
            color: rgb(17, 17, 17);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-quick-view:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Pagination */
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 3rem 0;
        }

        .page-btn {
            padding: 10px 15px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: rgb(13, 13, 13);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .page-btn:hover,
        .page-btn.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Responsive */
        
        @media (max-width: 768px) {
            .filter-row {
                flex-direction: column;
                align-items: stretch;
            }

            .section-header {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }

            .nav {
                flex-direction: column;
                gap: 1rem;
            }

            .search-bar {
                max-width: 100%;
                margin: 0;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            color: rgb(24, 24, 24);
            padding: 2rem;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid rgb(20, 19, 19);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* contact page css */

  :root {
            --cprimary-color: #ff4400bd;
            --cprimary-dark: #ff4400bd;
            --csecondary-color: #ff4400bd;
            --accent-color: #ff4400bd;
            --success-color: #ff44006e;
            --error-color: #dc2626;
            --warning-color: #d97706;
            --text-primary:rgb(0, 0, 0);
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-accent: #f1f5f9;
            --border-color: #e2e8f0;
            --border-focus: #ff4400bd;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
        }

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-secondary);
        } */

        .container-message {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Contact Section */
        .contact2-section {
            margin-top: 50px;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
        }

        .contact2-wrapper {
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            overflow: hidden;
        }

        .contact2-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 700px;
        }

        /* Left Side - Content (Changed to white background) */
        .contact2-left {
            background: var(--bg-primary);
            color: var(--text-primary);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-right: 1px solid var(--border-color);
            border-color: #070707;
        }

        .contact2-content {
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-accent);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid var(--border-color);
            width: fit-content;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: var(--text-primary);
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact2-info {
            margin-bottom: 40px;
        }

        .contact2-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .contact2-item:last-child {
            border-bottom: none;
        }

        .contact2-icon {
            width: 45px;
            height: 45px;
            background: var(--bg-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cprimary-color);
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact2-details h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .contact2-details p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .social-links h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
            padding: 10px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .social-icon:hover {
            background: var(--cprimary-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Right Side - Form */
        .contact2-right {
            background: var(--bg-secondary);
            padding: 60px;
            display: flex;
            align-items: center;
        }

        .form-wrapper {
            width: 100%;
        }

        .form-header {
            margin-bottom: 32px;
        }

        .form-header h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.025em;
        }

        .input-wrapper,
        .select-wrapper,
        .textarea-wrapper {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 16px;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .textarea-wrapper .input-icon {
            top: 20px;
            transform: none;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 14px 14px 14px 48px;
            font-size: 16px;
            font-weight: 400;
            color: var(--text-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--border-focus);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .focused .input-icon {
            color: var(--cprimary-color);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            line-height: 1.6;
        }

        .select-wrapper {
            position: relative;
        }

        .form-select {
            appearance: none;
            cursor: pointer;
            padding-right: 48px;
        }

        .select-arrow {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .form-select:focus + .select-arrow {
            transform: translateY(-50%) rotate(180deg);
        }

        .form-actions {
            margin-top: 32px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--cprimary-color) 0%, var(--cprimary-dark) 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            width: 100%;
            justify-content: center;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .submit-btn.loading .btn-icon {
            animation: spin 1s linear infinite;
        }



        /* about us css */


        /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-12, .col-lg-6, .col-lg-3,
.col-md-10, .col-md-9, .col-md-7, .col-md-6, .col-md-3,
.col-sm-9, .col-sm-6 {
    padding: 0 15px;
}

.col-lg-12 { width: 100%; }
.col-lg-6 { width: 50%; }
.col-lg-3 { width: 25%; }
.col-md-10 { width: 83.33%; }
.col-md-9 { width: 75%; }
.col-md-7 { width: 58.33%; }
.col-md-6 { width: 50%; }
.col-md-3 { width: 25%; }
.col-sm-9 { width: 75%; }
.col-sm-6 { width: 50%; }

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-center {
    text-align: center;
}

.no-gutters {
    margin: 0;
}

.no-gutters > [class*="col-"] {
    padding: 0;
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mt-15 { margin-top: 15px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-50 { margin-bottom: 50px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pl-40 { padding-left: 40px; }
.pb-40 { padding-bottom: 40px; }
.h-100 { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.position-relative { position: relative; }
.z-index-2 { z-index: 2; }

/* Color Classes */
.cmt-bgcolor-darkgrey {
    background-color: #2c2c2c;
    color: #fff;
}

.cmt-bgcolor-skincolor {
    background-color: #ff6b35;
}

.cmt-bgcolor-grey {
    background-color: #f1f1f1;
}

.cmt-textcolor-skincolor {
    color: #ff6b35;
}

/* Section Styles */
.cmt-row {
    padding: 80px 0;
}

.about_fea-section {
    background: #fff;
    padding: 100px 0;
}

/* Section Title */
.section-title {
    margin-bottom: 40px;
}

.title-header h5 {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-header h2.title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading-seperator {
    position: relative;
    margin-bottom: 30px;
}

.heading-seperator span {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 2px;
}

/* About Section Content */
.about_fea-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.cmt-horizontal_sep {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ddd 50%, transparent 100%);
}

/* Tab Section */
.tab-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.cmt-tabs {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tabs {
    display: flex;
    list-style: none;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.tabs .tab {
    flex: 1;
}

.tabs .tab a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tabs .tab a i {
    margin-right: 10px;
    font-size: 18px;
}

.tabs .tab.active a,
.tabs .tab a:hover {
    color: #ff6b35;
    background: #fff;
    border-bottom-color: #ff6b35;
}

.content-tab {
    padding: 40px;
}

.content-inner {
    display: none;
}

.content-inner:first-child {
    display: block;
}

.content-inner h3 {
    font-size: 28px;
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-inner p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.content-inner ul {
    list-style: none;
    padding: 0;
}

.content-inner ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    font-size: 16px;
}

.content-inner ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Broken Section (CEO Section) */
.broken-section {
    padding: 0;
    margin: 80px 0;
}

.cmt-left-span {
    padding: 80px 60px;
    position: relative;
}

.layer-content {
    position: relative;
    z-index: 2;
}

.broken-section .section-title .title-header h5 {
    color: #ff6b35;
    font-size: 12px;
    letter-spacing: 2px;
}

.broken-section .section-title .title-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.broken-section p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.cmt-equal-height-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 100px 0;
}

.team_details {
    padding: 30px 0;
}

.team_details h4 {
    font-size: 24px;
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 5px;
}

.team_details small {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.team_details p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Action Row Section */
.action-row-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.action-row-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.featured-icon-box {
    margin-bottom: 30px;
}

.featured-icon {
    margin-bottom: 20px;
}

.cmt-icon i {
    font-size: 48px;
    color: #fff;
}

.featured-desc p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 10px;
}

.featured-title h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.cmt-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.cmt-btn:hover {
    background: #fff;
    color: #ff6b35;
}

/* FID Section (Statistics) */
.fid-border-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.cmt-vertical_sep {
    border-right: 1px solid #eee;
}

.cmt-vertical_sep:last-child {
    border-right: none;
}

.cmt-fid {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    text-align: left;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.cmt-fid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cmt-fid-icon-wrapper {
    margin-right: 20px;
    font-size: 36px;
    color: #ff6b35;
}

.cmt-fid-contents {
    flex: 1;
}

.cmt-fid-inner {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.cmt-fid-inner sub {
    font-size: 18px;
    color: #ff6b35;
}

.cmt-fid-title {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .res-991-pt-30 { padding-top: 30px; }
    .res-991-mt-40 { margin-top: 40px; }
    .res-991-mt-0 { margin-top: 0; }
    .res-991-mb-30 { margin-bottom: 30px; }
    .res-991-ml_15 { margin-left: 15px; }
    .res-991-mr_15 { margin-right: 15px; }
    
    .col-lg-6, .col-lg-3, .col-md-10, .col-md-9, 
    .col-md-7, .col-md-6, .col-md-3 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .cmt-left-span {
        padding: 40px 30px;
    }
    
    .title-header h2.title {
        font-size: 32px;
    }
    
    .broken-section .section-title .title-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .col-sm-9, .col-sm-6 {
        width: 100%;
    }
    
    .cmt-row {
        padding: 60px 0;
    }
    
    .about_fea-section {
        padding: 80px 0;
    }
    
    .team-section {
        padding: 80px 0;
    }
    
    .title-header h2.title {
        font-size: 28px;
    }
    
    .cmt-fid {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }
    
    .cmt-fid-icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-inner {
    animation: fadeIn 0.5s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.cmt-btn:focus,
.tabs .tab a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}


