
/* Body Styling */
body {
    background: #f4f4f4;
    color: #333;
  
   
}

/* About Us Section */
#about_us {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 50px 20px;
    border-radius: 10px;
    color: #fff;
}

#about_us img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

#about_us-containt h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

#about_us-containt p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Quality Products Section */
#Quality-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.left-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.right-section {
    flex: 1;
    padding: 20px;
}

.right-section h2 {
    color: #764ba2;
    font-size: 28px;
    margin-bottom: 15px;
}

.right-section p {
    font-size: 16px;
    line-height: 1.6;
}

/* User-Friendly Section */
#user-friendly {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #e3f2fd;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

#user-friendly-content {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

#user-friendly-content h2 {
    font-size: 28px;
    color: #1565c0;
}

#user-friendly-content p {
    font-size: 16px;
    line-height: 1.6;
}

#user-friendly-pic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#user-friendly-pic img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

/* Competitive Prices Section */
#Competitive-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.comp-left-section {
    flex: 1;
    padding: 20px;
}

.comp-left-section h2 {
    color: #d32f2f;
    font-size: 28px;
}

.comp-left-section p {
    font-size: 16px;
    line-height: 1.6;
}

.comp-right-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Marquee Effect */
marquee h2 {
    font-size: 22px;
    color: #ff9800;
    margin: 20px 0;
}

/* Support Section */
#support {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e8f5e9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

#support img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

#support p {
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
}

/* Transport & Delivery Section */
#transport {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.secure, .delivery {
    flex: 1;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
   
}

.secure img, .delivery img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.secure h2, .delivery h2 {
    font-size: 22px;
    color: #4caf50;
    margin-bottom: 10px;
}

.secure p, .delivery p {
    font-size: 16px;
    line-height: 1.6;
}

/* Call-to-Action Button */
#anitrade-button {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

#anitrade-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #about_us, #Quality-products, #Competitive-prices, #support {
        flex-direction: column;
    }
    
    #Quality-products img, #Competitive-prices img {
        max-width: 100%;
    }
}
