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

/* Body Style */
body {
    font-family: "Mukta", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    background: linear-gradient(135deg, #2e8940, #23697d);
    color: #2b3b52;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x:hidden;
}

/* Typography for Headings */
h2 {
    font-family: "superior-title", serif;
    font-weight: 800;
    font-style: normal;
    font-size: 100px;
    color: #2b3b52;
}

/* Header Style */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background:  none;
    width: 100%;
    margin: 0 auto;
}

/* Logo */
.logo {
    max-width: 50%;
    animation: fadeIn 1s ease-in-out;
}

/* Main Content */

.container {background:white;width:100%}
.content {
    flex: 1 0 auto;
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Intro Section */
.intro {
    text-align: center;
    margin: 100px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
}

/* Contact Form */
.contact-form {
    margin: 0 auto;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
	margin-bottom:40px
}

.contact-form h2 {
    font-family: "superior-title", serif;
    font-weight: 800;
    font-style: normal;
    font-size: 3em;
    color: #2b3b52;
    margin-bottom: 20px;
}

/* Form Fields */
.form-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-group span {
    width: 100%;
    text-align: left;
}

input,
textarea {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #2b3b52;
    font-size: 1rem;
    font-style: normal;
	border-radius:0
}

textarea::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: #888;
    font-size: 14px;
    font-style: italic;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    background-color: #23697d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    float: right;
    font-weight: 300;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
}

.submit-btn:hover {
    background-color: #2e8940;
    transform: translateX(2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer Style */
.footer {
    text-align: center;
    padding: 10px;
    background: none;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    margin: 40px 0 0 0;
    min-height: 150px;
    width: 100%;
    margin: 0 auto;
}

/* Responsive Media Queries */

/* Small devices (landscape phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        font-size: 16px;
    }
    .header, .content, .footer {
        flex-direction: column;
    }
    .logo {
        max-width: 80%;
    }
	.content {
		max-width:100%
	}
}

/* Medium devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        font-size: 16px;
    }
    .logo {
        max-width: 70%;
    }
	.content {
		max-width:100%
	}
}

/* Large devices (desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        font-size: 16px;
    }
    .content {
        max-width: 80%;
    }
}

/* Extra large devices (large desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        font-size: 17px;
    }
}

/* Extra extra large devices (larger desktops, 1200px and up) */
@media (min-width: 1200px) {
    body {
        font-size: 18px;
    }
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}