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

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

body {
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
    background-image: url('../images/pexels-heyho-7534570.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
}

.nav {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1A3C34;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #1A3C34;
    font-weight: bold;
}

.nav-link:hover,
.nav-link:focus {
    color: #1A3C34;
    outline: none;
}

.menu-toggle-checkbox {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    color: #1A3C34;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* Products Dropdown */
.nav .nav-link.products-link {
    position: relative;
}

.nav .nav-link.products-link:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1A3C34;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown a {
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.dropdown a:hover {
    background-color: #A9C9A4;
}

/* Animations for Navbar */
[data-animate="fade-in"] {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.about-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.text-content,
.image-content {
    flex: 1;
    min-width: 0;
}

.text-content h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 4px;
    color: #1A3C34;
}

.text-content p {
    font-size: 1rem;
    color: #666;
}

.image-parent {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 40rem;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-content-two {
    right: 12rem;
    left: 16rem;
}

.overlay {
    position: absolute;
    top: 74px;
    left: 540px;
    width: 229px;
    height: 231px;
    background: #A9C9A4;
    border-radius: 11%;
    padding: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.banner {
    background-color: #A9C9A4;
    padding: 133px 0;
    text-align: center;
}

.banner-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #FFFFFF;
    font-weight: 600;
}

.offerings-section {
    background-color: #1A3C34;
    color: #FFFFFF;
    padding: 60px 0;
}

.offerings-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offering-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.offering-item.animate {
    opacity: 1;
    transform: scale(1);
}

.offering-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.offering-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.offering-item p {
    color: #bbb;
    font-size: 0.875rem;
    max-width: 150px;
    margin: 0 auto;
}

.transparent-section {
    padding: 60px 0;
    text-align: center;
    background: transparent;
}

.transparent h2 {
    font-size: 1.875rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 0.25em 1em;
    border-radius: 8px;
    color: #222;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transparent p {
    font-size: 1.567rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.accreditations-section {
    padding: 60px 0;
    text-align: center;
    background-color: #A9C9A4;
}

.accreditations-section h2 {
    font-size: 1.875rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.accreditation-item {
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.accreditation-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.accreditation-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    object-fit: contain;
}

.accreditation-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.accreditation-item p {
    color: #666;
    font-size: 0.875rem;
    max-width: 200px;
    margin: 0 auto;
}

.footer {
    background-color: #1A3C34;
    color: #bbb;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.875rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-text {
    font-size: 0.75rem;
    border-top: 1px solid #666;
    padding-top: 10px;
    text-align: center;
}

.footer-section img {
    width: 80px;
    height: 84px;
    margin-right: 10px;
}

.action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.action-button {
    background-color: #A9C9A4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.action-button:hover {
    transform: scale(1.1);
}

.action-button svg {
    fill: none;
    stroke: #FFFFFF;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 40;
        padding: 1rem 0;
    }

    .menu-toggle-checkbox:checked ~ .nav {
        display: flex;
    }

    .nav-link {
        margin: 0;
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid #e9e9e7;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav .nav-link.products-link .dropdown {
        display: none !important;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .image-parent {
        order: -1;
        max-width: 100%;
        width: auto;
    }

    .image-content-two {
        display: none;
    }

    .text-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .text-content p {
        text-align: center;
    }

    .overlay {
        position: static;
        margin: -50px auto 0;
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .overlay img {
        transform: none;
        border-radius: 50%;
    }

    .banner {
        padding: 80px 0;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .accreditations-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .action-buttons {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 2rem;
    }

    .banner {
        padding: 60px 0;
    }

    .banner-text {
        font-size: 1rem;
    }

    .offerings-section h2,
    .accreditations-section h2 {
        font-size: 1.5rem;
    }

    .transparent p {
        font-size: 1.2rem;
    }

    .accreditation-item img {
        width: 120px;
        height: 120px;
    }

    .overlay {
        width: 120px;
        height: 120px;
    }
}