body {
    font-family: sans-serif;
    margin: 0 100px;
}

.logo-img {
    text-align: left;
    padding:0px 100px;
}

.menu {
    padding:20px 100px;
    display: flex;
    justify-content: space-around;
    text-decoration: none;
}

.main-cover {
    text-align: center;
    padding: 6rem 90px;
    border-radius: 16px;
    box-shadow: 0px 19px 37px 0px #7c7979;
}

.main-heading {
    font-size: 60px;
color: #2611c8;
}

.main-heading-paragraph {
    font-size: 26px;
}

.explore-services {
    background-color:#fff; 
    width: 250px;
    height: 60px;
    border-style: none;
    cursor: pointer;
    border-radius: 9px;
    transition: background-color 0.3s ease;

}



.explore-services:hover {
    background-color: #66dbd3;
    border-radius: 9px;
       width: 250px;
    height: 60px;
    color: #fff;
}

.explore-services:focus {
    background-color: #66dbd3;
    border-radius: 9px;
       width: 250px;
    height: 60px;
    color: #fff;
}

.explore-services:active{
    background-color: #66dbd3;
    border-radius: 9px;
       width: 250px;
    height: 60px;
    color: #fff;
}

.explore-services.active {
background-color: #66dbd3;
color: #fff;
border-color: #66dbd3;
border-radius: 9px;
}



.our-services {
    text-align: center;
    color: #2611c8;
    margin: 80px 0;
}

.our-offerings {
    display: flex;
}

.services {
    text-align: center;
}

.product-showcase {
    display: inline-flex;
    margin:80px 0;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}

