.about-section {
    background-color:#ffffff;
    padding: 50px 0;
}
.about-img {
    max-width: 100%;
    height: auto;
}
.about-content {
    text-align: left;
}


.about-header {
    background-color:#778da9; /* Match the background color */
    padding: 50px 0; /* Add padding for spacing */
    text-align: center;
    position: relative;
}
.about-header h1 {
    font-size: 3.5rem;
    color: #ffffff; /* Text color */
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 100px;
    margin: 0;
}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}





.cta-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.cta-buttons .book-demo,
.cta-buttons .free-trial {
    margin-left: 10px;
    padding: 8px 16px;
    border: 1px solid #4caf50;
    border-radius: 4px;
    text-decoration: none;
    color: #4caf50;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-buttons .free-trial {
    background-color: #4caf50;
    color: #fff;
}

.cta-buttons .book-demo:hover {
    background-color: #e8f0fc;
}

.cta-buttons .free-trial:hover {
    background-color: #388e3c;
}


.hamburger {
display: none; /* Hide by default */
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 25px;
cursor: pointer;
z-index: 1001;
}

.hamburger .bar {
width: 100%;
height: 3px;
background-color: #000;
transition: all 0.3s ease;
}

/* Change for active state */
.hamburger.active .bar:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}

/* Show hamburger menu only on mobile */
@media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav {
display: none; /* Hide the nav by default on mobile */
flex-direction: column;
width: 100%;
background-color: #ffffff;
position: absolute;
top: 60px;
left: 0;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 999;
}

.nav.active {
display: flex; /* Show the nav when active */
}

.cta-buttons {
display: none; /* Hide CTA buttons on mobile */
}
}





.footer {
    padding: 40px 20px;
    background-color: #212121;
    color: #ffffff;
    text-align: left;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer .footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer .footer-links div {
    flex: 1;
    min-width: 150px;
}

/* Specific colors for each section name */
.footer .footer-links div:nth-child(1) h4 {
    color: #f8ce5a;
    /* Top Features */
}

.footer .footer-links div:nth-child(2) h4 {
    color: #33c1ff;
    /* Solutions */
}

.footer .footer-links div:nth-child(3) h4 {
    color: #4bffba;
    /* Integrations */
}

.footer .footer-links div:nth-child(4) h4 {
    color: #ff33a8;
    /* Resources */
}

.footer .footer-links div:nth-child(5) h4 {
    color: #ffbf33;
    /* Free WhatsApp Tools */
}

.footer .footer-links div:nth-child(6) h4 {
    color: #57BB59;
    /* Urbanchat */
}

.footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer .footer-awards {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer .footer-awards img {
    height: 40px;
}

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .footer-bottom p {
    margin: 0;
}

.footer .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer .footer-social a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer .footer-social a:hover {
    color: #4caf50;
}

.testimonial-section {
    padding: 40px 20px;
    background-color: #fff9c4;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 2em;
    color: #000000;
    margin-bottom: 30px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    text-align: left;
}

.testimonial-card p {
    font-size: 0.9em;
    color: #666;
}

.testimonial-card h4 {
    font-size: 1.2em;
    color: #000000;
    margin-top: 10px;
}

.footer-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #4caf50;
    color: white;
}

.footer-cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.footer-cta a {
    text-decoration: none;
    background-color: white;
    color: #4caf50;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer-cta a:hover {
    background-color: #388e3c;
    color: white;
}

@media (max-width: 768px) {

    .header,
    .nav,
    .cta-buttons,
    .solutions-overview,
    .solution-detail,
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .nav,
    .cta-buttons,
    .solutions-overview img,
    .testimonial-cards {
        gap: 10px;
    }

    .solution-detail:nth-child(even) {
        flex-direction: column;
    }

    .footer .footer-links,
    .footer .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


.about-img{
    height: 450px;
    width: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.2s ease-in;
}

.about-img:hover{
    transform: scale(1.03);
}


@media (max-width:786px) {

    .about-img{
    height: 350px;
    width: 350px;
    object-fit: cover;
}

.about-header h1{
    font-size: large !important;
    line-height: 26px !important;
}
}