
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


header {
    background-color: #000;
    color: #fff;
    padding: 15px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

nav ul li a:hover {
    background-color: #555;
}


.hero {
    text-align: center;
    padding: 100px 0;
    background-color: #f4f4f4;
    color: #333;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}


.container {
    text-align: center;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: calc(50% - 20px); /* Two cards per row */
    margin: 10px;
    padding: 15px;
    border: 1px solid #ccc; /* Grey border */
    border-radius: 10px;
    text-align: left;
}

.card-content {
    display: flex;
    align-items: center;
}

.card-content img {
    width: auto; /* Set image width */
    height: 200px;
    margin-right: 15px; /* Margin between image and text */
}

.text {
    flex: 1;
}


footer {
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    color: #fff;
}



.element {
    position: relative;
    width: 100%;
    background-image: url('images/img1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.element::after {
    content: ''; /* Required for pseudo-elements */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjust the height of the overlay as needed */
    background: rgba(0, 0, 0, 0.3); /* Background color with transparency for the overlay */
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-text {
    flex: 1;
    padding-right: 20px; /* Adjust spacing between text and image */
    text-align: left;
}

.about-image img {
    max-width: 100%; /* Ensure the image stays within its container */
    height: auto;
    border-radius: 10px; /* Add a border radius if desired */
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 300px; /* Set the width to 300px */
    max-width: 100%; /* Allow responsiveness up to 300px */
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn{
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 5px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.social-links a:hover {
    color: #007bff;
}