/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    padding: 20px 150px;
    border-bottom: 0px solid #e5e5e5;
      position: sticky;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo-text .brand-name {
    font-size: 20px;
    font-weight: bold;
}

.tagline {
    font-size: 12px;
    color: #888;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.get-started-btn {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Side Navbar Styling */
.side-nav {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    padding: 20px;
    transition: 0.3s;
    z-index: 1000;
}

.side-nav .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    float: right;
    cursor: pointer;
}

.side-nav-links {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

/* Hero Section */
.hero {
    display: flex;

    justify-content: space-between;
    align-items: center;
    padding: 50px 200px;
    gap: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 200px;
    gap: 20px;
}

.hero-mobile {
    display: none;
    ;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    color: #666;
}

.hero-mobile h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-mobile p {
    font-size: 18px;
    color: #666;
}

.btn-primary {
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
text-align: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature img {
    width: 40px;
    margin-bottom: 10px;
}

.feature p {
    font-weight: bold;
    color: #333;
}

.show-get-started-btn {
    display: none;
    /* Display on mobile */
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #000;
    width: 100%;
    text-decoration: none;
    text-align: center;
    border-radius: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header {
        padding: 20px;
        margin: 0;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero {
        flex-direction: column;
        /* text-align: center; */
        gap: 30px;
        padding: 20px;
        display: none;
    }

    .get-started-btn {
        display: none;
        /* Display on mobile */
        margin: 10px 0;
        width: 100%;
    }

    .hero-mobile {
        display: block;
        flex-direction: column;
        /* text-align: center; */
        gap: 30px;
        padding: 20px;
    }

    .show-get-started-btn {
        display: block;
        /* Display on mobile */
        padding: 10px 20px;
        background-color: #ffcc00;
        color: #000;
        width: 100%;
        text-decoration: none;
        margin-top: 10px;
        text-align: center;
        border-radius: 5px;
        font-weight: bold;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }
}

.diagonal-section {
    background-color: #ffc40c;
    clip-path: polygon(0 5%, 100% 13%, 100% 100%, 0% 100%);
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    
    flex-wrap: wrap;
}

.content h1 {
    font-size: 36px;
    font-weight: bold;
    max-width: 50%;
    line-height: 1.2;
}

.content p {
    max-width: 40%;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    .content h1,
    .content p {
        max-width: 100%;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }
}

.expert-services {
    padding: 40px 20px;
    text-align: center;
}

/* Header and Intro Text */
.expert-services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.intro-text {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
}

.service-image {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    width: 100%;
    gap: 20px;
    padding: 20px 0;
}

/* Service Item Styling */
.service-item {
    text-align: left;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        /* Adjust gap for better spacing */
        padding: 20px 20px;
    }

    .service-image {
        max-width: 100%;
        max-height: 200px;
        object-fit: cover;
    }


    .service-item h3 {
        font-size: 1.6rem;
    }

    .service-item p {
        font-size: 1rem;
    }
}

/* Large Screens (Desktops) */
@media (min-width: 1024px) {
    .expert-services {
        padding: 60px 40px;
    }

    .expert-services h2 {
        font-size: 3rem;
    }

    .intro-text {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 900px;
    }

    .services-container {
        gap: 60px;
        /* Increase gap for a more balanced layout */
    }

    .service-details {
        padding: 40px 20px;
    }
}

.home-about-section {
    display: flex;
    align-items: center;
    padding: 50px 5%;
    gap: 30px;
    background-color: #fff;

}

/* Text Content */
.content-about {
    /* flex: 1; */
    flex-direction: column;
    max-width: 500px;
    padding: 50px;
}

.content-about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.content-about p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-about a {
    padding: 15px 65px;
    font-size: 1rem;
    border: 2px solid #333;
    background: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.learn-button:hover {
    background-color: #333;
    color: #fff;
}

/* Image Styling */
.images {
    display: flex;
    max-width: 700px;
    gap: 20px;
}

.about-image {
    width: calc(50% - 10px);
    height: 400px;
    /* Adjusting the height to your requirement */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-about-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .content-about {
        max-width: 100%;
    }

    .images {
        flex-direction: column;
        gap: 15px;
    }

    .about-image {
        width: 100%;
        height: 100%;
    }
}


.faq-section {
    padding: 50px 20px;
    background: #f5f7fd;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: #4e63e0;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-section h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.faq-section p {
    color: #777;
    font-size: 20px;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 100px;
}

.faq-item {
    width: 48%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 30px 30px;
    text-align: left;
    background: #f9f9fc;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 6px solid #4e63e0;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #eef1f8;
}

.arrow {
    transition: transform 0.3s;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    display: none;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    background: #ffffff;
    border-top: 1px solid #ddd;
}

.faq-answer.active {
    display: block;
}

@media screen and (max-width: 768px) {
    .faq-item {
        width: 100%;
    }

    .faq-list {
        padding: 10px;
    }
}


.hero-services {
    text-align: center;
    padding: 2rem 1rem;
    background: rgb(46, 154, 215);
    background: linear-gradient(164deg, rgba(46, 154, 215, 1) 10%, rgba(231, 148, 84, 1) 63%);
    color: #fff;
}

.hero-services h1 {
    margin-top: 30px;
    font-size: 4rem;
}

.hero-services p {
    font-size: 1.2rem;
}

.hero-services a {
    padding: 15px 65px;
    font-size: 1rem;
    border: 2px solid #ffffff;
    background: none;
    margin-top: 30px;
    cursor: pointer;
    color: #f5f7fd;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

@media (max-width: 768px) {
    .hero-services h1 {
        font-size: 2rem;
    }

    .hero-services p {
        font-size: 1rem;
    }
}




/* Services Section */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    /* max-width: 1200px; */
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-card p {
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 480px) {
    .service-card {
        min-width: 90%;
        margin-bottom: 20px;
    }

    .service-card p {
        font-size: 12px;
    }
}

.articles-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 20px;
    justify-content: center;
}

/* Article Card Styling */
.article-card {
    display: flex;
    flex-direction: column;
    /* flex: 1 1 45%; */
    max-width: 40%;
    background-color: #fff;
    overflow: hidden;
}



.article-image {
    width: 100%;
    object-fit: cover;
}

.article-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.article-content p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.article-date {
    font-size: 12px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-card {
        flex-direction: column;
        max-width: 100%;
    }

    .article-image {
        width: 100%;
        height: 200px;
    }

    .article-content h2 {
        font-size: 16px;
    }

    .article-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-content h2 {
        font-size: 14px;
    }

    .article-content p {
        font-size: 12px;
    }
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #1d3557;
    /* Dark blue background */
    padding: 50px 150px;
    color: #ffffff;
}

.footer-section {
    flex: 1 1 30%;
    margin: 10px;
}

.services h3 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
}

.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
}

.footer-follow h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
}

