/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7fafc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #9f7aea, #4299e1);
    padding: .5rem 0;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 48px;
}

.nav-menu {
  
  
}

.nav-list {
    display: flex;
    gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    background-color: #805ad5;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #6b46c1;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8.5rem 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #9f7aea;
    color: white;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #805ad5;
}

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    background-color: #a0aec0;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white !important;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #9f7aea;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-block-reverse {
    flex-direction: column-reverse;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    text-align: center;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9f7aea;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .about-block {
        flex-direction: row;
    }
    .about-block-reverse {
        flex-direction: row-reverse;
    }
    .about-image, .about-text {
        width: 50%;
    }
    .about-text {
        text-align: left;
        padding: 0 2rem;
    }
}

/* Service Section */
.service {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-block {
    position: relative;

    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-image-placeholder {
    width: 19px;
    height: 19px;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #a065cd;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #9f7aea;
    margin-bottom: 0.5rem;
}

.service-slider-container {
    margin-top: 3rem;
}

.service-slider-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #9f7aea;
    margin-bottom: 1.5rem;
}

.slider {
    display: flex
;
    gap: 1rem;
    width: 100%;
    /* overflow-x: auto; */
    overflow: hidden;
    /* scrollbar-width: thin; */
    /* scrollbar-color: #9f7aea #edf2f7; */
}
.slider::-webkit-scrollbar {
    height: 8px;
}

.slider::-webkit-scrollbar-track {
    background: #edf2f7;
}

.slider::-webkit-scrollbar-thumb {
    background-color: #9f7aea;
    border-radius: 20px;
}

.slider-item {
    position: relative;
  flex: 1;
 
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.slider-item .service-image-placeholder {
    width: 150px;
    height: 21px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #a065cd;
    border-radius: 50%;
    margin: 0 auto 1rem;
}
@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.contact-text {
    margin-bottom: 1.5rem;
}

.contact-button-container {
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #9f7aea;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #805ad5;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 20px;
}

/* Accordion Section */
.faq {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-summary {
    font-size: 1.125rem;
    font-weight: 600;
    color: #9f7aea;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-summary::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item[open] .accordion-summary::after {
    content: '−';
}

.accordion-content {
    margin-top: 0.5rem;
}

/* Events Section */
.events {
    padding: 4rem 0;
    background-color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-image-placeholder {
    width: 100%;
    height: 160px;
    background-color: #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #9f7aea;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to right, #9f7aea, #4299e1);
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
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;
}
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    .slider {
        display: flex
    ;
        gap: 1rem;
        width: 100%;
        /* overflow-x: auto; */
        overflow: hidden;
        /* scrollbar-width: thin; */
        /* scrollbar-color: #9f7aea #edf2f7; */
        flex-direction: column;
    }
    .slider-item {
        position: relative;
        flex: 1;
        overflow: hidden;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .slider {
        display: flex
    ;
        gap: 3rem;
        width: 100%;
        /* overflow-x: auto; */
        overflow: hidden;
        /* scrollbar-width: thin; */
        /* scrollbar-color: #9f7aea #edf2f7; */
        flex-direction: column;
    }
    .header-container {
        display: flex
    ;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}