* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #f8f9fa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.top-banner {
    background: linear-gradient(rgba(26, 60, 94, 0.8), rgba(26, 60, 94, 0.9)), url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.top-banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.top-banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #9cd0db;
    color: #1A3C5E;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #1A3C5E;
    color: #9cd0db;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.swiper {
    margin-top: 20px;
    width: 100%;
    height: 60vh;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-align: left;
    color: white;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.swiper-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.swiper-content p {
    font-size: 1.1rem;
}

.swiper-button-next, .swiper-button-prev {
    color: #9cd0db;
}

.swiper-pagination-bullet-active {
    background: #9cd0db;
}

.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #1A3C5E;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #9cd0db;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 94, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 20px;
    background: #9cd0db;
    color: #1A3C5E;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.quick-view-btn:hover {
    background: white;
    color: #1A3C5E;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    color: #1A3C5E;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.add-to-cart-btn {
    padding: 10px 20px;
    background: #1A3C5E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #9cd0db;
    color: #1A3C5E;
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #9cd0db, transparent);
    margin: 40px auto;
    width: 80%;
}

.banner {
    background:  url('./images/home_banner2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    height: 80vh;
    padding: 40px;
    text-align: center;
}

.banner-content {
    max-width: 800px;
}

.banner-content h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content h1 {
    font-size: 4rem;
    margin: 20px 0;
    color: #9cd0db;
}

.banner-content h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #9cd0db;
}

.btn-primary a {
    color: #1A3C5E;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #9cd0db;
}

.btn-secondary a {
    color: #9cd0db;
    text-decoration: none;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #1A3C5E;
}

.btn-primary:hover a {
    color: #9cd0db;
}

.btn-secondary:hover {
    background: #9cd0db;
}

.btn-secondary:hover a {
    color: #1A3C5E;
}

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.newsletter-content {
    background: #1A3C5E;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#email {
    padding: 12px 15px;
    width: 300px;
    border: 2px solid #9cd0db;
    background: white;
    border-radius: 5px;
    color: #333;
    font-size: 1rem;
}

#subscribe-btn {
    padding: 12px 25px;
    border: 2px solid #9cd0db;
    background: #9cd0db;
    color: #1A3C5E;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#subscribe-btn:hover {
    background: #1A3C5E;
    color: #9cd0db;
}

#footer {
    background: #1A3C5E;
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #9cd0db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #9cd0db;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #9cd0db;
    color: #1A3C5E;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .top-banner-content h1 {
        font-size: 2.5rem;
    }
    
    .swiper-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .swiper-content h3 {
        font-size: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    #email {
        width: 100%;
        max-width: 300px;
    }
}