* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #e6faf7 0%, #d5f5f2 100%);
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    padding: 7px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #e74c3c;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

.burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 61px;
        right: 0;
        height: 100vh;
        width: 200px;
        background: linear-gradient(45deg, #2c3e50, #3498db);
        padding: 20px;
        border-radius: 0px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .burger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100%;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
   
}

.hero-content .button {
    background: #e74c3c;
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-content .button:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 18px;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.about h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-item {
    padding: 20px;
    display: flex
;
flex-direction: column;
justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s;
    align-items: center;
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.about-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-item p {
    color: #666;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        align-items: center;
    }

    .about-item {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 18px;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.services h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
   
}

.service-item {
    /* background: #fff; */
    /* padding: 20px; */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
}
.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border-radius: 10px; */
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
}

.slider-service {
    grid-column: span 2;
}

.service-slider {
    width: 100%;
    height: 250px;
    position: relative;
}

.service-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.service-slide.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .slider-service {
        grid-column: span 1;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 18px;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.contact h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-content {
    display: flex
;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    width: 90%;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    height: 100px;
}

.contact .button {
    background: #e74c3c;
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact .button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        text-align: center;
    }
}

/* Accordion Section */
.accordion-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: #fff;
}

.accordion-section h2 {
    font-size: 18px;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.accordion-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-title {
    background: #e74c3c;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title::after {
    content: '+';
    font-size: 20px;
}

.accordion-title.active::after {
    content: '-';
}

.accordion-content {
    background: #fff;
    color: #333;
    padding: 15px;
    display: none;
    font-size: 16px;
}

/* Events Section */
.events {
    padding: 80px 0;
    text-align: center;
}

.events h2 {
    font-size: 18px;
    color: #e74c3c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.events h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.events-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.event-item {
    width: 48%;
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
}
.event-item:hover {
    transform: translateY(-10px);
}

.event-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-item p {
    color: #666;
}

@media (max-width: 768px) {
    .events-grid {
        flex-direction: column;
    }

    .event-item {
        width: 100%;
    }
}

/* Footer */
footer {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-item p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-item ul {
    list-style: none;
}

.footer-item ul li {
    margin-bottom: 10px;
}

.footer-item a {
    color: #e74c3c;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #e74c3c;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-links a {
    color: #e74c3c;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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) {
    .hero-content h1 {
        font-size: 36px;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 20px;
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    .about-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .about-grid {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .about-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 0px;
        margin-bottom: 20px;
    }
    .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;
}