/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #2f2f2f;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: #f5f5f5;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.nav-menu {
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #f5a623;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
  
}

.nav-link {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #2f2f2f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f5a623;
    text-shadow: 0 0 10px #f5a623;
}

.header-icons {
    display: flex;
    gap: 1rem;
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #f5a623;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon:hover {
    box-shadow: 0 0 10px #f5a623;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 49px;
        min-width: 350px;
        right: -27px;
        height: 100vh;
        /* left: -100%; */
        background: #f5f5f5;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transform: rotate(0);
    }
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-menu.active .bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-menu.active .bar-2 {
        opacity: 0;
    }
    .nav-menu.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-button:hover {
    box-shadow: 0 0 15px #f5a623;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.play-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f5f5f5;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #f5a623;
    text-align: center;
    margin-bottom: 2rem;
}

.about-container {
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    flex: 1;

    max-width: 550px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    text-align: center;
}

.about-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 150px;
    animation: popIn 0.5s ease forwards;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-icon {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: block;
    width: 40px;
    height: 40px;
    background-color: #f5a623;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.stat-card h4 {
    font-size: 1rem;
    color: #f5a623;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    .about-text {
        text-align: left;
        padding-left: 2rem;
    }
    .about-stats {
        justify-content: flex-start;
    }
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background: #2f2f2f;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #f5a623;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f5f5f5;
}

.filter-menu {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-button {
    padding: 0.5rem 1rem;
    background: #2f2f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active, .filter-button:hover {
    background: #f5a623;
    box-shadow: 0 0 10px #f5a623;
}

.services-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 0 0 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 0 15px #f5a623;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.service-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #f5a623;
    margin: 0.5rem 0;
}

@media (min-width: 768px) {
    .services-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Discount Section */
.discount {
    padding: 4rem 0;
  
    text-align: center;
    position: relative;
}

.discount::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.7);
}

.discount .container {
    position: relative;
}

.discount-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.discount-button:hover {
    box-shadow: 0 0 15px #f5a623;
    animation: drip 0.5s forwards;
}

@keyframes drip {
    0% {
        box-shadow: 0 0 0 #f5a623;
    }
    100% {
        box-shadow: 0 10px 15px #f5a623;
    }
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #f5f5f5;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #f5a623;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover img {
    border: 3px solid #f5a623;
}

.team-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #f5a623;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Special Section */
.special {
    padding: 4rem 0;
    background: #2f2f2f;
    color: #fff;
}

.special-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.special-content {

    padding: 0 15px;
    margin-right: auto;
 
}
.special-content p{
    text-align: center;
}
.special-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.special-button {
    padding: 0.5rem 1rem;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pacifico', cursive;
    transition: all 0.3s ease;
}

.special-button:hover {
    box-shadow: 0 0 10px #f5a623;
    animation: drip 0.5s forwards;
}

.special-image {
   width: 50%;
}

.special-image img {
    width: 100%;
 
    border-radius: 0px;
}

@media (min-width: 768px) {
    .special-container {
        flex-direction: row;
        align-items: center;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
    background: #f5f5f5;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 0 15px #f5a623;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 10%;
    transform: translateX(-10%);
    font-size: 12rem;
    color: #f5a623;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
}

.testimonial-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #f5a623;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accordion Section */
.accordion {
    padding: 4rem 0;
    background: #2f2f2f;
    color: #fff;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: #f5a623;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: left;
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #e69500;
}

.accordion-content {
    display: none;
    padding: 1rem;
    background: #f5f5f5;
    color: #333;
    border-radius: 0 0 5px 5px;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Events Section */
.events {
    padding: 4rem 0;
    background: #f5f5f5;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background: #fff;
    padding: 0 0 1rem;
    /* border-radius: 5px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 5px solid #f5a623;
}
.event-card:hover {
    box-shadow: 0 0 15px #f5a623;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
}

.event-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #f5a623;
    margin: 0.5rem 0;
}

.event-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pacifico', cursive;
    transition: all 0.3s ease;
}

.event-button:hover {
    box-shadow: 0 0 10px #f5a623;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #2f2f2f;
    color: #fff;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    box-shadow: 0 0 15px #f5a623;
}

/* Footer */
.footer {
    background: #2f2f2f;
    color: #fff;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #f5a623;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #f5a623;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 2px solid #f5a623;
    border-radius: 5px;
    background: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
}

.newsletter-button {
    padding: 0.5rem;
    background-color: #f5a623;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Pacifico', cursive;
    font-size: 1rem;
}

.newsletter-button:hover {
    box-shadow: 0 0 10px #f5a623;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #666;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    .newsletter-form {
        flex-direction: row;
    }
}

html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .special-image {
        width: 100%;
    }
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}