/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Global Font Style */
body {
    font-family: Arial, sans-serif;
    background-color: #e1f5e2 !important;
    margin: 0;
    padding: 0;
}
/* About Section Styling */
.about-section {
    background-color:  #e1f5e2; /* Light Background */
    padding: 60px 20px;
}



.section-title {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    color: #155724; /* Dark green for Ayurvedic theme */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}


/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Image Styling */
.about-img {
    max-width: 100%;
    display: block;
    margin: 25px 5px 5px 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
/* Section Text Styling */
.section-text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.5px;
}

/* Button Styling */
.btn-explore {
    background-color: #075f27; /* WhatsApp Green */
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-explore:hover {
    background-color: #1EBE57;
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section {
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }

    .section-text {
        font-size: 16px;
    }

    .btn-success {
        font-size: 16px;
    }
}

.col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-lg-6 .border {
    width: 100%;
    max-width: 500px; /* Adjust max-width as needed */
    padding: 10px;
}

.col-lg-6 iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Maintain video aspect ratio */
    border: 10px solid black;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .col-lg-6 iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .col-lg-6 iframe {
        height: 250px;
    }
}
  
  
 