* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #bbb96070;
  
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(90deg, #1a1a1a, #333);
    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 {
    position: relative;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    transform: skewX(-10deg);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    transform: scale(1.1);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: transform 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: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, #1a1a1a, #333);
        padding: 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        transform: none;
    }

    .nav-menu a {
        display: block;
        text-align: center;
    }

    .burger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100%;
    margin-top: 61px;
    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: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #fff;
    border: 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: #ffcc00;
    font-family: 'Montserrat', sans-serif;
}

.about h3 {
    font-size: 36px;
    margin: 20px 0;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.about-item {
    width: 30%;
    background: #fff;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.about-item:nth-child(2) {
    transform: rotate(5deg);
}

.about-item:nth-child(3) {
    transform: rotate(-2deg);
}

.about-item:hover {
    transform: rotate(0deg);
}

.about-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 20px;
}

.about-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-item p {
    color: #666;
    padding:0 20px 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 18px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
}

.services h3 {
    font-size: 36px;
    margin: 20px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    /* background: #fff; */
    padding: 0;
    /* 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: 250px;
    object-fit: cover;
    border-radius: 0px;
}

.service-item h4 {
    font-size: 24px;
    margin: 20px 0;
}

.service-item p {
    color: #141414;
    padding: 0 20px 20px;
}

.slider-service {
    position: relative;
}

.service-slider {
    width: 100%;
    height: 100%;
    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: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact h2 {
    font-size: 18px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
}

.contact h3 {
    font-size: 48px;
    color: #fff;
    margin: 20px 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.contact-info {
    width: 50%;
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 20px 35px;
    border-radius: 50px;
    display: block;
    height: fit-content;
    line-height: 100%;
    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, #1a1a1a, #333);
    color: #fff;
}

.accordion-section h2 {
    font-size: 18px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
}

.accordion-section h3 {
    font-size: 36px;
    margin: 20px 0;
}

.accordion {
    margin-top: 40px;
    max-width: 800px;
    margin: 40px auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-title {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title::after {
    content: '+';
    font-size: 24px;
}

.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: #ffcc00;
    font-family: 'Montserrat', sans-serif;
}

.events h3 {
    font-size: 36px;
    margin: 20px 0;
}

.events-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.event-item {
    width: 100%;
    display: flex
;
    padding: 0;
    gap: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    align-items: center;
}
.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
}

.event-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.event-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.event-item p {
    color: #666;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .events-grid {
        flex-direction: column;
    }

    .event-item {
        width: 100%;
    }
}

/* Footer */
footer {
    background: linear-gradient(90deg, #1a1a1a, #333);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-item p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-item ul {
    list-style: none;
}

.footer-item ul li {
    margin-bottom: 10px;
}

.footer-item a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-links {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .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) {
    .about-grid {
  
        flex-direction: column;
    }
    .about-item {
        width: 100%;
     
    }
    .event-item {
    
        flex-direction: column;
    }
    .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;
}