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

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #002b5c; /* Deep blue */
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #00aaff; /* Bright blue hover effect */
}

.logo {
    color: red; /* Red color for the logo */
    font-size: 24px; /* Adjust size as needed */
    font-weight: bold; /* Make the logo text bold */
    text-decoration: none; /* Remove underline from the link */
}

.logo:hover {
    color: darkred; /* Slightly darker red on hover */
}

.contact-btn {
    padding: 10px 20px;
  /*  background-color: #0077cc;  Button blue */
    color: white;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #005fa3; /* Darker blue on hover */
}

/* Hero Section */
.hero {
    background-image: url('images/bg_image.webp');
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    color: white;
}

.hero span {
    color: #00aaff; /* Bright blue for key highlights */
}

.hero p {
    font-size: 18px;
    margin: 10px 0;
}

/* Social Media Icons */
.hero-icons i {
    font-size: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.hero-icons a:hover i {
    transform: scale(1.2); /* Slight scale effect on hover */
}

/* Content Section */
.content {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f2f2f2;
}

.content-box {
    width: 45%;
    padding: 30px;
    background-color: #f2f2f2;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-box:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.content-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* Products Snapshot Section */
.products-snapshot {
    background-color: #f2f2f2;
    color: rgb(179, 31, 31);
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 0px;
}

.products-snapshot h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #00aaff;
}

.product-box {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    flex: 1;
}

.product-box img {
    max-width: 40%;
    border-radius: 8px;
    object-fit: cover;
}

/* Services Section */
.services {
    background-color: #f2f2f2;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #00aaff;
}

.service-box {
    background-color: #544848;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Align content left and right */
    align-items: center; /* Vertically center the content */
    padding: 10px 20px; /* Adjust padding for a smaller footer */
    position: relative;
    width: 100%;
    font-size: 12px; /* Set font size */
}

footer p {
    margin: 0; /* Remove extra margin */
}

.footer-icons {
    display: flex;
    margin-right: 35px; /* Add margin to prevent cutoff */
}

.footer-icons i {
    font-size: 18px; /* Set icon size */
    margin-left: 15px; /* Space between icons */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-icons i.fa-facebook {
    color: #3b5998; /* Facebook blue */
}

.footer-icons i.fa-instagram {
    color: #C13584; /* Instagram gradient pink/purple */
}

.footer-icons i.fa-twitter {
    color: #1DA1F2; /* Twitter blue */
}

.footer-icons i.fa-envelope {
    color: #D14836; /* Gmail red */
}

.footer-icons i:hover {
    color: #0077cc; /* Color change on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .content {
        flex-direction: column;
    }

    .content-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .product-box {
        flex-direction: column;
        text-align: center;
    }

    .product-box img {
        max-width: 100%;
    }

    .services {
        padding: 20px;
    }

    .service-box {
        margin-bottom: 20px;
    }

    

    .footer-bottom {
        flex-direction: column; /* Stack the bottom elements on small screens */
        text-align: center;
    }

    .footer-icons {
        margin-top: 10px; /* Add spacing between copyright and icons */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .content-box {
        padding: 20px;
    }

    .product-box p {
        font-size: 16px;
    }

    .service-box p {
        font-size: 16px;
    }

    .footer-columns .column {
        padding: 10px;
    }

    .footer-columns ul {
        padding-left: 15px;
    }
}
