* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    width: 100%;
    background: #2e3488ff;
    color: white;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}


.nav-main {
    position: fixed;
    display:flex;
    justify-content: space-around;
    align-items:center;
    width: 100%;
    height: 10vh;
    background: rgb(44, 43, 43);
    transition: transform 0.3s ease;
    opacity:95%;
    z-index:10;
}
.head-text{
    color:white;
    text-align:center;
    font-size:3rem;
    }


#menu{
    display:none;
}
.nav-main ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    color: white;
    gap: 30px;
    height: 100%;
}

.background-container {
    position: relative;
    width: 100%;
    height: 90vh; /* Make it full viewport height */
    overflow: hidden;
}

.over-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it's above the video */
}

.main {
    width: 100%;
  
}

.form-div {
    width:100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    display:grid;
    z-index: 10;
    grid-template-columns:repeat(3,1fr);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    gap:20px;
    
}
.outer-form{
    max-width:80%;
    margin-top:15%;
}

.background-image{
    position:relative;
  
}
.overlay{
    position:absolute;
    top:0;
    left:0;

    height:100vh;
}
.logo{
    width:100px;
    height:100px;
}
.car-box{
    background:red;width:100px;height:40px;
    border-top-right-radius:10px;border-top-left-radius:10px;
}


@media (max-width: 1200px) {
    
    
    .nav-main{
        position: fixed;
        max-width: 100%;
        height: 10vh;
        background: rgb(44, 43, 43);
        transition: transform 0.3s ease;
        opacity:90%;
        z-index:10;
    }
    .outer-form{
        max-width:80%;
        margin-top:20%;
    }
    
.nav-main.show {
    transform:none;
}
.head-text{
    color:white;
    text-align:center;
    font-size:2.5rem;
    }

.nav-main ul {
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    list-style: none;
    color: white;
    gap: 30px;
    height: 100%;
}
.toggle-button{
    display:none;
}
.form-div {
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 5px;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    
}
}

.toggle-button {
    width: 60px;
    height: 60px;
    border-radius:50%;
    background: rgb(44, 43, 43);
    position: fixed;
    top:45%;
    left: 86%;
    cursor: pointer;
    display:flex;
    justify-content: end;
    align-items:center;
    opacity:90%;
    transition: left 0.3s ease;
}
  


/* Reset default styles for select */
select {
    /* appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
  }
  
  /* Style the dropdown arrow */
  select::-ms-expand {
    display: none;
  }
  
  /* Style the options */
  select option {
    padding: 10px;
  }
  
  /* Hover and focus styles */
  select:hover,
  select:focus {
    border-color: #007bff;
  }
  
  @media(max-width:800px){
    .toggle-button {
        width: 60px;
        height: 60px;
        border-radius:50%;
        background: rgb(44, 43, 43);
        position: fixed;
        top:45%;
        left: 96%;
        cursor: pointer;
        display:flex;
        justify-content: end;
        align-items:center;
        opacity:90%;
        transition: left 0.3s ease;
    }
    .toggle-button{
        display:none;
    }

    #menu{
        display:block;
    }
    .logo{
      width:100px;
      height:100px;
    }
    .head-text{
        color:white;
        text-align:center;
        font-size:2rem;
        }

        .background-container {
    position: relative;
    width: 100%;
    height: 130vh; /* Make it full viewport height */
    overflow: hidden;
}

  }

  /* ....... */

  .parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .part-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .part-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .inner-section2{
    /* max-width:80%; */
    margin:auto;
    margin-top: 1rem;
    background: #f5eee0;
}



/* .............. */
.footer-inner {
    max-width:1200px;
    margin:auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap:20px;
    font-size: 0.8rem;
    justify-content:center; /* Center contents horizontally */
    align-items: center; /* Center contents vertically */
}



@media(max-width:800px){
    .footer-inner {
    
        grid-template-columns:1fr;
    
    }
   .nav-main .nav-links{
        display:none;
    }
 

    .car-box{
        background:red;width:100px;height:40px;
        border-top-right-radius:10px;border-top-left-radius:10px;
    }
    
}

/* .......... */

.nav-links li,a{

    color:white;
    text-decoration:none;
    list-style: none;

}

.select2-container .select2-selection--single{
    height:34px !important;
}
.select2-container--default .select2-selection--single{
         border: 1px solid #ccc !important; 
     border-radius: 0px !important; 
}

/* mobile view  */
#menu {
    cursor: pointer;
  }

  .mobile-nav {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    background: #050404;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav.open {
    transform: translateX(0%);
  }

  .mobile-nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .mobile-nav ul li {
    padding: 10px;
  }

  .mobile-nav ul li a {
    color: white;
    text-decoration: none;
  }
