@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: #f0faff;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #00c4b4;
}

.nav-menu ul li a.btn {
    background-color: #00c4b4;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
}

.nav-menu ul li a.btn:hover {
    background-color: #00a89a;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #00c4b4, #f0faff);
    padding: 100px 0 100px;
    margin-top: 70px;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.service-box i {
    font-size: 48px;
    color: #00c4b4;
    margin-bottom: 15px;
    display: block;
  }
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.hero .btn {
    background-color: #fff;
    color: #00c4b4;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #e6f0fa;
}

.hero-image {
    width: 50%;
}

.hero-image img {
    width: 100%;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.about h2 span {
    color: #00c4b4;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    width: 50%;
}

.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-item .icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #00c4b4;
}

.about-item h4 {
    font-size: 1.5rem;
}

.about-text .btn {
    background-color: #00c4b4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
}

/* CTA Section */
.cta {
    background-color: #00c4b4;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cta-form input {
    padding: 10px;
    border: none;
    border-radius: 25px;
    width: 250px;
}

.cta-form .btn {
    background-color: #fff;
    color: #00c4b4;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.services h2 span {
    color: #00c4b4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box img {
    height: 50px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.why-choose h2 span {
    color: #00c4b4;
}

.why-choose-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-choose-text {
    width: 50%;
}

.why-choose-text p {
    margin-bottom: 20px;
    
}

.why-choose-text .btn {
    background-color: #00c4b4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
}

.why-choose-stats {
    width: 50%;
    display: flex;
    gap: 20px;
}

.stat-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Clients Section */
.clients {
    padding: 30px 0;
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.clients-grid img {
    height: 100%;
    width: 25%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    gap: 20px;
}

.testimonial-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 50%;
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100%;
}

.client-info h4 {
    font-size: 1.2rem;
}

/* Team Section */
.team {
    padding: 50px 0;
}

.team h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 150px;
    min-width: 150px;
    max-height: 150px;
    min-height: 150px;
    border-radius: 100%;
    margin-bottom: 15px;
}
.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #1a2526;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    height: 20px;
}

.footer-column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-column .btn {
    background-color: #00c4b4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
    }

    .about-content,
    .why-choose-content {
        flex-direction: column;
    }

    .about-image,
    .about-text,
    .why-choose-text,
    .why-choose-stats {
        width: 100%;
    }

    .services-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-box {
        width: 100%;
    }

    .clients-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.contact {
    padding: 80px 0;
}

 .contact .social-icons i{
    color: #00c4b4 ;
    font-size: 20px;
 }
 .contact-info p {
    font-size: 20px;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.contact-info {
    margin-bottom: 40px;
}
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;
}