.get-consultation {
     background-color:#2611c8; 
     color: #fff;
    width: 250px;
    height: 60px;
    border-radius: 9px;
    border-style: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-consultation:hover {
    background-color: #4c39d9;
}

.elevate-business {
    background-color: #2611c8;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    box-shadow: 0px 19px 37px 0px #7c7979;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-bottom: 80px;
}

footer {
    text-align: center;
    color: #7e7e7f;
}

.logo-img {
    width: 63px;
    height: 63px;
}

.heading {
    color: #2611c8;
}

.robot-img {
 width: 90px;
}

.icon-light-bulb {
width: 90px;
}

.contact-us {
    background-color: #66dbd3;
    border-radius: 9px;
    width: 250px;
    height: 60px;
    border-style: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-us:hover {
        background-color: #87e8e1;
}

.ai-image {
    width: 90px;
    height: 90px;
}

.link {
    color:#66dbd3;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}

.nav-link {
  padding: 20px 20px;
  color: #7c7979;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.nav-link:hover {
    background-color:#e9e9ec;
    color: #7c7979;
}

.nav-link.active {
    background-color: #66dbd3;
    color: #fff;
    font-weight: bold;
}

.nav-link.active:hover {
    background-color: #87e8e1;
}

.city-image {
    border-radius: 20px;
    width: 600px;
}

.city-div {
    width: 600px;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #66dbd3;
    color: #fff;
    border:none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items:center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.chat-toggle:hover {
    background-color: #66dbd382;
}

.chat-ai {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 340px;
    height: 450px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    flex-direction: column;
    overflow: hidden;

}

.chat-ai.open{
    display:flex;
}

.chat-header {
    background-color:#66dbd3;
    color: #fff;
    padding: 12px 15px;
    font-weight: bold;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-min {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}

.chat-container {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.chat-suggestions-container {
    padding: 5px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    background-color:#f7f7f7;
    border-bottom: 1px solid #eee;
}

.chat-suggestion-chip {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
}

.chat-suggestion-chip:hover {
    background-color: #e9e9e9;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: #fff;
}

#chat-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 14px;
}

#chat-send-button {
    padding: 10px 18px;
    background-color: #7c7979;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#chat-send-button:hover {
    background-color:#66dbd3; 
}

.chat-message {
    padding: 8px 12px;
    border-radius: 18px;
    margin-bottom: 10px;
    max-width: 80%;
    word-wrap: break-word;
    clear:both;
}

.user-message {
    background-color:#2611c8;
    color: #fff;
    float:right;
    border-bottom-right-radius: 5px;
}

#chat-icon-open {
    width: 26px;
    height: 26px;
}

#chat-icon-close {
    width: 26px;
    height: 26px;
}

.bot-message {
    background-color: #e9e9ec;
    color: #333;
    float: left;
    border-bottom-left-radius: 5px;
}

.loading-dots span { 
    display: inline-block;
    animation: blink 1.4s infinite both;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.benefits {
    margin: 80px 0;
    text-align: center;
}

.results {
    text-align: center;
    color: #2611c8;
    font-size: 26px;
}

/*.results-showcase {
padding: 30px;
margin: 20px 0;
box-shadow: 0px 19px 37px 0px #7c7979;
display: flex; 
width:360px;
border-radius: 10px;
align-items: center;
} */

.results-show {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:30px;
    margin-top:60px;
}

.results-consultation {
    margin: 10px 0;
}

.pricing h1 {
color:#2611c8;
text-align: center;
margin-top: 0;
}

.pricing p{
    color:#7c7979;
    font-size: 18px;
}

.pricing {

    border-top-left-radius: 16px;
    border-top-right-radius: 16px;

}

.benefits-text {
    text-align: center;
    margin:20px auto;
    width: 80%;
}

.benefits h3 {
    margin: 0 auto;
    width: 60%;
    color:#7c7979;
}

.ai-services {
    text-align: center;

}

.ai-services p {
    color: #7c7979;
    font-size: 18px;
}

.ai-service {
    display: grid;
    border: 1px solid #ddd;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 50px;
    min-height: 547px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ai-service:hover {
    box-shadow: 0px 25px 40px 0px #888;
}

.ai-service-content {
    padding: 1.5rem;
    display: grid;
}

.ai-service p {
color: #7c7979;
}

.ai-service-image {
    height: 14rem;
    width:100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.ai-service-icon {
    margin-right:10px;
}

.ai-chatbot {
    color: #2611c8;
}

.services-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    padding: 0 90px;
    gap: 50px;
    margin-top: 80px;
    margin-bottom: 30px;
}

.ai-service ul {
color: #7c7979;
}

.image-title {
    display: flex;
    align-items: center;
}

.services-button {
    width: 100%;
}

.integrate-ai {
    margin-bottom: 80px;
}

.integrate-ai h1 {
    color:#2611c8;
}

.integrate-ai p {
    color:#7e7e7f;
}

.contact-us-title {
    color: #2611c8;
    text-align: center;
    font-size: 60px;
}

.contact-us-text {
    color:#7c7979;
    text-align: center;
}

.contact-form {
    display: grid;
    width: 34%;
    border: none;
    border-radius: 16px;
    padding: 30px;
    margin-right: 20px;
    box-shadow: 0px 19px 37px 0px #7c7979;
    margin-bottom: 0px;

}

.contact-form label {
    padding-top: 10px;
}

.contact-form input {
    margin-top: 10px;
    border:none;
    border-radius: 16px;
    background-color:#7f7e7e1a;
    padding: 10px 5px;
    font-family: inherit;
}

.contact-form textarea {
    margin-top:10px;
    border:none;
    border-radius: 16px;
    background-color:#7f7e7e1a;
    padding: 10px 5px;
    font-family: inherit;
    resize: none;
}

.contact-form h2 {
    margin: 0;
}

.contact-form p {
    color:#7c7979;
}

.explore-service.active.services-button:hover {
    width: 100%;
}

.services-button:hover {
    width: 100%;
}



.explore-services.active.services-button {
    width: 100%;
}

.explore-services.active:hover {
    background-color: #87e8e1;
    border-color: #87e8e1;
}

.contact-page {
    display: flex;
    justify-content: space-evenly;
    margin-top: 80px;
}

.lets-connect {
    display: grid;
    background-image: url(contact-image.jpg);    
    text-align: center; 
    align-content: center;
    border-radius: 16px;
background-color: rgb(0 0 0 / 43%);
    background-blend-mode: darken;
    padding:20px;
}


.lets-connect h2 {
    color:#fff;
}
.lets-connect p {
    color:#c8c7c7;
}

#form-button {
    margin-top: 20px;
}

.contact-image {
    display: grid;
    margin: 0 auto;
    width: 4rem;
}

.our-location {
    border: none;
    border-radius:16px;
    box-shadow: 0px 19px 37px 0px #7c7979;
    padding: 100px;
    margin: 80px 0;
}

.our-location h2{
    color: #2611c8;
    text-align: center;
}

.our-location p {
    color: #7c7979;
    
}

.our-location span {
    color: #000;
}

.address {
    display: flex;
    justify-content: space-evenly;
}

benefits {
    margin: 80px 0;
    text-align: center;
}

.results {
    text-align: center;
    color: #2611c8;
    font-size: 26px;
}

.results-showcase {
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0px 10px 20px 0px #aaa;
    display: flex; 
    height: 90px;
    width:360px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-evenly;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.results-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 40px 0px #888;
}

.results-showcase span {
    color:#7c7979;
}

.results-show {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:30px;
    margin-top:60px;
}

.chatbot-page-container {
    text-align: center;
    padding: 2rem 1rem;
}

.chatbot-page-title {
    font-size: 2.5rem;
    color: #2611c8;
    margin-bottom: 0.5rem;
    text-align: center;
}

.chatbot-page-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.chat-ai-fullscreen {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    height: 70vh; 
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.chat-ai-fullscreen .chat-header {
    flex-shrink: 0;
}

.chat-ai-fullscreen .chat-container {
    flex-grow: 1;
}

.chat-ai-fullscreen .chat-input-area {
    flex-shrink: 0;
}

.contact-form form label {
    padding-top: 10px;
    font-weight: 600;
}

.contact-form form input,
.contact-form form textarea {
    margin-top: 10px;
    border: none;
    border-radius: 16px;
    background-color: #7f7e7e1a;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 1rem;
    resize: none; /* for textarea */
    transition: box-shadow 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    outline: none;
    box-shadow: 0 0 6px 2px #66dbd3;
}

.contact-form form button {
    margin-top: 20px;
    width: 100%;
    height: 60px;
    background-color: #66dbd3;
    border: none;
    border-radius: 9px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form form button:hover {
    background-color: #87e8e1;
}


@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; }
    100% { opacity: 0.2; }
}
@media screen and (max-width: 1024px) {
    body {
        margin: 0 40px;
    }
    .menu {
        padding: 20px 40px;
    }
    .main-heading {
        font-size: 48px;
    }
    .main-heading-paragraph {
        font-size: 22px;
    }
    .our-services,
    .results {
        font-size: 22px;
    }
    .contact-us-title,
    .chatbot-page-title {
        font-size: 42px;
    }
    .chatbot-page-description {
        font-size: 18px;
    }
    .menu a {
        font-size: 15px;
    }
    .contact-form {
        width: 80%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Large phones / small tablets (≤768px) */
@media screen and (max-width: 768px) {
    body {
        margin: 0 20px;
    }

    /* Popup menu */
    .menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background: #fff;
        width: 75%;
        height: 100vh;
        padding: 40px 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        z-index: 2000;
    }
    .menu.open {
        display: flex;
    }
    .menu a {
        font-size: 18px;
        padding: 15px 0;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        z-index: 2100;
    }

    .main-heading {
        font-size: 36px;
    }
    .main-heading-paragraph {
        font-size: 18px;
    }
    .our-services,
    .results {
        font-size: 20px;
    }
    .contact-us-title,
    .chatbot-page-title {
        font-size: 36px;
    }
    .chatbot-page-description {
        font-size: 16px;
    }

    /* Contact form fix */
    .contact-page {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .contact-form {
        width: 90%;
        padding: 25px;
    }

    /* Chatbot layout */
    .chat-ai-fullscreen {
        width: 100%;
        height: 80vh;
    }
}

/* Small phones (≤500px) */
@media screen and (max-width: 500px) {
    body {
        margin: 0 10px;
    }
    h1, h2, h3 {
        font-size: 85%;
    }
    .main-heading {
        font-size: 28px;
    }
    .main-heading-paragraph {
        font-size: 16px;
    }
    .our-services,
    .results {
        font-size: 18px;
    }
    .contact-us-title,
    .chatbot-page-title {
        font-size: 28px;
    }
    .chatbot-page-description {
        font-size: 14px;
    }
    .menu a {
        font-size: 14px;
    }
    .chat-ai-fullscreen {
        width: 100%;
        height: 75vh;
    }
    .chat-input-area input {
        font-size: 14px;
    }
    .chat-input-area button {
        font-size: 14px;
        padding: 8px 12px;
    }
}