*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}
/* navbar */
@media (max-width:768px){
    .navbar .container{
    flex-direction: row;
}
}


/* chatbot */
/* .chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 50px;
    background-color: #25D366;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.chatbot:hover {
    background-color: #128C7E;
} */

/* Container for the chatbot and popup */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Chatbot Button */
.chatbot {
    width: 120px;
    height: 50px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

.chatbot:hover {
    background-color: #128C7E; /* Darker WhatsApp green */
    box-shadow: 0 0 15px #128C7E, 0 0 30px #128C7E, 0 0 45px #128C7E;
    transform: scale(1.1);
}

/* Container for chatbot and popup */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Chatbot Button */
.chatbot {
    width: 120px;
    height: 50px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px #25D366, 0 0 20px #25D366, 0 0 30px #25D366;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

.chatbot:hover {
    background-color: #128C7E; /* Darker WhatsApp green */
    box-shadow: 0 0 15px #128C7E, 0 0 30px #128C7E, 0 0 45px #128C7E;
    transform: scale(1.1);
}

/* Popup Message */
.chat-popup {
    position: absolute;
    bottom: 60px; /* Above the chatbot button */
    right: 0;
    background-color: #ffffff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.5s ease-in-out;
    width: 156px;
    color: blue;
}

/* Close Button */
.chat-popup .close-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-popup .close-btn:hover {
    color: #ff0000; /* Red on hover */
}

/* Fade-in animation for the popup */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}












/* banne */

.section{
    width: 100%;

}
.describe{
    width: 100%;
    height: 90vh;
}

.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
#slideImg{
    width: 100%;
    height: 100vh;
}

.overlay{
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7));
    position: absolute;
    top: 0;

}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    
}

.content h1{
    color: white;
    font-size: 55px;
    margin: 0px;
    font-family: sans-serif;
}

.content p{
    color: white;
    font-size: 22px;
    margin: 0px;
    text-align:center;
    font-family: sans-serif;
    padding: 10px;
}


.zoom-button {
    width: 150px;
    padding: 10px;
    background-color: #FFA500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    animation: zoomInOut 2s infinite ease-in-out; /* Animation applied here */
    
}

/* Define the zoom-in/zoom-out animation */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
}


/* about section */
.section-2{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 70vh;
}



.promo-section {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.promo-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.promo-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

 .buttons {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #FFA500; /* Orange color for button */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 194px;
}

.buttons:hover {
    background-color: #e69500; /* Slightly darker orange on hover */
}

.promo-image {
    flex: 1;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.neon-button {
    width: 180px;
    padding: 15px;
    background-color: pink;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #746b74, 0 0 20px #746b74, 0 0 30px #746b74, 0 0 40px #746b74, 0 0 50px #746b74;
    transition: all 0.3s ease-in-out;
}

.neon-button:hover {
    box-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 25px #ff00ff, 0 0 35px #ff00ff, 0 0 45px #ff00ff;
    transform: scale(1.1);
}

.neon-button:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

/* Animation for glowing effect */
/* @keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff;
    }
    50% {
        box-shadow: 0 0 10px #fff, 0 0 15px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff, 0 0 70px #ff00ff;
    }
    100% {
        box-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff;
    }
} */

.neon-button {
    animation: neonGlow 1.5s infinite alternate;
}

/* Mobile View */
@media (max-width: 768px) {
    .section-2 {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .promo-section {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        border: none;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
    }

    .promo-text {
        padding: 20px;
        font-size: 14px;
    }

    .promo-text h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promo-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .buttons {
        padding: 10px 20px;
        font-size: 14px;
        width: auto;
        max-width: 180px;
    }

    .promo-image {
        display: block;
        width: 100%;
        padding: 10px;
    }

    .promo-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .neon-button {
        width: 150px;
        padding: 12px;
        font-size: 1rem;
        text-align: center;
    }
}






/* section-3 */
.section-3{
  
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    gap: 132px;
    justify-content: center;
    align-items: center;
  }
  
  .flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .flip-card-front {
    background-color: #bbb;
  }
  
  .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .flip-card-back {
    background-color: #333;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  .flip-card-back h3{
    
  
    padding-bottom: 28px;
    font-size: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .flip-card-back p{
    
  
    /* padding-bottom: 28px; */
    font-size: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

/* .vibrate-button{
    color: white;
    position: absolute;
    top: 93px;
    left: 176px;
    width: 108px;
    height: 32px;
    border: 2px solid;
    text-align: center;
    align-items: center;
    
    cursor: pointer; */
    /* border: 2px; */
    /* border-radius: 13px;
} */

/* Vibration Animation */
@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-2px); }
    40%, 80% { transform: translateX(2px); }
  }
  
  /* Button Styling */
  .vibrate-button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background-color: #b3b300;
    color: white;
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 93px;
    left: 179px;
  }
  
  /* Trigger vibration on hover */
  .vibrate-button:hover {
    animation: vibrate 0.3s linear infinite;
  }
  #tap{
position: absolute;
top: 54px;
  }
