* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #e0e7ff 0%, #c3dafe 100%);
    color: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.burgeron {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burgeron span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #ff6b6b;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* heracli Section */
.heracli {
    height: 100vh;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.heracli-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.heracli-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.heracli-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.heracli-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #feca57, #ff6b6b);
}

.heracli .social-icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.heracli .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.heracli .social-icons a:hover {
    transform: rotate(360deg);
}

/* abouton Section */
.abouton {
    padding: 100px 20px;
    text-align: center;
}

.abouton h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.abouton-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.abouton-block {

    padding: 30px;
    border-radius: 15px;

    position: relative;
    transition: transform 0.5s;
}

.abouton-block:nth-child(1) {
    transform: translateX(-20px);
}

.abouton-block:nth-child(2) {
    transform: translateY(20px);
}

.abouton-block img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    object-fit: cover;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.abouton-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.progress-bar {
    background: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    animation: fill 2s ease-in-out;
}

/* servuces Section */
.servuces {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
    text-align: center;
}

.servuces h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.servuces-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    justify-content: center;
}

.service-card {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: rotate(360deg);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Experience Section */
.experience {
    padding: 100px 20px;
    text-align: center;
}

.experience h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}


.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) .content {
    order: -1;
    text-align: right;
}

.timeline-item .year {
    width: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b97ff;
}

.timeline-item .content {
    width: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.timeline-item .content:hover {
    transform: scale(1.05);
}

.timeline-item .content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0px;
    text-align: center;
}

.portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.portfolio-grid {
    display: flex;
 
    gap: 0px;
    max-width: 100%;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;

   flex: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;

}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    text-align: center;
}

.pricing h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.pricing-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    color: #fff;
}

.testimonial.active {
    display: block;
}

.testimonial img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #fff;
    transition: border-color 0.3s;
}

.testimonial img:hover {
    border-color: #feca57;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
}

/* Team Section */
.team {
    padding: 100px 20px;
    text-align: center;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member .social-icons a {
    color: #ff6b6b;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.team-member .social-icons a:hover {
    transform: rotate(360deg);
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    text-align: center;
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-title {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ff6b6b;
    position: relative;
}

.accordion-title::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.accordion-title.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-content.active {
    display: block;
}

/* Events Section */
.events {
    padding: 100px 20px;
    text-align: center;
}

.events h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.events-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event-card {

    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-card p {
    margin-bottom: 10px;
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    text-align: center;
}

.blog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b6b;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: filter 0.3s;
}

.blog-post:hover img {
    filter: brightness(70%);
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.contact p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-info {
    margin-top: 50px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 50px;
}

.footer-menu ul,
.footer-links ul {
    list-style: none;
}

.footer-menu ul li,
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a,
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu ul li a:hover,
.footer-links ul li a:hover {
    color: #feca57;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fill {
    from { width: 0; }
    to { width: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    .burgeron {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 20px 0;
    }

    .heracli-content h1 {
        font-size: 2.5rem;
    }

    .heracli-content p {
        font-size: 1rem;
    }

    .abouton-block {
        width: 100%;
        transform: none !important;
    }

    .servuces-slider {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item .year,
    .timeline-item .content {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-item .content {
        margin-left: 0px;
        text-align: left;
    }
    .portfolio-grid{
        flex-direction: column;
    }
    .timeline-item:nth-child(even) .content {
        order: 0;
        text-align: left;
    }
    .event-card img {
        width: 100%;
        height: fit-content;
        object-fit: cover;
        max-height: 250px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
}
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) {
    .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;
}