@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

a {
    color: #0069d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004ea5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

button, .btn {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover, .btn:hover {
    transform: scale(1.05);
}

input, select {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.navbar {
    font-family: 'Lato', sans-serif;
    background-color: #333;
    padding: 15px 0;
}

.navbar .nav-link {
    color: #fff;
    font-size: 1rem;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #ffc107;
}

footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }

    button, .btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

.section-heading {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #0069d9, #007bff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 700;
}

.lowercase {
    text-transform: lowercase;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f8f9fa;
}

.hero-section .btn-primary {
    background-color: #ff5733;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-section .btn-primary:hover {
    background-color: #c74426;
    transform: scale(1.03);
}

.hero-section .btn-outline-light {
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-section .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#features {
    background-color: #f9fafc;
    padding: 50px 0;
}

.feature-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    margin-bottom: 20px;
    color: #0069d9;
}

#features h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

#features p {
    font-size: 1rem;
    color: #777;
}

@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 20px;
    }

    #features h5 {
        font-size: 1.3rem;
    }

    #features p {
        font-size: 0.9rem;
    }
}

#products {
    background-color: #f9fafc;
    padding: 50px 0;
}

#products h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.product-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.product-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-box:hover img {
    transform: scale(1.03);
}

.product-box h5 {
    font-size: 1.5rem;
    margin: 15px 0 5px;
    color: #333;
    font-weight: 500;
}

.product-box p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.product-box .btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #0069d9;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-box .btn:hover {
    background-color: #004ea5;
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .product-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-box {
        width: 100%;
        padding: 25px;
    }

    #products h2 {
        font-size: 1.8rem;
    }
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    color: #555;
    font-size: 1.1rem;
    padding: 10px 25px;
    border: none;
    background-color: #f8f9fa;
    margin-right: 5px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #0069d9;
    background-color: #e2e6ea;
}

.nav-tabs .nav-link.active {
    background-color: #0069d9;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 105, 217, 0.3);
    border-radius: 10px;
}

.tab-content {
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.tab-pane h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.tab-pane p {
    font-size: 1rem;
    color: #777;
}

.carousel-inner img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-height: 500px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #333;
    border-radius: 50%;
    padding: 20px;
}

.tab-pane ul {
    padding-left: 0;
}

.tab-pane ul li a {
    color: #0069d9;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.tab-pane ul li a:hover {
    color: #004ea5;
}

.tab-pane ul li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.tab-pane ul li {
    margin-bottom: 15px;
}

.image-box {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    overflow: hidden;
    background-color: #f9fafc;
    border-radius: 10px;
}

.fixed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.image-box:hover .fixed-image {
    transform: scale(1.05);
}

#cart h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

#cart p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

#cart h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
}

#cart select.form-select {
    padding: 5px;
    font-size: 1rem;
    margin-right: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

select#qty.form-select {
    width: 80px;
}

#cart select.form-select:hover {
    background-color: #e2e6ea;
}

#cart input.form-control,
#cart select.form-select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#cart input.form-control:focus,
#cart select.form-select:focus {
    border-color: #0069d9;
    box-shadow: 0 0 5px rgba(0, 105, 217, 0.2);
}

#cart .form-check-label {
    font-size: 1rem;
    color: #666;
}

#cart .form-check-input {
    width: 20px;
    height: 20px;
}

#cart input[type="file"] {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#cart button[type="submit"] {
    background-color: #ffc107;
    color: #333;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#cart button[type="submit"]:hover {
    background-color: #e0a800;
    transform: scale(1.03);
}

#cart .row {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #cart h3 {
        font-size: 1.5rem;
    }

    #cart h4 {
        font-size: 1.3rem;
    }

    #cart .form-control,
    #cart .form-select {
        font-size: 0.9rem;
    }

    #cart button[type="submit"] {
        font-size: 1rem;
        padding: 12px;
    }
}
