/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1A2526, #2A3435);
    color: #FFFFFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1A2526;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
}

.nav__item {
    margin-left: 30px;
}

.nav__item a {
    color: #00D4FF;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
    text-shadow: 0 0 5px #00D4FF;
}

.nav__item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FF007A;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav__item a:hover::after {
    width: 100%;
}

.burgeron {
    display: none;
    cursor: pointer;
}

.burgeron span,
.burgeron span::before,
.burgeron span::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #00D4FF;
    position: relative;
    box-shadow: 0 0 5px #00D4FF;
}

.burgeron span::before,
.burgeron span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #00D4FF;
    box-shadow: 0 0 5px #00D4FF;
}

.burgeron span::before {
    top: -8px;
}

.burgeron span::after {
    bottom: -8px;
}

/* heracli Section */
.heracli {
    position: relative;
 
}

.heracli__slider {
    position: relative;
    height: 100%;
}

.heracli__slide {
    width: 100%;
    height: 100%;
    display: flex
;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    align-items: center;
    justify-content: center;
}

.heracli__slide.active {
    opacity: 1;
}



.heracli h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00D4FF, 0 0 20px #FF007A;
}

.heracli p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00D4FF;
    color: #1A2526;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px #00D4FF;
}

.btn:hover {
    background-color: #FF007A;
    box-shadow: 0 0 20px #FF007A;
}

.slider__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: #00D4FF;
    cursor: pointer;
    padding: 10px;
    text-shadow: 0 0 5px #00D4FF;
}

/* abouton Section */
.abouton {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3435, #1A2526);
}

.abouton h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.abouton h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.abouton__inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.abouton__item {
    background-color: #2A3435;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 100%;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s;
}

.abouton__item:hover {
    transform: translateY(-10px);
}

.abouton__item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.abouton__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #FF007A;
    margin-bottom: 10px;
}

.abouton__item p {
    color: #CCCCCC;
}

/* servuces Section */
.servuces {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2526, #2A3435);
}

.servuces h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.servuces h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.servuces__slider {
    position: relative;
    overflow: hidden;
}

.servuces__item {
    background-color: #2A3435;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 1;
}

.servuces__item.active {
    opacity: 1;
}

.servuces__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #FF007A;
}

.servuces__item img {
    max-width: 300px;
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 20px;
}

.servuces__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #00D4FF;
    margin-bottom: 10px;
}

.servuces__item p {
    color: #CCCCCC;
    margin-bottom: 20px;
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3435, #1A2526);
}

.why-choose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.why-choose h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.why-choose__inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-choose__img img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.why-choose__content p {
    color: #CCCCCC;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #FF007A;
    margin-bottom: 10px;
}

.stat p {
    color: #00D4FF;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2526, #2A3435);
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.testimonials h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonials__item {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #2A3435;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.testimonials__item.active {
    opacity: 1;
}

.testimonials__item p {
    font-style: italic;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.testimonials__item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #FF007A;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3435, #1A2526);
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.team h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team__item {
    text-align: center;
    background-color: #2A3435;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: box-shadow 0.3s;
}

.team__item:hover {
    box-shadow: 0 0 20px #FF007A;
}

.team__item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #00D4FF;
    margin-bottom: 10px;
}

.team__item p {
    font-size: 14px;
    color: #CCCCCC;
}

/* FAQ Section (Accordion) */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2526, #2A3435);
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.faq h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.accordion__item {
    margin-bottom: 10px;
}

.accordion__header {
    background-color: #2A3435;
    color: #00D4FF;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.accordion__header:hover {
    background-color: #FF007A;
    color: #FFFFFF;
}

.accordion__content {
    display: none;
    background-color: #2A3435;
    padding: 15px;
    border-radius: 5px;
    color: #CCCCCC;
}

.accordion__content.active {
    display: block;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3435, #1A2526);
}

.events h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.events h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.event__item {
    background-color: #2A3435;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s;
}

.event__item:hover {
    transform: translateY(-10px);
}

.event__item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.event__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #00D4FF;
    margin-bottom: 10px;
}

.event__item p {
    color: #CCCCCC;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2526, #2A3435);
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.contact h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact p {
    text-align: center;
    margin-bottom: 50px;
    color: #CCCCCC;
}

.contact__inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #FF007A;
    margin-bottom: 20px;
}

.contact__info p {
    text-align: left;
    margin-bottom: 10px;
    color: #CCCCCC;
}
.contact__inner {
    justify-content: center;
}
.contact__form {
    text-align: center;
}
.contact__form form{
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
input {
    outline: none;
    padding: 20px;
    background-color: transparent;
    border: 3px solid #FF007A;
}
.contact__form .btn {
    box-shadow: 0 0 15px #00D4FF;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3435, #1A2526);
}

.blog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #00D4FF;
    text-shadow: 0 0 10px #00D4FF;
}

.blog h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #FF007A;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.blog__item {
    background-color: #2A3435;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s;
}

.blog__item:hover {
    transform: translateY(-10px);
}

.blog__item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #00D4FF;
    margin-bottom: 10px;
}

.blog__item p {
    color: #CCCCCC;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #00D4FF, #FF007A);
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1A2526;
    margin-bottom: 20px;
}

.cta p {
    color: #1A2526;
    margin-bottom: 30px;
}

.cta .btn {
    background-color: #1A2526;
    color: #00D4FF;
}

.cta .btn:hover {
    background-color: #2A3435;
    box-shadow: 0 0 20px #00D4FF;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A2526, #2A3435);
    padding: 50px 0;
    border-top: 2px solid #00D4FF;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #FF007A;
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex
;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer__col li {
    margin-bottom: 10px;
}

.footer__col a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 0 0 5px #00D4FF;
}

.footer__col a:hover {
    color: #FF007A;
}

.newsletter__form {
    display: flex;
    gap: 10px;
}

.newsletter__form input {
    padding: 10px;
    border: 1px solid #00D4FF;
    border-radius: 5px;
    background-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 0 5px #00D4FF;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2A3435;
}

/* Responsive */
@media (max-width: 768px) {
    .nav__list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1A2526;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav__list.active {
        display: flex;
    }

    .nav__item {
        margin: 10px 0;
    }

    .burgeron {
        display: block;
    }

    .abouton__inner {
        flex-direction: column;
    }

    .why-choose__inner {
        flex-direction: column;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .events__grid {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        flex-direction: column;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
    }
    .why-choose__img img {
        max-width: 400px;
        border-radius: 10px;
        width: 100%;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    gap: 20px;
    display: flex;
}
.f-col{
    display: flex;
    gap: 20px;
   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) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}