
/* Global smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    max-width: fit-content;
}
header {
    background: #062b80;
    color: white;
    margin-bottom: 1rem;
    width: 100%;
    position: sticky;
    top: 0%;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 5%;
    font-weight: bold;
}
.logo:hover{
    cursor: pointer;
}

#logopicture {
    width: 40%;
    height: 40%;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
nav a:hover {
    color: #e9ecef;
}
.upperbuttons a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #0a67be;
    color: white;
    margin: 0%;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(8, 66, 116, 0.4);
}
.upperbuttons a:hover {
    background-color: #05ad3df5;
}
.mainbody {
    margin-bottom: 4rem;
}
.mainbody section {
    display: none;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: fit-content;
}
.mainbody section#home {
    display: block;
    padding-top: 2rem;
}
.us{
    display: block;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 2rem;
    background: linear-gradient(135deg, #1e3c72, #00b377);
    color: white;
    
    border-radius: 2%;
    height: min-content;
}
.video-container-short{
    height: 35rem;

}
.hero-content {
    flex: 1;
    max-width: 500px;
    display: inline-block;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.btn {
    background-color: #28a745;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
}
.btn:hover {
    background-color: #218838;
}
.hero-image {
    flex: 1;
    text-align: center;
    display: inline-block;
    max-height: 80%;
}
.hero-image img {
    max-width: 20rem;
    height: 30rem;
    border-radius: 10px;

}
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.whyaqua0 li{
    padding: 0.5rem;
}
.learnmore{
    color: green;
    text-decoration: none;
    text-align: right;
}
.learnmore:hover{
 text-decoration: underline;
}
.organogramma{
    max-width: 100%;
}
.features {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 1rem 0;
}
.features h2, .aboutush1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e3c72;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.features p {
    padding: 1rem;
    margin: 1rem;
}
.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 0,5%;
}

.benefits {
    background-color: white;
}
.benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e3c72;
}
.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.benefit-item {
    padding: 1rem;
    border-left: 5px solid #1e3c72;
    background-color: #f8f9fa;
}
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    left: 0%;
    right: 0%;
    bottom: 0%;
    margin: 0;
}

/* Follow Us Section */
.follow-us {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 1rem 0;
    padding: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: center;
}

.follow-us h2 {
    margin-bottom: 1.5rem;
    color: #1e3c72;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0a67be;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-link:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-link i {
    font-size: 1.2rem;
}

/* Sponsors Section */
.sponsors {
    background-color: #e9ecef;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 1rem 0;
    padding: 2rem;
    margin-left: 1rem ;
    margin-right: 1rem;
    text-align: center;
}

.sponsors h2 {
    margin-bottom: 1.5rem;
    color: #1e3c72;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.sponsor-logo {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sponsor-logo:hover {
    transform: scale(1.05);
}

/* Blog Section Styles */
.blog {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3c72;
}

#blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 5px solid #1e3c72;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-header:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-left-color: #00b377;
}

.blog-header h3 {
    margin: 0 0 0.5rem 0;
    color: #1e3c72;
    font-size: 1.3rem;
}

.blog-header .blog-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-header .blog-excerpt {
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.article {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.article h3 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.article .blog-date {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.article-content {
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1rem;
}

.back-btn {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Video Section Styles */
.video-section {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.video-section h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    flex-basis: 100%;

}
.video-text{
    text-align: center;
}
/* YouTube Short Container - Vertical 9:16 aspect ratio */
.video-container-short {
    display: flex;
    gap: 2rem;

    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* Product Description */
.product-description {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-description h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-description h3 {
    color: #0a67be;
    margin-bottom: 1rem;
}

.product-description p {
    line-height: 1.8;
    color: #555;
}

.description-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    nav ul {
        gap: 1rem;
    }
    .features h2,
    .how-it-works h2,
    .benefits h2 {
        font-size: 1.8rem;
    }
    .feature-item h3,
    .step h3,
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    .feature-item p,
    .step p,
    .benefit-item p {
        font-size: 0.9rem;
    }
    section {
        padding: 3rem 1rem;
    }
    .hero {
        padding: 4rem 1rem 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .video-container-short {
        width: 280px;
    }
    
    .video-container-short iframe {
        height: 498px;
    }
    
    #logopicture {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1rem;
    }
    nav ul {
        gap: 0.5rem;
    }
    .features h2,
    .how-it-works h2,
    .benefits h2 {
        font-size: 1.5rem;
    }
    .feature-item h3,
    .step h3,
    .benefit-item h3 {
        font-size: 1rem;
    }
    .feature-item p,
    .step p,
    .benefit-item p {
        font-size: 0.8rem;
    }
    section {
        padding: 2rem 1rem;
    }
    .hero {
        padding: 3rem 1rem 2rem;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .upperbuttons a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

