/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #e6f0fa;
    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: 0px 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: #007bff;
}

.nav-menu ul li a.btn {
    background-color: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
}

.nav-menu ul li a.btn:hover {
    background-color: #0056b3;
}

.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, #007bff, #e6f0fa);
    padding: 100px 0 50px;
    text-align: center;
    margin-top: 60px;
}

.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 .cta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero .cta input {
    padding: 10px;
    border: none;
    border-radius: 25px;
    width: 250px;
}

.hero .cta .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero .cta .btn:hover {
    background-color: #0056b3;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    object-fit: cover;
    margin-top: 30px;
    max-height: 500px;
}
.logo {
    margin: 10px 0 0;
}
/* Features Section */
.features {
    padding: 50px 0;
}
.feature-box i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
  }
.features .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-box {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.feature-box img {
    height: 50px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Workflow Section */
.workflow {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.workflow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.workflow h2 span {
    color: #007bff;
}

.workflow p {
    text-align: center;
    margin-bottom: 40px;
}

.workflow-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.workflow-image {
    width: 50%;
}

.workflow-image img {
    width: 100%;
    border-radius: 10px;
}

.workflow-text {
    width: 50%;
}

.workflow-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.workflow-item .icon {
    font-size: 2rem;
    margin-right: 15px;
}

.workflow-item h4 {
    font-size: 1.5rem;
}

.workflow-text .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
}

/* Steps Section */
.steps {
    padding: 50px 0;
}

.steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #007bff;
}

.steps-grid {
    display: flex;
    gap: 20px;
}

.step-box {
    position: relative;
    /* background-color: #fff; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 33.33%;
}
.feature-box i {
    font-size: 42px;
    color: #007bff;
    margin-bottom: 15px;
    display: block;
  }
.step-box img {
    top: 0;
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    margin-bottom: 0;
}
.step-box h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-box h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}
.step-box p {
    color: #fff;
}
.step-box .link {
    color: #007bff;
    text-decoration: none;
}

/* Advanced Features Section */
.advanced-features {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.advanced-features h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.advanced-features p {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advanced-features .feature-box {
    width: 100%;
}

/* Stats Section */
.stats {
    background-color: #007bff;
    color: #fff;
    padding: 30px 0;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Simple Steps Section */
.simple-steps {
    padding: 50px 0;
}

.simple-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.simple-steps p {
    text-align: center;
    margin-bottom: 40px;
}

.steps-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.steps-image {
    width: 50%;
}

.steps-image img {
    width: 100%;
    border-radius: 10px;
}

.steps-text {
    width: 50%;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-item .icon {
    font-size: 2rem;
    margin-right: 15px;
}

.step-item h4 {
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.pricing h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.pricing p {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-grid {
    display: flex;
    gap: 20px;
}

.pricing-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 33.33%;
    text-align: center;
}

.pricing-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-box .price {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.pricing-box .price span {
    font-size: 1rem;
}

.pricing-box ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-box ul li {
    margin-bottom: 10px;
}

.pricing-box .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials p {
    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;
    border-radius: 50%;
}

.client-info h4 {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.contact p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    width: 40%;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

.contact-form {
    width: 60%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #1a2526;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 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: #007bff;
    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) {
    .steps-content {
        display: flex
    ;
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }
    .steps-image {
        width: 100%;
    }
    .steps-text {
        width: 100%;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        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 h1 {
        font-size: 2rem;
    }

    .features .container,
    .workflow-content,
    .steps-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .contact-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .feature-box,
    .workflow-image,
    .workflow-text,
    .step-box,
    .pricing-box,
    .testimonial-box,
    .contact-info,
    .contact-form {
        width: 100%;
    }

    .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) {
    .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;
}