/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f9ff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #28b485;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px #28b485);
}

.nav-menu {
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #28b485;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-link {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #28b485;
    color: #fff;
    box-shadow: 0 0 10px #28b485;
    transform: translateY(-3px);
}

.header-button {
    padding: 0.5rem 1rem;
    background-color: #28b485;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
}

.header-button:hover {
    background-color: #1f8b63;
    box-shadow: 0 0 15px #28b485;
    animation: powerUp 0.5s;
}

@keyframes powerUp {
    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: 42px;
        left: 50%;
        height: 100vh;
        min-width: 320px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }
    .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 */
.hero {
    background: #28b485;
    padding: 6rem 0;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    animation: slideIn 1s ease forwards;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #28b485;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 0 15px #28b485;
    animation: coinCollect 0.5s;
}

@keyframes coinCollect {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 2rem;
    color: #28b485;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #28b485;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin: 1rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.list-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #28b485;
    border-radius: 50%;
}

.about-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #28b485;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #1f8b63;
    box-shadow: 0 0 15px #28b485;
    animation: coinCollect 0.5s;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    .about-content {
        padding-left: 2rem;
    }
}

/* Call to Action Section */
.cta {
    background: #28b485;
    padding: 5rem 0;
    color: #fff;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.cta-content {
    text-align: center;
}

.cta-form {
    display: flex
;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.cta-form  p{
    font-size: 18px;
}
.cta-input {
    padding: 0.75rem;
    border: 2px solid #fff;
    border-radius: 5px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
}

.cta-input:focus {
    outline: none;
    border-color: #28b485;
    box-shadow: 0 0 10px #28b485;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #28b485;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 0 15px #28b485;
    animation: powerUp 0.5s;
}

.cta-image img {
   max-width: 450px;
   width: 100%;
   height: auto;
    transition: all 0.3s ease;
}
.cta-image {
    width: 100%;
    max-width: 450px;
}
.cta-image img:hover {
    transform: translateY(-10px);
}

@media (min-width: 768px) {
    .cta-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    border-color: #28b485;
    box-shadow: 0 0 15px #28b485;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #28b485;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
    color: #28b485;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0;
}

.why-choose-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-content {
    flex: 1;
}

.why-choose-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #28b485;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.why-choose-button:hover {
    background-color: #1f8b63;
    box-shadow: 0 0 15px #28b485;
    animation: coinCollect 0.5s;
}

.why-choose-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    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: 3px solid transparent;
}

.stat-card:hover {
    border-color: #28b485;
    box-shadow: 0 0 15px #28b485;
    transform: scale(1.05);
}

.stat-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
    color: #28b485;
}

@media (min-width: 768px) {
    .why-choose-container {
        flex-direction: row;
        align-items: center;
    }
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Clients Section */
.clients {
    padding: 2rem 0;
}

.clients-grid {
    display: flex
;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.client-logo {
    width: 100%;
    max-height: 350px;
    flex: 1;
    height: auto;
    object-fit: cover;
    /* object-fit: contain; */
    filter: grayscale(58%);
    transition: all 0.3s ease;
}



/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-width: 300px;
    transition: all 0.3s ease;
    border: 3px solid #28b485;
    border-style: dashed;
}

.testimonial-card:hover {
    box-shadow: 0 0 15px #28b485;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #28b485;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
    transition: all 0.3s ease;
}

.testimonial-card:hover img {
    transform: rotate(360deg);
}

.testimonial-name {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
    color: #28b485;
}

.testimonial-title {
    color: #666;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 15px;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

.dot.active {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="teal"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center center;
    background-size: cover;
}

/* Team Section */
.team {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
 
    padding: 1rem;
    border-radius: 5px;
 
    text-align: center;
    transition: all 0.3s ease;
 
}

.team-card:hover {
    border-color: #28b485;
    box-shadow: 0 0 15px #28b485;
}

.team-card img {
    width: 150px;
    height: 150px;
    border: 5px solid;
    border-color: #28b485;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: translateY(-10px);
}

.team-name {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
    color: #28b485;
}

.team-title {
    color: #666;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer */
.footer {
    background: #1a2526;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #28b485;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #28b485;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #28b485;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #1f8b63;
    box-shadow: 0 0 10px #28b485;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 2px solid #28b485;
    border-radius: 5px;
    background: white;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.8rem;
}

.newsletter-button {
    padding: 0.5rem;
    background-color: #28b485;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.8rem;
}

.newsletter-button:hover {
    background-color: #1f8b63;
    box-shadow: 0 0 15px #28b485;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #666;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    .newsletter-form {
        flex-direction: row;
    }
}

/* Animations */
@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }
    .cta-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 5px;
        /* height: 150px; */
        transition: all 0.3s ease;
    }
}


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;
}