* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f2f2f2;
  }
  
  .logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
    box-shadow: 
        inset 50px 0 100px -50px rgba(0, 0, 0, 0.7),  /* Left irregular shadow */
        inset -50px 0 100px -50px rgba(0, 0, 0, 0.7); /* Right irregular shadow */
}

.home8{
    height: 100vh;
    width: 100%;
    background: url("/asset/img/R.png") repeat ;
    opacity: 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
   
   
  }
  #r{
    color: #ff0000;
  }
  .home8 .home-content{
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
   
  }
  .home8 .text-one{
    font-size: 30px;
    color: #30a9ef;
  }
  .home8 .text-two{
    color: #FF6347;
    font-size: 65px;
    font-weight: 600;
    
  
  }
  .home8 .text-three{
    font-size: 30px;
    margin: 5px 0;
    color:#ffffff;
  }
  .home8 .text-four{
    font-size: 23px;
    margin: 5px 0;
    color: #2E8B57;
  }
  .home8 .button{
    margin: 14px 0;
  }
  .home8 .button button{
    outline: none;
    padding: 8px 16px;
   
    font-size: 25px;
    font-weight: 400;
    background: #4070f4;
    color: #fff;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s ease;
  }
  .home8 .button button:hover{
    border-color: #4070f4;
    background-color: #fff;
    color: #4070f4;
  }
  
.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 10s slide infinite linear;
}

.logos-slide .slide {
    display: inline-block;
}

.logos-slide img {
    max-width: 300px;
    margin: 5px 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.slide h2 {
   font-size: 16px;
   text-align: left;
   font-family:'Arial';
   font-style: normal;
   margin: 5px 0;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos-slide img:hover {
    transform: scale(1.2); /* Scales the image to 120% of its size */
    filter: brightness(1.2); /* Slightly brightens the image */
}


/* Basic styling */
body {
    font-family: roboto,Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

/* 
// Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {  }
/* 
// Medium devices (tablets, less than 992px) */


/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {  }

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {  }

/* // XX-Large devices (larger desktops)
// No media query since the xxl breakpoint has no upper bound on its width */
  

/* General Styles */
/* General Styles */
/* General Styles */
/* General Styles */
/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
    
} */

/* Container for Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: -120px;
}

/* Shopping Card Styling */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 380px;
   
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 300px;
}

.product-title {
    font-size: 20px;
    color: #333;
    margin: 15px 0;
}

.product-price {
    color: #5d6d7e;
    font-size: 18px;
    margin-bottom: 20px;
}

.order-btn {
    background: linear-gradient(135deg, #000000, #ff0000);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: linear-gradient(135deg, #f90303, #000000);
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: popupAnimation 0.5s ease-in-out;
}

@keyframes popupAnimation {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #000;
}

 form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: bold;
}
/* 
form input, form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
} */

form input:focus, form textarea:focus {
    border-color: #ff8a00;
    outline: none;
}

form textarea {
    resize: none;
    height: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #000000, #ff0000);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg,#ff0000, #000000);
} 
@media (max-width: 768px) {
    .popup {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .popup-content {
        width: 90%;
        max-width: 400px;
        padding: 20px;
        box-sizing: border-box;
        font-size: xx-small;
    }

  #name1{
    size: 10px;
  }
    .submit-btn {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        max-width: 350px;
        padding: 15px;
    }

   

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }

    .close-btn {
        font-size: 20px;
        top: 5px;
        right: 5px;
    }
}
