/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4F4F4;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
header {
    background-color: #504B38; /* Deep forest green */
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem 1rem;
}

nav ul li a {
    color: #EBE5C2; /* Light cream text */
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #B9B28A; /* Soft green hover effect */
    color: #504B38;
}

nav ul li a.home-button {
    background-color: #EBE5C2; /* Gold color for home button */
    color: #504B38;
}

nav ul li a.home-button:hover {
    background-color: #B9B28A; /* Darker gold on hover */
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh; /* Use the taller height for a more impactful hero section */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken the image for better text visibility */
    z-index: -1; /* Ensure the image stays behind the overlay */
}


.cta-button {
    background-color: #B9B28A; /* Gold button */
    color: #504B38; /* Dark green text */
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #B9B28A; /* Darker gold on hover */
}

/* Main Content Section */
.content {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.content h2 {
    font-size: 2.5rem;
    color: #504B38;
    margin-bottom: 1.5rem;
}

.content p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: auto;
}

.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin: 1rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2rem;
    color: #504B38;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    color: #504B38;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: #555;
}

/* Call to Action Section */
.cta {
    background-color: #504B38;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin: 2rem 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
 /* flip image  */
 .container1 {
    background-color: #B9B28A;
    display: flex;
    flex-direction: column; /* Align items vertically */
    /* justify-content: center; */
    align-items: center;
    height: 90vh;
    perspective: 1000px;
}

.flip-card {
    width: 300px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

.flip-card.flipped {
    justify-content: center;
    
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 200%; 
    height: auto; 
    backface-visibility: hidden;
    display: flex;
    flex-direction: column; /* Keep your existing column alignment */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    border-radius: 10px;
}

.flip-card-back {
    height: auto;
    background-color: #504B38;
    color: white;
    transform: rotateY(180deg);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flip-card {
        width: 250px;
        height: 150px;
    }

    .flip-card-back h4 {
        font-size: 18px;
    }

    .flip-card-back p {
        font-size: 14px;
    }
}
/* Footer */
footer {
    background-color: #504B38;
    padding: 2rem;
    text-align: center;
    color: #EBE5C2;
}

footer h3 {
    color: #B9B28A;
    margin-bottom: 1rem;
}

footer form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

footer input[type="email"] {
    padding: 0.5rem;
    border: 1px solid #B9B28A;
    border-radius: 4px;
    background-color: #F8F3D9;
    color: #504B38;
}

footer button {
    padding: 0.5rem 1rem;
    background-color: #B9B28A;
    border: none;
    border-radius: 4px;
    color: #504B38;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer button:hover {
    background-color: #B9B28A;
}
/* Additional styles for the Contact Us page */
.contact-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #B9B28A;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #B9B28A;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-info p {
    margin: 5px 0;
    color: #555;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .contact-form button {
        font-size: 14px;
    }
}

footer p {
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card {
        width: 100%;
        margin: 1rem 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}


/* Custom Styles By Sruthy */

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }