@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}
body {
    background-color: black;
}
/* Navbar */
.navbar {
    position: relative;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff6347, #6a5acd);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 20px;
    height: 100%; /* Ensures logo fits within navbar height */
}

.navbar .logo img {
    height: 80px;
    object-fit: contain;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #333;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: black;
    color: white;
}

/* Buttons Section */
.buttons {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons .login {
    background-color: #007BFF;
    color: white;
}

.buttons .register {
    background-color: #28a745;
    color: white;
}

.buttons button:hover {
    transform: scale(1.1);
}

/* Mobile Styling */
.menu-icon {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    margin-right: 20px;
}

.mobile-buttons {
    display: none;
}

@media screen and (max-width: 1168px) {
    .navbar {
        height: 80px;
        padding: 10px 20px;
    }

    .navbar .logo img {
        height: 60px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ff4b2b;
        position: absolute;
        top: 80px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content {
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        background-color: transparent;
    }

    .dropdown-content a {
        background-color: #ff6347;
        color: white;
        padding: 8px 0;
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: none;
    }

    .menu-icon {
        display: block;
    }

    .buttons {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .mobile-buttons button {
        padding: 8px;
        font-size: 1em;
        width: 95%;
        margin: 0 auto;
        border-radius: 5px;
    }

    .mobile-buttons .login {
        background-color: #007BFF;
    }

    .mobile-buttons .register {
    background-color: #28a745;
    }
}
/* Navbar */

/* Banner Section */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 30px;
    background-color: black;
    /* top: 50px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-text {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.banner-text h1 {
    font-size: 2.8em;
    font-weight: bold;
    color: whitesmoke;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 1.4em;
    color: whitesmoke;
    margin-bottom: 30px;
}

.banner-btn {
    background-color: #ff6347;
    color: white;
    padding: 12px 25px;
    font-size: 1.2em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.banner-btn:hover {
    background-color: #e55347;
}

.banner-slider {
    flex: 1;
    max-width: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adding shadow to the slider */
    border-radius: 10px;
}

/* Slider */
.carousel-inner img {
    height: auto;
    width: 700px;
    /* object-fit: cover; */
    /* border-radius: 10px; Rounded corners for slider images */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .banner-text {
        max-width: 100%;
        text-align: center;
    }

    .banner-slider {
        max-width: 100%;
        margin-top: 20px;
    }

    .carousel-inner img {
        height: 300px; /* Adjust slider height for mobile */
        object-fit: cover;
    }
}
/* Banner Section */


/* Custom Products Section */
.custom-products {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(145deg, #f2f2f2de, #e0e0e0e2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.custom-products h2 {
    font-size: 3em;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-line {
    width: 120px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto;
    border-radius: 10px;
}

.section-description {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.products {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 20%;
    padding: 20px;
    height: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: rgb(170, 45, 45);
}

.product-card img {
    width: 100%;
    height: 200px;
    /* object-fit: cover; */
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 15px;
    font-weight: bold;
}

.product-card p {
    font-size: 0.8em;
    color: #7f8c8d;
    margin: 10px 0 20px;
    height: 210px;
    overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .product-card {
        width: 48%; /* Two items in a row on medium screens */
    }
}

@media screen and (max-width: 768px) {
    .product-card {
        width: 100%; /* Full width on mobile */
    }

    .custom-products {
        padding: 60px 20px;
    }

    .section-description {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .products {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .section-line {
        width: 80px;
    }

    .custom-products h2 {
        font-size: 2.2em;
    }

    .section-description {
        font-size: 1em;
    }
}


/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    max-width: 600px;
}

/* Close Button */
.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Elements */
#productForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#productForm label {
    font-size: 1.2em;
}

#productForm input,
#productForm select,
#productForm textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#productForm textarea {
    resize: vertical;
    min-height: 150px;
}

#productForm button {
    background-color: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#productForm button:hover {
    background-color: #e74c3c;
    transform: translateY(-5px);
}

#productForm button:active {
    transform: translateY(0);
}


/* Custom Products Section */

/* Services Section */
.services {
    padding: 80px 5%;
    background: linear-gradient(145deg, #f2f2f2, #e0e0e0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.services h2 {
    font-size: 3em;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services .section-line {
    width: 120px;
    height: 4px;
    background-color: #ff6b6b;
    margin: 10px auto;
    border-radius: 10px;
}

.services .section-description {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: rgb(143, 209, 236);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 550px;
    transition: transform 0.3s ease;
    padding: 20px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.6em;
    color: black;
    margin-top: 10px;
    font-weight: bold;
}

.service-card p {
    font-size: 1.1em;
    color: #333;
    margin: 15px 0;
    line-height: 1.6;
}

/* Image Container */
.service-image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Images Styling */
.service-image {
    width: 500px;
    height: 300px;
}

/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .service-card {
        width: calc(50% - 30px); /* 2 items per row */
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 2.5em;
    }

    .section-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .services-container {
        gap: 20px;
    }

    .service-card {
        width: 100%; /* 1 item per row */
    }

    .service-image-left, .service-image-right {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .services h2 {
        font-size: 2.2em;
    }

    .section-line {
        width: 80px;
    }

    .section-description {
        font-size: 1em;
    }

    .service-image-left, .service-image-right {
        width: 90px;
        height: 90px;
    }
}


/* Testimonial Section */
.testimonial-section {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 5%;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 3em;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Testimonial Slider */
.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each Slide */
.testimonial-slide {
    display: flex;
    justify-content: space-around;
    flex-shrink: 0;
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Name & Text */
.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .testimonial-container {
        max-width: 90%;
    }

    .testimonial-slide {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .testimonial-card {
        max-width: 45%; /* 2 cards per row */
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .testimonial-section {
        padding: 50px 20px;
    }

    .testimonial-section h2 {
        font-size: 2.5em;
    }

    .testimonial-slide {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%; /* 1 card per row */
    }
}

/* Small Mobile Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .testimonial-section h2 {
        font-size: 2.2em;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 13px;
    }
}

/* footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 5%;
    width: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Footer Sections */
.footer-container .footer-about,
.footer-container .footer-links,
.footer-container .footer-contact {
    flex: 1 1 30%;
    min-width: 250px;
}

/* Footer Headings */
.footer h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Footer Links */
.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-links ul li {
    list-style: none;
}

.brkadrs{
    margin-left: 74px;
}

.footer a:hover {
    color: #f39c12;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
}

/* Footer Payment Section */
.footer-payment {
    text-align: center;
    margin-top: 30px;
}

.footer-payment h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.payment-icon {
    width: 70px;
    height: auto;
    transition: opacity 0.3s;
}

.payment-icon:hover {
    opacity: 0.7;
}

/* Footer Social Media Section */
.footer-socials {
    text-align: center;
    margin-top: 20px;
}

.footer-socials h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icon img {
    width: 50px;
    height: 50px;
    transition: opacity 0.3s;
}

.social-icon:hover img {
    opacity: 0.7;
}

/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-container .footer-about,
    .footer-container .footer-links,
    .footer-container .footer-contact {
        flex: 1 1 45%;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon img {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-container .footer-about,
    .footer-container .footer-links,
    .footer-container .footer-contact {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icon {
        width: 50px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile Screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .footer h4 {
        font-size: 1em;
    }

    .footer a {
        font-size: 0.9em;
    }

    .footer-bottom p {
        font-size: 0.8em;
    }

    .social-icon img {
        width: 35px;
        height: 35px;
    }
}
/* footer */