/* Mobile View */
@media (max-width: 768px) {
    .section-2 {
        flex-direction: column;
        height: auto; /* Adjusting height for mobile */
        padding: 20px;
        border: none; /* Optional, for cleaner look */
    }

    .promo-section {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        border: none; /* Remove border for a better mobile look */
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
    }

    .promo-text {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .promo-text h2 {
        font-size: 20px;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .promo-text p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .buttons {
        padding: 10px 20px;
        font-size: 14px;
        width: auto;
        max-width: 180px;
        background-color: #FFA500; /* Orange color for button */
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .buttons:hover {
        background-color: #e69500; /* Slightly darker orange on hover */
    }

    .promo-image {
        flex: 1;
        overflow: hidden;
        padding: 10px;
    }

    .promo-image img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        object-fit: cover;
    }

    .neon-button {
        width: 150px;
        padding: 12px;
        font-size: 1rem;
        background-color: pink;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #746b74, 0 0 20px #746b74, 0 0 30px #746b74, 0 0 40px #746b74, 0 0 50px #746b74;
        transition: all 0.3s ease-in-out;
    }

    .neon-button:hover {
        box-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 25px #ff00ff, 0 0 35px #ff00ff, 0 0 45px #ff00ff;
        transform: scale(1.1);
    }

    .neon-button:active {
        transform: scale(0.95);
        box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    }
}














  /*  */
  .content-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease; /* Transition for the hover effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-section,
.text-section {
    flex: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.text-section {
    padding: 30px;
}

.text-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.text-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.text-section .zoom-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.text-section .zoom-button a:hover {
    background-color: #0056b3;
}

.content-section:hover {
    transform: scale(1.02); /* Slight zoom effect */
}

/* Hover effects for inner elements */
.content-section:hover .image-section {
    transform: translateX(-10px);
}

.content-section:hover .text-section {
    transform: translateX(10px);
}

/* Responsive design */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        margin: 20px auto;
    }

    .image-section img {
        height: 200px;
        object-fit: cover;
    }

    .text-section {
        padding: 20px;
    }

    .text-section h2 {
        font-size: 20px;
    }

    .text-section p {
        font-size: 14px;
    }

    .text-section .zoom-button a {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .text-section h2 {
        font-size: 18px;
    }

    .text-section p {
        font-size: 13px;
    }

    .text-section .zoom-button a {
        padding: 6px 12px;
        font-size: 12px;
    }
}
@media (max-width:768px) {
.text-section p{
    font-size: 7px;
}    
}





