* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #377aa9;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: url('fish-farm-background.jpg') center/cover no-repeat;
    color: white;
    padding: 180px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Sections */
.section {
    padding: 80px 20px;
}

#about {
    padding: 40px 20px;
}

#about p {
    font-weight: bold;
}

.about-icon-wrapper {
    position: relative;
    display: block;
    margin: 0 auto 2rem auto;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.about-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* .about-icon-animated {
    opacity: 0;
}

.about-icon-wrapper:hover .about-icon-static {
    opacity: 0;
}

.about-icon-wrapper:hover .about-icon-animated {
    opacity: 1;
} */

.icon-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item:nth-child(2) .about-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

.icon-item:nth-child(2) .icon-label {
    margin-top: 10px;
}

.icon-item:nth-child(3) .about-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

.icon-item:nth-child(3) .icon-label {
    margin-top: 10px;
}

.icon-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0rem;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.section p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Icons Section */
#new-section {
    background: #fff;
}

/* Services Section */
.services-section {
    background: #e2ebf3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 2px solid #377aa9;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(55, 122, 169, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #377aa9;
}

.service-card p {
    text-align: left;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #e2ebf3;
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #377aa9;
}

.contact-item p {
    font-size: 1rem;
    margin: 0;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        padding: 100px 20px;
        padding-top: 80px;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* About Section */
    #about {
        padding: 30px 15px;
    }

    #about p {
        font-size: 1rem;
    }

    /* Icons Section */
    #new-section {
        padding: 40px 15px;
    }

    .icon-grid {
        gap: 2rem;
    }

    .about-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
    }

    .icon-label {
        font-size: 1rem;
    }

    /* Reset icon-specific adjustments for mobile */
    .icon-item:nth-child(2) .about-icon-wrapper,
    .icon-item:nth-child(3) .about-icon-wrapper {
        margin-top: 0 !important;
    }

    .icon-item:nth-child(2) .icon-label,
    .icon-item:nth-child(3) .icon-label {
        margin-top: 0 !important;
    }

    /* Sections */
    .section h2 {
        font-size: 1.8rem;
    }

    .section p {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
    }
}