/* ........... */
@media(min-width:800px){
    .mobile-nav{
        display:none;
    }

}


/* ................. */


.services{
    max-width:1200px;
    margin:auto;
    padding:10px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

@media(max-width:700px){
    .services{
        grid-template-columns:1fr;
    }
}


.custom-modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1000; /* Higher z-index to ensure it's above other content */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.custom-modal-content {
    background-color: #ffffff;
    max-width: 500px;
    margin: 10% auto; /* Center modal vertically */
    padding: 30px;
    border-radius: 7px;
    border:2px solid #ff0000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-close {
    color: #aaaaaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
}

.custom-close:hover,
.custom-close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.custom-modal-content p {
    margin-bottom: 15px;
}

.custom-modal-content button {
    background-color: #d43429;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

.custom-modal-content button:hover {
    background-color: #b34800;
}

/* ............. list of companies */
.companies{
    width:80%;
}

.select option{
    font-size:0.8rem !important;
}

    .ticker-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 20px;
        }
        .ticker-item {
            display: inline-block;
            padding-right: 50px;
        }


        /* slider images */

        .slider {
            position: relative;
            width: 70%;
            /* max-width: 1000px; */
            height: 400px; /* Fixed height for the slider */
            overflow: hidden;
            margin:auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%; /* Ensure container takes full height */
        }
        
        .slide {
            min-width: 100%;
            box-sizing: border-box;
            height: 100%; /* Ensure slide takes full height */
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Make images fill the slide maintaining aspect ratio */
            border-radius: 10px;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width:50px;
            height:50px;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10; 
        }
        
        .prev {
            left: 10px;
        }
        
        .next {
            right: 10px;
        }
        
        @media (max-width: 768px) {
            .slider {
                width: 80%;
                height: 300px; /* Adjust height for smaller screens */
            }
        
            .prev, .next {
                padding: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .slider {
                width: 90%;
                height: 200px; /* Adjust height for very small screens */
            }
        
            .prev, .next {
                padding: 6px;
            }
        }
        /* services */
		
        @media (min-width: 769px) {
            @keyframes bounce {
                0%, 20%, 50%, 80%, 100% {
                    transform: translateY(0);
                }
                40% {
                    transform: translateY(-30px);
                }
                60% {
                    transform: translateY(-15px);
                }
            }

            .animated-image {
                animation: bounce 2s infinite;
            }

            @keyframes shake {
                0%, 5%, 100% { /* Start, end, and during the pause */
                    transform: translateX(0);
                }
                10%, 30%, 50%, 70%, 90% {
                    transform: translateX(-10px);
                }
                20%, 40%, 60%, 80% {
                    transform: translateX(10px);
                }
            }

            .shake-animation {
                animation: shake 0.5s;
            }

            /* Hero Section */
            .hero-section {
                position: relative;
                width: 100%;
                min-height: 100vh;
                display: flex;
                align-items: center;
                overflow: hidden;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
    /* Video Background */
    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
    }
    
    /* Form Container */
    .form-container-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 40px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .form-container {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        padding: 48px;
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
        border-radius: 24px 24px 0 0;
    }
    
    /* Form Header */
    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .form-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
        position: relative;
    }
    
    .form-icon::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.3;
    }
    
    .form-icon i {
        color: white;
        font-size: 32px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    .form-title {
        color: #1a202c;
        margin-bottom: 16px;
        text-shadow: none;
    }
    
    .title-main {
        display: block;
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .title-sub {
        display: block;
        font-size: 20px;
        color: #667eea;
        font-weight: 600;
        margin-bottom: 16px;
    }
    
    .form-description {
        color: #64748b;
        font-size: 16px;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Form Grid */
    .auto-parts-form {
        width: 100%;
    }
    
    .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-label {
        display: block;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        letter-spacing: 0.025em;
    }
    
    .form-hint {
        display: block;
        color: #6b7280;
        font-size: 12px;
        margin-top: 4px;
        font-style: italic;
    }
    
    /* Input and Select Wrappers */
    .input-wrapper,
    .select-wrapper {
        position: relative;
        width: 100%;
    }
    
    .input-icon,
    .select-arrow {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #9ca3af;
        font-size: 16px;
        pointer-events: none;
        transition: color 0.2s ease;
    }
    
    .input-icon {
        right: 16px;
    }
    
    .select-arrow {
        right: 16px;
        font-size: 14px;
    }
    
    .form-input,
    .form-select {
        width: 100%;
        padding: 16px 48px 16px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 15px;
        background: #ffffff;
        color: #1f2937;
        transition: all 0.2s ease;
        font-family: inherit;
        line-height: 1.5;
    }
    
    .form-input::placeholder,
    .form-select::placeholder {
        color: #9ca3af;
        font-weight: 400;
    }
    
    .form-input:focus,
    .form-select:focus {
        border-color: #667eea;
        outline: none;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        background: #ffffff;
    }
    
    .form-input:hover,
    .form-select:hover {
        border-color: #d1d5db;
    }
    
    .form-input:focus + .input-icon,
    .form-select:focus + .select-arrow {
        color: #667eea;
    }
    
    /* Select Styling */
    .form-select {
        appearance: none;
        cursor: pointer;
    }
    
    .form-select option {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 18px 24px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: relative;
        overflow: hidden;
        font-family: inherit;
        letter-spacing: 0.025em;
    }
    
    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .submit-btn:hover::before {
        left: 100%;
    }
    
    .submit-btn:hover {
        background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }
    
    .submit-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }
    
    .submit-btn i {
        font-size: 18px;
        transition: transform 0.2s ease;
    }
    
    .submit-btn:hover i {
        transform: scale(1.1);
    }
    
    /* Form Footer */
    .form-footer {
        margin-top: 24px;
        text-align: center;
    }
    
    .form-disclaimer {
        color: #6b7280;
        font-size: 13px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
    }
    
    .form-disclaimer i {
        color: #10b981;
        font-size: 14px;
    }
    
    /* Select2 Customization */
    .select2-container {
        width: 100% !important;
    }
    
    .select2-container--default .select2-selection--single {
        height: 48px;
        border: 1px solid rgba(0,0,0,0.1) !important;
        background: rgba(255,255,255,0.9);
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 48px !important;
        color: #333 !important;
        padding-left: 14px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 46px !important;
    }
    
    .select2-container--default .select2-dropdown {
        border: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .form-container {
            padding: 40px 32px;
            max-width: 95%;
        }
        
        .title-main {
            font-size: 32px;
        }
        
        .title-sub {
            font-size: 18px;
        }
        
        .form-icon {
            width: 72px;
            height: 72px;
        }
        
        .form-icon i {
            font-size: 28px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-section {
            min-height: auto;
            padding: 40px 0;
        }
        
        .form-container-wrapper {
            padding: 20px;
        }
        
        .form-container {
            padding: 32px 24px;
            max-width: 100%;
            border-radius: 20px;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .title-main {
            font-size: 28px;
        }
        
        .title-sub {
            font-size: 16px;
        }
        
        .form-description {
            font-size: 14px;
        }
    }
    
    @media (max-width: 480px) {
        .form-container-wrapper {
            padding: 16px;
        }
        
        .form-container {
            padding: 24px 20px;
            border-radius: 16px;
        }
        
        .title-main {
            font-size: 24px;
        }
        
        .title-sub {
            font-size: 15px;
        }
        
        .form-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 20px;
        }
        
        .form-icon i {
            font-size: 24px;
        }
        
        .form-input,
        .form-select {
            padding: 14px 44px 14px 14px;
            font-size: 14px;
        }
        
        .input-icon,
        .select-arrow {
            right: 14px;
            font-size: 14px;
        }
        
        .submit-btn {
            padding: 16px 20px;
            font-size: 15px;
        }
        
        .form-footer {
            margin-top: 20px;
        }
        
        .form-disclaimer {
            font-size: 12px;
        }
    }
    }
    
.modern-heading {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 800px;
    position: relative;
    line-height: 1.2;
  }

.heading-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.heading-accent {
    display: inline-block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #ff0000;
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

/* Optional decorative elements */
.modern-heading::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .modern-heading {
        padding: 0 15px;
    }
    
    .heading-accent {
        padding: 0.4rem 1.2rem;
    }
}
/* Brand Intro Styles */
.brand-intro {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intro-text {
    flex: 1;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.intro-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: #2e3488ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #2e3488ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.intro-image {
    flex: 1;
    text-align: center;
}

.feature-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-description {
        font-size: 1rem;
    }
}

/* Featured Products Styles */
.featured-products, .more-products {
    padding: 4rem 0;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.deal-tag {
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-tag {
    background: #1d3557;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8f9fa;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
}

.product-model {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #212529;
    min-height: 3.5rem;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-cta:hover {
    background: #c1121f;
}

/* Value Propositions Styles */
.value-propositions {
    padding: 2rem 0;
}

.propositions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.proposition-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.proposition-image {
    width: 100%;
    height: 100%;
}

.proposition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proposition-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    color: white;
}

.dark-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.proposition-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.proposition-overlay p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.proposition-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: #2e3488ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.proposition-button:hover {
    background: #2e3488ff;
}

/* Promotional Banner Styles */
.promo-banner {
    margin: 4rem 0;
    position: relative;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-actions {
    display: flex;
    gap: 1rem;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button {
    background: #ff0000;
    color: white;
}

.call-button:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.chat-button {
    background: white;
    color: #1d3557;
    border: none;
    cursor: pointer;
}

.chat-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Brands Showcase Styles */
.brands-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.brands-showcase .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brands-showcase .section-header h2 {
    font-size: 2.2rem;
    color: #1d3557;
    margin-bottom: 0.5rem;
}

.brands-showcase .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.brands-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .brand-title {
        font-size: 2.8rem;
    }
    
    .brand-visuals {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.2rem;
    }
    
    .propositions-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .banner-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-actions {
        flex-direction: column;
    }
    
    .brand-logo {
        width: 100px;
        height: 70px;
    }
}

/* Customer Reviews Marquee Styles */
.customer-reviews {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-top: 3rem;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1d3557;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reviews-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.review-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: bold;
    color: #1d3557;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        flex: 0 0 85%;
    }
}    


 /* Popup Overlay */
    .custom-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.95);
        overflow: auto;
        animation: fadeIn 0.3s ease-out;
    }
    
    /* Popup Content */
    .custom-modal-content {
        position: relative;
        background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        margin: auto;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    /* Close Button */
    .custom-close {
        position: absolute;
        right: 20px;
        top: 20px;
        color: #aaa;
        font-size: 32px;
        font-weight: bold;
        cursor: pointer;
        z-index: 2;
        transition: all 0.3s;
    }
    
    .custom-close:hover {
        color: #ff0000;
        transform: rotate(90deg);
    }
    
    /* Popup Body */
    .popup-body {
        width: 90%;
        max-width: 500px;
        padding: 20px;
        position: relative;
    }
    
    /* Animated Image */
    .animated-image {
        width: 80%;
        max-width: 300px;
        margin: 0 auto 20px;
        animation: bounce 2s infinite;
    }
    
    /* Offer Content */
    .offer-content {
        margin-bottom: 25px;
    }
    
    .discount {
        font-size: 4rem;
        font-weight: 900;
        color: #ff0000 !important;
        margin: 0;
        line-height: 1;
        background: linear-gradient(to right, #ff0000, #ff0000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .offer-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333;
        margin: 10px 0;
    }
    
    .offer-desc {
        font-size: 1.1rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }
    
    /* Call to Action Button */
    .cta-link {
        display: block;
        width: 100%;
        text-decoration: none;
        margin: 20px 0;
    }
    
    .cta-button {
        width: 100%;
        padding: 18px;
        background: #2e3488ff;
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 71, 87, 0.6);
    }
    
    /* Countdown Timer */
    .countdown-container {
        margin-top: 25px;
    }
    
    .countdown-text {
        font-size: 1rem;
        color: #888;
        margin-bottom: 5px;
    }
    
    .timer {
        font-size: 2rem;
        font-weight: 700;
        font-family: 'Courier New', monospace;
        color: #ff0000;
        background: rgba(255, 71, 87, 0.1);
        padding: 8px 15px;
        border-radius: 5px;
        display: inline-block;
    }
    
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    
    .shake-animation {
        animation: shake 0.8s infinite;
    }
    
    @keyframes shake {
        0% { transform: translateX(0); }
        20% { transform: translateX(-5px); }
        40% { transform: translateX(5px); }
        60% { transform: translateX(-5px); }
        80% { transform: translateX(5px); }
        100% { transform: translateX(0); }
    }
    
    /* Mobile Specific Styles */
    @media (max-width: 768px) {
        .custom-modal-content {
            border-radius: 0;
        }
        
        .popup-body {
            width: 95%;
            padding: 15px;
        }
        
        .animated-image {
            width: 70%;
            max-width: 250px;
        }
        
        .discount {
            font-size: 3.5rem;
        }
        
        .offer-title {
            font-size: 1.5rem;
        }
        
        .offer-desc {
            font-size: 1rem;
        }
        
        .cta-button {
            padding: 16px;
            font-size: 1.1rem;
        }
        
        .timer {
            font-size: 1.8rem;
        }
    }
}

/* Modern Hero Section Styles */
.modern-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: white;
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line-1 {
    display: block;
    color: #ffffff;
}

.title-line-2 {
    display: block;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modern Form Card */
.modern-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.form-header-modern {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.form-icon-modern i {
    font-size: 2rem;
    color: white;
}

.form-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.step-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.field-label i {
    color: #667eea;
    font-size: 1rem;
}

.modern-input,
.modern-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modern-input:focus,
.modern-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-input::placeholder {
    color: #999;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-prev {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-prev:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.trust-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Quick Actions Section */
.quick-actions {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.action-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.action-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.action-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.action-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .modern-form-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-form-card {
        padding: 25px 15px;
    }
    
    .form-progress {
        gap: 10px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}