/* mv */
/* Mobile View */
@media (max-width: 768px) {
    .section-3 {
        border: 2px solid;
        height: auto; /* Adjust height for better fit */
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 613px;
    }

    .container {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Reduce gap for smaller screens */
        justify-content: center;
        align-items: center;
    }

    .flip-card {
        background-color: transparent;
        /* width: 90%; Adjust to take most of the screen */
        max-width: 300px; /* Maintain a reasonable max size */
        height: 193px;/* Allow height to adjust */
        perspective: 1000px;
        position: relative;
        top: 6px;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: auto; /* Adjust height */
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
        position: absolute;
        /* width: 100%; */
        width: 49%;
        height: auto; /* Adjust height */
        backface-visibility: hidden;
        border-radius: 10px;
        overflow: hidden;
    }

    .flip-card-front {
        background-color: #bbb;
    }

    .flip-card-front img {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        object-fit: cover;
    }

    .flip-card-back {
        background-color: #333;
        color: white;
        transform: rotateY(180deg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px; /* Adjust padding */
    }

    .flip-card-back h3 {
        padding-bottom: 20px; /* Reduced padding */
        font-size: 24px; /* Adjust font size for readability */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flip-card-back p {
        padding-bottom: 20px; /* Reduced padding */
        font-size: 18px; /* Adjust font size */
        display: flex;
        justify-content: center;
        align-items: center;
    }
}













 /* tsetimonials */
 .testimonials-section {
    width: 80%;
    max-width: 800px;
    text-align: center;
    margin: 50px auto;
    height: 400px;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 1;
    min-width: 100%;
    /* padding: 20px; */
    background-color: #e3dbdb;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgb(206 108 48 / 53%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 300px;
    border-radius: 30px;
}

.testimonial p {
    font-size: 18px;
    color:black;
    margin-bottom: 10px;
    font-family: sans-serif;
    padding-top: 112px;

}

.testimonial h4 {
    font-size: 25px;
    color: black;
    margin-top: 10px;
    font-weight: bold;
}


@media (max-width:768px){
    .testimonials-section{
        transform: translateY(391px);
    }
}

/* Profile picture styling */
.profile-pic {
    width: 126px;
    height: 110px;
    border-radius: 50%;
    position: absolute;
    /* bottom: 11px; */
    right: 332px;
    object-fit: cover;
    top: 10px;
}


/*  */

.programs-section {
    text-align: center;
    max-width: 1200px;
    padding: 20px;
}

.programs-section h2 {
    font-size: 24px;
    margin-bottom: 50px;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program {
    /* background-color: #e8bf17; */
   background:  #9286bb;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 200px;
    /* margin-top: 659px; */
}

.icon {
    font-size: 40px;
    color: #ff4742;
    margin-bottom: 10px;
}

.program h3 {
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    color: white;
}

.program p {
    font-size: 16px;
    color: white;
}
.FITNESSPROGRAMS{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-container {
        grid-template-columns: repeat(2, 1fr);
        
    }
    .FITNESSPROGRAMS{
        transform: translateY(-4PX);
    }
    .program{
        height: 259px;
    }
}

@media (max-width: 480px) {
    /* .programs-container {
        grid-template-columns: 1fr;
       
    } */

    .programs-section h2 {
        font-size: 20px;
    }

    .program h3 {
        font-size: 16px;
    }

    .program p {
        font-size: 13px;
    }


    .programs-section{
        transform: translateY(217px);
    }
}



/*  */


/* Slider Section */
.slider-section {
    width: 100%;
    /* max-width: 1200px; */
    position: relative;
    overflow: hidden;
}

.schedule-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4742;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80vh;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.slider-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    color: #fff;
}

.slider-overlay h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.action-btn {
    background-color: #ff4742;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider {
        height: 300px;
    }
    .slider-section{
        transform: translateY(442px);
    }

    .slide {
        height: 300px;
    }

    .schedule-btn {
        font-size: 14px;
        padding: 8px 16px;
           
    }

    .slider-overlay h2 {
        font-size: 20px;
    }

    .action-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 200px;
    }

    .slide {
        height: 200px;
        /* margin-top: 684px; */
    }

    .slider-overlay h2 {
        font-size: 18px;
    }

    .action-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* footer */
footer {
   
    /* background-color:#0d152e; */
    background-color: #0f1f50;
    color: #fff;
    padding: 20px 0;
    /* margin-top: 10px; */
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.footer-left,
.footer-middle,
.footer-right {
    width: 22%;
}

.footer-left h2 {
    color: white;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-left button {
    background-color: #ffa500;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-middle h3,
.footer-right h3 {
    margin-bottom: 10px;
    /* color:white; */
    color: bluevolet;
 font-size: 30px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a,
.footer-right ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bolder;
    font-family: sans-serif;
    font-size: medium;
}

.footer-right p {
    margin: 5px 0;
}

.footer-right .social-media a {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 10px 50px;
    background-color: #0f1f50;
    text-align: center;
    ;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .payment-icons img {
    margin-right: 10px;
}
.link{
    width: 11%;
    height: 100%;
}
.face{
    width: 11%;
    height: 100%;
}
.social{
    width: 12%;
    height: 100%;
}
.twitt{
    width: 11%;
    height: 100%;
}
.youtube{
    width: 11%;
    height: 100%;
}
.visa{
    width: 19%;
    height: 42%;
}
.master{
    width: 30%;
    height: 42%;
}
.discover{
    width: 40px;
    object-fit: contain;
}
.paypal{
   /* width: 19%;
    height: 42%;*/
    width: 31%;
    height: 42%;
    padding-top: 13px;
}
.payment-icons{
    display: flex;
    width: 20%;
    height: 20%;
}
.email{
    width: 8%;
    display: none;
}
.tele{
    width: 8%;
    display: none;
}
.clock{
    width: 8%;
    display: none;
}
.accept{
    padding-top: 18px;
    padding-left: 424px;
}
.crystal{
    padding-top: 20px;
}
.Emailfirst{
    
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.clockthird{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.telephonesecond{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.li{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.li img{
   
    border-radius: 30px;
    box-shadow: 10px ;
}
.li1{
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.li1 img{
    width: 80%;
    height: 200%;
    border-radius: 30px;
    box-shadow: 10px ;
}
.li img{
    width: 80%;
    height: 200%;
} 
.block{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.aboutus{
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0px;
}
.outer-section{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 3px 0px;
}


/* mobile view */
/* Mobile View */
@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #111;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 2;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
    }

    .nav-menu li a {
        padding: 10px;
        font-size: 18px;
        display: block;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: white;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .chatbot-container {
        bottom: 20px;
        right: 6px;
        z-index: 1000;
    }

    .chatbot {
        width: 100px;
        height: 40px;
        font-size: 0.9rem;
    }

    .chat-popup {
        width: 100px;
        bottom: 60px;
        font-size: 0.8rem;
    }

    /* Banner adjustments */
    .banner {
        height: auto;
        /* padding: 10px; */
    }

    .slider {
        height: auto;
    }

    /* .overlay {
        
    } */

    .content {
        padding: 20px;
        text-align: center;
    }

    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .zoom-button {
        width: 130px;
        font-size: 0.9rem;
    }

    /* About section adjustments */
    .section-2 {
        padding: 15px;
    }

    .promo-section {
        flex-direction: column;
        padding: 15px;
    }

    .promo-text {
        text-align: center;
    }

    .promo-text h2 {
        font-size: 20px;
    }

    .promo-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .buttons {
        width: 150px;
        font-size: 14px;
    }

    .promo-image img {
        width: 100%;
        height: auto;
    }

    /* Neon button */
    .neon-button {
        width: 150px;
        font-size: 1rem;
        padding: 10px;
    }

    /* Section 3 adjustments */
    .section-3 {
        flex-direction: column;
        padding: 15px 0;
    }
}

/* Mobile View for Footer */
@media (max-width: 768px) {
    footer {
        padding: 10px 0;
        transform: translateY(346PX);
    }

    .footer-container {
        flex-direction: column; /* Stacks sections vertically */
        padding: 10px 20px;
        align-items: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%; /* Full width for better spacing */
        margin-bottom: 20px; /* Adds spacing between sections */
        text-align: center; /* Centers content */
    }

    .footer-left h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-left p {
        font-size: 12px;
    }

    .footer-left button {
        width: 80%; /* Adjusts button width for smaller screens */
        padding: 8px;
        font-size: 14px;
    }

    .footer-middle h3,
    .footer-right h3 {
        font-size: 24px;
    }

    .footer-middle ul,
    .footer-right ul {
        padding: 0;
        text-align: center;
    }

    .footer-middle ul li,
    .footer-right ul li {
        margin-bottom: 8px;
    }

    .footer-middle ul li a,
    .footer-right ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column; /* Stacks elements vertically */
        padding: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .payment-icons {
        justify-content: center; /* Centers payment icons */
        width: 100%;
        margin-top: 10px;
    }

    .payment-icons img {
        width: 40px;
        height: auto; /* Maintains aspect ratio */
        margin-right: 5px;
    }

    .social-media a {
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    /* Adjustments for additional sections */
    .block {
        width: 100%;
        margin-bottom: 10px;
    }

    .aboutus {
        font-size: 24px;
        text-align: center;
    }

    .outer-section {
        height: auto;
        flex-direction: column;
    }
}