/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oxygen', sans-serif;
    line-height: 1.6;
}


header {
  
  
    color: white;
    text-align: center;
}
/* About Us Section */
.about-section {
    padding: 4rem 1rem;
    background: #f9f9f9;
    font-family: 'Oxygen', sans-serif;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease-in-out;
}

.about-section .text-content {
    flex: 1;
    margin-right: 2rem;
}

.about-section .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 2s ease-in-out;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-list {
    list-style: none;
    padding: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.services-list li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.services-list li i {
    margin-right: 1rem;
    color: #007BFF; /* Change the color to match your design */
}

@media (max-width: 768px) {
    .about-section .about-content {
        flex-direction: column;
    }

    .about-section .text-content {
        margin-right: 0;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .services-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add this at the end of your existing CSS */

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0; /* Ensure bubbles are behind the text */
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    animation: rise 10s infinite ease-in-out;
    opacity: 0;
}

.bubble:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.bubble:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.bubble:nth-child(5) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 9s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(1);
        opacity: 0;
    }
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
   /* Adjusted to account for the top bar */
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

#menu-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0a500;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.banner {
    position: relative;
    width: 100%;
   
    overflow: hidden;


    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
   
    


}

.banner-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('tp.jpg');
    background-size: cover;
    background-position: center;
    animation: slideShow 15s infinite;
}

@keyframes slideShow {
    0% { background-image: url('tp.jpg'); }
    33% { background-image: url('111.jpg'); }
    66% { background-image: url('a1.jpg'); }
    100% { background-image: url('j1.jpg'); }
}

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -40px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rise 5s infinite ease-in-out;
}

@keyframes rise {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Adjusting bubble animations */
.bubble:nth-child(1) {
    left: 20%;
    animation-duration: 6s;
}

.bubble:nth-child(2) {
    left: 40%;
    animation-duration: 8s;
}

.bubble:nth-child(3) {
    left: 60%;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    left: 80%;
    animation-duration: 7s;
}

.bubble:nth-child(5) {
    left: 25%;
    animation-duration: 9s;
}

.bubble:nth-child(6) {
    left: 50%;
    animation-duration: 6.5s;
}

.bubble:nth-child(7) {
    left: 75%;
    animation-duration: 8.5s;
}

.bubble:nth-child(8) {
    left: 15%;
    animation-duration: 11s;
}

.package-section {
    padding: 2rem 0;
    background: white;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
}

.package-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-content {
    max-width: 600px;
    padding: 1rem;
}

.text-content h2 {
    font-size: 2rem;
    color: #f0a500;
    margin-bottom: 1rem;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
    margin-bottom: 1rem;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.services-list i {
    color: #f0a500;
    margin-right: 0.5rem;
}
.session-time {
    margin-bottom: 1rem;
}

.session-time h3, .text-content h3 {
    margin-bottom: 0.5rem;
}
.package-fee {
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.package-fee p {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.package-fees {
    display: flex;
    flex-direction: column;
}



.package-fee i {
    font-size: 2rem;
    margin-right: 1rem;
}

.fee-details {
    display: flex;
    flex-direction: column;
    
}


.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #25D366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.whatsapp-button i {
    margin-right: 0.5rem;
}

.whatsapp-button:hover {
    background: #1ebe56;
}
.directions-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.directions-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.direction-item {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direction-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.direction-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.direction-content {
    padding: 15px;
    text-align: center;
}

.direction-content h4 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.direction-content hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

.direction-content p {
    font-size: 1em;
    color: #666;
    margin: 0;
}
/* Add gap on page sides */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Center the title and modify style */
.title {
    text-align: center;
    font-size: 2em; /* Adjust the size as needed */
    font-weight: bold; /* Or any other style modifications */
    margin-bottom: 20px; /* Adds some space below the title */
}

/* Footer styles */
.site-footer {
    background: linear-gradient(to right, #000000, #0c0c0c);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Oxygen', sans-serif;  /* Add this line */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column p, .footer-column ul {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #1abc9c;
}

.social-links a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1abc9c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    width: 80%;
    max-width: 300px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #1abc9c;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #16a085;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px; /* height of the nav bar */
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        padding: 1rem;
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

   

    .dropdown-content {
        position: static;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn::after {
        content: '\25BC';
        font-size: 0.6em;
        margin-left: 0.5em;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn:focus + .dropdown-content {
        display: block;
    }
}
/* Call Now Button Styles */
.call-now a {
    background-color: #e59400;/* Change this to your desired color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-now a:hover {
    background: #ba7600; /* Change this to your desired hover color */
}
