body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: #fff;
}

header .logo img {
    width: 60px;          /* Set a fixed width */
    height:60px;         /* Set a fixed height */
    border-radius: 50%;   /* This makes the image perfectly circular */
    object-fit: cover;    /* Ensures the image fills the circular shape without distortion */
    border: 3px solid #de2110;  /* border */
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

button {
    background-color: #fff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* Banner Section */
.banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    display: flex;
    padding: 40px;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
    font-size: 18px;
}

.hero-image img {
    height: 90%;
    width: 90%;
    border-radius: 8px;
}

/* Footer Section */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    color: #fff;
    padding: 20px 30px;
}

footer .logo img {
    width: 60px;          /* Set a fixed width */
    height:60px;         /* Set a fixed height */
    border-radius: 50%;   /* This makes the image perfectly circular */
    object-fit: cover;    /* Ensures the image fills the circular shape without distortion */
    border: 3px solid #de2110;  /* border */
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Copyright Section */
.copyright {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.copyright a {
    color: #4CAF50;
    margin: 0 10px;
}


/* Social icons section */

.social-icons img {
    width: 20px;      /* Set a fixed width */
    height: 20px;     /* Set a fixed height */
    object-fit: contain; /* Ensures the aspect ratio is maintained */
}


/* Pop-up Form */
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.close-btn:hover {
    color: #000;
}

/* Form Fields */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

button[type="submit"]:hover {
    background-color: #45a049;
}
