bodyform {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    
}

.email-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-container p {
    margin-bottom: 30px;
    color: #555;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .form-container {
        padding: 15px 30px;
    }

    .form-container h2 {
        font-size: 20px;
    }

    .form-container p {
        font-size: 14px;
    }
}

* {
    box-sizing: border-box;
}

bodygaleri {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
}

.gallery-container {
    position: relative;
    width: 70%;
    max-width: 800px;
    overflow: hidden;
    border: 5px solid #ddd;
    border-radius: 10px;
}

.gallery-frame {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    min-width: 100%;
    height: auto;
    transition: opacity 1s ease-in-out;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

pfaq  {
    color: black;
    font-family: Poppins;
    font-size: 100%;
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 0;
    margin-right: 0;
  }


bodyfaq {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f6f9;
}

.faq-section {
    max-width: 900px;
    margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.faq-section:hover {
    transform: translateY(-10px);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #444;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-container {
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 10px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    border-color: #007BFF;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 20px;
    margin: 0;
}

.faq-question .icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 0 20px;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 0;
    color: #555;
}


.faq-item.active .faq-answer {
    max-height: 100%;
    background-color: #f1f1f1;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .faq-question h3 {
        font-size: 18px;
    }
}

/* Styling Footer */
footer {
    background-color: #B9D0E5;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    margin: 0;
    color: #BC4357;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-info p {
        text-align: right;
    }
}
