/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #e6f4ea 0%, #d4edda 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
        background: #f1edce;
    padding: 0.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px #28a745);
}

.nav-menu {
    
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 35px;
    height: 5px;
    background-color: #28a745;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.active .nav-list {
    display: flex;
}
.nav-list {
    list-style: none;
    position: absolute;
    right: 0;
    z-index: 999;
    min-width: 320px;
    height: 100vh;
    top: 50px;
    display: none
;
    flex-direction: column;
    gap: 1rem;
        background: #f1edce;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    opacity: 1;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}



.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #28a745;
    text-shadow: 0 0 5px #28a745;
}

.header-button {
    padding: 0.5rem 1rem;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.header-button:hover {
    box-shadow: 0 0 10px #dc3545;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
            background: #f1edce;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-menu.active .bar-1 {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-menu.active .bar-2 {
        opacity: 0;
    }
    .nav-menu.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    background: #e6f4ea;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.hero-button:hover {
    box-shadow: 0 0 10px #28a745;
}

.domain-search {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.domain-search h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.domain-search p {
    margin-bottom: 1rem;
}

.search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.search-bar input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #28a745;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.domain-options {
    display: flex;
    gap: 0.5rem;
}

.domain-options span {
    padding: 0.5rem 1rem;
    background: #e6f4ea;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-options span:hover {
    background: #28a745;
    color: #fff;
}

.search-button {
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #dc3545;
    box-shadow: 0 0 10px #dc3545;
}

/* About Section */
.about {
    padding: 4rem 0;
        background: #f1edce;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #28a745;
    text-align: center;
    margin-bottom: 2rem;
}

.about-container {
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.stat-card {
    /* background: #e6f4ea; */
    /* padding: 1rem; */
    border-radius: 5px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    text-align: center;
    width: 150px;
    animation: pop 0.5s ease forwards;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.6s;
}

.stat-icon {
    display: block;
    width: 40px;
    clip-path: polygon(20% 0%, 55% 31%, 98% 1%, 54% 99%);
    height: 40px;
    background-color: #28a745;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.stat-card h4 {
    font-size: 1rem;
    color: #28a745;
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #28a745;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.image-caption {
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    .about-text {
        padding-right: 2rem;
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
        background: #f1edce;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #e6f4ea;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
}

.service-card:hover {
    box-shadow: 0 0 15px #28a745;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #28a745;
    margin: 0.5rem 0;
}

.service-card p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.service-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.service-button:hover {
    box-shadow: 0 0 10px #dc3545;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Comparison Section */
.comparison {
    padding: 4rem 0;
        background: #f1edce;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.comparison-column {
    background: #e6f4ea;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.comparison-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
}

.cross {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #dc3545;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Team Section */
.team {
    padding: 4rem 0;
        background: #f1edce;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
 
    padding: 1rem;
border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #28a745;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover img {
    border: 3px solid #28a745;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #28a745;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accordion Section */
.accordion {
    padding: 4rem 0;
        background: #f1edce;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #34c759;
}

.accordion-content {
    display: none;
    padding: 1rem;
    background: #e6f4ea;
    border-radius: 0 0 5px 5px;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Events Section */
.events {
    padding: 4rem 0;
        background: #f1edce;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background: #e6f4ea;
    padding: 0 0 1rem;
    /* border-radius: 5px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 6px solid #28a745;
}

.event-card:hover {
    box-shadow: 0 0 15px #28a745;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.event-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #28a745;
    margin: 0.5rem 0;
}

.event-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.event-button:hover {
    box-shadow: 0 0 10px #28a745;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
        background: #f1edce;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-button:hover {
    box-shadow: 0 0 15px #28a745;
}

/* Newsletter and Footer */
.newsletter {
    padding: 2rem 0;
    background: #34c759;
    color: #fff;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 2px solid #28a745;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: 300px;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    box-shadow: 0 0 10px #dc3545;
}

.footer {
    background: #28a745;
    color: #fff;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.footer-links a:hover {
    color: #dc3545;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34c759;
    margin-top: 1rem;
}

.footer-bottom .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

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;
}