/* -- Hero Section -- */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    line-height: 1.6;
    color: #333;
}

/* Container (Bootstrap-like) */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 0;
}

/* Image Section */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Content Section */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #003580;
    margin-bottom: 10px;
}

.hero-content h1 span {
    font-weight: bold;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.hero-content a {
    display: inline-block;
    padding: 10px 20px;
    color: #003580;
    border: 1px solid #003580;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-content a:hover {
    background-color: #003580;
    color: #fff;
}

/* -- ./Hero Section -- */


/* Product Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Container (Bootstrap-like) */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Styling */
.product-section {
    padding: 40px 0;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    flex: 1 1 calc(25% - 20px);
    background-color: #f9f9f9;
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

/* Image Container Placeholder */
.image-container {
    width: 100%;
    height: 300px;
    /* Fixed height */
    background-color: #ddd;
    /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text Styling */
.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-title a {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
}
.product-title a:hover {
    text-decoration: none;
}

.product-link {
    font-size: 0.9rem;
    color: #003580;
    text-decoration: none;
    font-weight: bold;
}

.product-link:hover {
    text-decoration: underline;
}

/* ./Product Section */

/* -- New Product */
/* Heading Style */
.new-products .section-heading {
    text-align: center;
    margin-bottom: 10px;
    /* Spacing between headings */
    font-family: Arial, sans-serif;
    color: #333;
    /* Dark gray for primary text */
}

.new-products .section-heading.primary {
    font-size: 16px;
    /* Smaller font for 'New Arrival' */
    font-weight: normal;
    letter-spacing: 2px;
    /* Spaced-out letters */
    color: #7d7d7d;
    /* Lighter gray */
    text-transform: uppercase;
}

.new-products .section-heading.secondary {
    font-size: 36px;
    /* Larger font for 'New Product' */
    font-weight: bold;
    color: #003399;
    /* Dark blue for the emphasis */
    margin-top: 0;
    /* Adjust spacing */
}

/* Section Layout */
.new-arrivals {
/*    display: grid;*/
    grid-template-columns: 2fr 1fr;
    /* Two columns: Products | Banner */
    gap: 20px;
}

/* Product Grid */
.new-arrivals .product-items {
/*    display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.new-arrivals .product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.new-arrivals .product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Placeholder Image Container */
.new-arrivals .image-container {
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.new-arrivals .image-container img {
    max-width: 100%;
    height: auto;
}

/* Product Title & Price */
.new-arrivals .product-title {
    font-size: 14px;
    margin: 10px 0;
}

.new-arrivals .product-price {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.new-arrivals .sale-price {
    color: #dc3545;
    text-decoration: line-through;
    margin-right: 5px;
}

/* Add to Cart Button */
.new-arrivals .add-to-cart {
    display: inline-block;
    padding: 8px 12px;
    background-color: #28a745;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.new-arrivals .add-to-cart:hover {
    background-color: #218838;
}

/* Banner Styles */
/*.new-arrivals .banner {
    position: relative;
    background: linear-gradient(to bottom, #d9e3f0, #c9d6e5);
background: {{url('/')}}/images/web/banner1.png;
    border-radius: 8px;
    text-align: center;
    color: #333;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}*/
.new-arrivals .banner {
    position: relative;
    /* Combine gradient and image */
    background: 
        linear-gradient(176deg, rgba(202, 187, 187, 0) 0%, rgba(0, 0, 0, 1) 100%), 
        url('/images/web/safe.png') no-repeat center center;
    background-size: cover; /* Ensure both layers cover the entire banner */
    border-radius: 8px;
    text-align: center;
    color: #333;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.new-arrivals .banner img {
    max-width: 100px;
    margin-bottom: 10px;
}

.new-arrivals .banner h2 {
    font-size: 65px;
    color: #ff9800;
    margin: 10px 0;
}

.new-arrivals .banner p {
    font-size: 14px;
}

/* -- ./New Product */

/* -- Best Offers Section-- */
.best-offers {
    text-align: center;
    margin-top: 20px;
}

/* Top Heading Styles */
.best-offers .section-subheading {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.best-offers .section-heading {
    font-size: 32px;
    font-weight: bold;
    color: #003399;
    margin-bottom: 20px;
}

/* Grid Layout */
.best-offers .product-section {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column for all items */
    gap: 20px;
}

.best-offers .product-items {
/*    display: grid;*/
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product Card */
.best-offers .product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.best-offers .product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image Placeholder */
.best-offers .image-container {
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.best-offers .image-container img {
    max-width: 100%;
    height: auto;
}

/* Product Title */
.best-offers .product-title {
    font-size: 14px;
    margin: 10px 0;
}

/* Product Price */
.best-offers .product-price {
    font-weight: bold;
    color: #007bff;
}

.best-offers .product-price .sale-price {
    color: #dc3545;
    text-decoration: line-through;
    margin-right: 5px;
}

/* Add to Cart Button */
.best-offers .add-to-cart {
    display: inline-block;
    padding: 6px 12px;
    background-color: #28a745;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.best-offers .add-to-cart:hover {
    background-color: #218838;
}

/* -- ./Best Offers Section-- */



/* -- Top Antivirus Solutions -- */
.top-antivirus-solutions {
/*    display: grid;*/
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 20px;
}

/* Card Wrapper */
.top-antivirus-solutions .offer-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.top-antivirus-solutions .offer-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content */
.top-antivirus-solutions .offer-content {
    flex: 1;
}

.top-antivirus-solutions .offer-content h4 {
    font-size: 15px;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 400;
}

.top-antivirus-solutions .offer-content h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    margin-bottom: 50px;
}

.top-antivirus-solutions .offer-content a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #007bff;
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.top-antivirus-solutions .offer-content a:hover {
    background-color: #007bff;
    color: #fff;
}

/* Image Container with Background */
.top-antivirus-solutions .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9ca87a8;
    /* Light blue background */
    border-radius: 50%;
    width: 180px;
    height: 250px;
    overflow: hidden;
}

.top-antivirus-solutions .image-container img {
    max-width: 70%;
    /* Ensure image scales well */
    height: auto;
}

/* -- ./Top Antivirus Solutions -- */

.new-arrivals .product-title a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.best-offers .product-title a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.asd{
    margin-top: 455px;
        color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
   
}
.dis{
        color: #F9AB00;
    margin: 0px 0px 0px 0px;
    font-family: "Inter", Sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -4px;
}

.off{
        font-family: "Inter", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #FFFFFF;
}
.aj{
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}



