body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: white;
    color: black;
}


header {
    background: linear-gradient(90deg, green, green);
    padding: 18px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: rgb(255, 255, 108);
}


h1, h2 {
    text-align: center;
    margin-top: 25px;
    font-family: Georgia;
    color: rgb(34, 210, 233);
}


footer {
    background: rgb(255, 255, 255);
    padding: 40px 20px;
    margin-top: 50px;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;

    font-size: 16px;
    border-top: 3px solid #8bcfdc;
}

footer section {
    min-width: 200px;
}

footer h3 {
    color: rgb(2, 93, 109);
    margin-bottom: 10px;
}

footer a {
    color: rgb(2, 85, 124);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 35px 0;
}


.card {
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h2 {
    margin: 10px;
    font-size: 22px;
    color: green;
}

.card p {
    margin: 10px;
    color: rgb(59, 14, 14);
}


.blog-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.blog {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog img {
    width: 200px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
}

.blog h2 {
    margin: 0;
    color: rgb(3, 44, 3);
}

.blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 25px;
}

.gallery-container img {
    width: 100px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