.footer p {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons .icon {
    font-size: 20px;
    color: #ffffff;
    /* Adjust this color as needed */
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons .icon:hover {
    transform: scale(1.2);
    color: #ddd;
    /* Change color on hover */
}


.footer .footer-follow input {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer .footer-follow button {
    background-color: #457b9d;
    /* Button color */
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer .footer-follow button:hover {
    background-color: #1d3557;
    /* Darker shade on hover */
}

.footer-below {
    background-color: #1d3557;
    /* Dark blue background */
    padding: 20px 150px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        /* flex-direction: column; */
        align-items: center;
        text-align: left;
        padding: 30px 20px;
    }

    .footer-section {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .footer-below {

        padding: 20px 20px;
    }
}

@media (max-width: 480px) {
    .footer .follow input {
        width: 100%;
    }

    .footer h3 {
        font-size: 30px;
    }

    .footer {
        text-align: left;
    }

    .footer p {
        font-size: 12px;
    }

    .footer-below {

        padding: 20px 20px;
    }

}



.instagram-button img {
    width: 30px;
    height: 30px;
    /* margin-right: 5px; */
}



.facebook-button img {
    width: 30px;
    height: 30px;
    /* margin-right: 5px; */
}

.about-header {

    color: #333;
    text-align: center;
    padding: 50px 20px;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.about-section {
    padding: 40px 20px;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content {
    display: flex;
    flex-direction: column;
    /* background: #e8e8e8; */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    gap: 20px;
}

.text {
    flex: 1;
}

.text h2 {
    font-size: 1.8rem;
    color: #002B5B;
    margin-bottom: 10px;
}

.text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.image img {
    width: 100%;
    border-radius: 8px;
    max-height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-footer {
    text-align: center;
    padding: 20px;
    background: #002B5B;
    color: #fff;
}

@media (min-width: 768px) {
    .container {
        gap: 30px;
    }

    .content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .content:nth-child(even) {
        flex-direction: row-reverse;
    }

    .image {
        flex: 1;
        margin-left: 20px;
    }

    .content:nth-child(even) .image {
        margin-left: 0;
        margin-right: 20px;
    }

    .text,
    .image {
        flex: 1;
    }
}

.client-feedback {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.client-feedback h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}

.client-feedback p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

/* Feedback Container */
.feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Feedback Card Styling */
.feedback-card {
    background-color: #b8e2e8;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.feedback-card .stars {
    font-size: 1.2rem;
    color: #f4b400;
}

.feedback-card p {
    font-size: 0.95rem;
    color: #333;
    margin: 10px 0;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.client-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.client-info p {
    margin: 0;
    font-size: 0.85rem;
    text-align: left;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-container {
        flex-direction: column;
        align-items: center;
    }

    .feedback-card {
        max-width: 90%;
    }
}

/* Container styling */
/* Container styling */
.digital-solutions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f5f7fd;
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left content (heading) styling */
.left-content {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
}

.left-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Right content (paragraph and stats) styling */
.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.right-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: left;
}

.stat-item {
    
    text-align: center;
    
    min-width: 150px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #185a9c;
    margin: 0;
    font-weight: bold;
}

.stat-item span {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .digital-solutions {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: #f8f8f8;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .left-content h1 {
        /* margin-bottom: 20px; */
        font-size: 2rem;
    }

    .stat-item {
        min-width: 100%;
        max-width: 300px;
    }

   
}

/* Styling for the trusted leaders section */
.trusted-leaders {
    padding: 60px 20px;
    background-color: #fce4ec;
    text-align: center;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-leaders h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.trusted-leaders p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Logo grid layout */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

/* Individual logo item styling */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.logo-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
}

/* Hover effect on logos */
.logo-item img:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trusted-leaders h2 {
        font-size: 2rem;
    }

    .trusted-leaders p {
        font-size: 0.9rem;
    }
}
.contact-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.contact-header {
    max-width: 400px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.contact-header p {
    color: #666;
    margin: 10px 0 20px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.input-group {
    flex: 1;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 1rem;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 24px;
}

.input-group textarea {
    resize: vertical;
    height: 150px;
}

.submit-button {
    background-color: #437d9c;
    color: white;
    font-size: 1rem;
    padding: 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: auto;
}

.submit-button:hover {
    background-color: #366a85;
}

/* Responsiveness */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 10px;
    background-color: #29be60;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    /*     margin-right: 5px; */
}
