
 *{
    margin: 0;
    padding: 0;
 }



/* index Page */
body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* header */

header {
    background-color: #4472C4;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
    margin-right: 10px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
}

/* header nav ul li a.button {
    background-color: #fff;
    color: #0066cc;
} */
nav ul li a:hover {
    background-color: #575757;
    color: #fff;
}
.nav-bar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 24px;
    margin: 0;
    padding:0;
}
.nav-menu{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


/* .nav-menu ul li a{
    background-color: #fff;
    color: #0066cc;
    padding: 10px 15px;
    border-radius: 5px;

} */
 .nav-menu li .button{
    padding: 10px 15px;
    border-radius: 5px;
 }

.hamburger{
    display: none;
    cursor:pointer;
}

.bar{
    display: block;
    width:25px;
    height: 3px;
    margin: 5px;
    -webkit-transition:all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}


.hero {
    text-align: left;
    padding: 40px 20px;
    background-image: url("images/Frame\ 54.png");
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-blend-mode: multiply;
    padding-top: 200px;
    padding-bottom: 200px;
    margin: 0;
    color:#ffffff;
    height:50vh;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top:0;
    word-wrap: break-word;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.hero .contact-us {
    background-color: white;
    color: #4472C4;
    border: 2px solid #4472C4;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
/* Chatbot Button */
.chatbot {
    position: absolute;
    top: 10px;
    left: 20px;
    margin-top: 150px;
}
.chatbot p{
    font-size:smaller
}


.chatbot-button {
    padding: 10px 15px;
    font-size: 0.875em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chatbot-button:hover {
    background-color: #0056b3;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

.about, .core-services, .industries, .blog, .testimonials, .partners .paragraph {
    text-align: center;
}
.about-content{
    display: flex;
    justify-content: space-between;
}
.about-us{
    height:auto;
    width:auto;
    display: flex;
    justify-content: space-between;
}
.about{
    margin: auto;
}

.about-content img{
    height:auto;
    width: 50%;
}
 
.about-text ul li{
    text-align: center;
}

.about-text{
    text-align: center;
    margin-bottom:10px;
}

 .core-services h2, .about h2, .industries h2, .blog h2, .testimonials h2, .idea h2, .partners h2, .contact-hero h2{
    color: #4472C4;
    margin-bottom: 20px;
}

.core-service img{
    height: 75px;
}




.services-grid, .industries-grid, .blog-posts{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service, .industry, .partner {
    background-color: #B6D1FF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
}
.blog-post,.core-service{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    border: 1px solid #B6D1FF;
}
.blog-post img{
    height: 150px;
}
.core-service {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
}
.posts-container p{
    color:#4472C4
}


/* form */
form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #0066cc;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}
.partner-logo {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
   
}

.partner-logo img{
    width: 150px; /* Set desired width */
    height: auto; /* Maintain aspect ratio */
    margin: 10px;
    flex: 1 0 150px; /* Ensure each image takes up space equally */
    box-sizing: border-box;
    max-width: 150px; 
   
}


/* footer */
footer {
    background-color: #4472C4;
    color: white;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.footer-content .footer-logo img {
    width: 50px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links div {
    text-align: left;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}
.footer-logo img{
    width:100px;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
}
.social-media img{
    height:20px;
}
/* about page */

.about-hero {
    background-image: url('images/growth.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.about-hero .hero-text {
    /* background: rgba(0, 0, 0, 0.5); */
    display: inline-block;
    padding: 20px 40px;
    border-radius: 5px;
    color:#4472C4;
}

/* main {
    padding: 20px;
} */
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    max-width: 1000px;
}

.about-content img {
    max-width: 100%;
    border-radius: 10px;
    margin-right: 20px;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    color: #0066cc;

}

.our-values {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.our-values h2 {
    color: #0066cc;
    margin-bottom: 20px;
}

.values-content {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.value-box {
    flex: 1;
    max-width: 300px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-box img {
    max-width: 50px;
    margin-bottom: 10px;
}


/* services */

.services-hero {
    background-image: url('images/services2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.services-hero .hero-text {
    /* background: rgba(0, 0, 0, 0.5); */
    display: inline-block;
    padding: 20px 40px;
    border-radius: 5px;
    color:#4472C4;
}
.our-services .services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.our-services .service-item{
    flex: 1 1 300px;
    margin: 10px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.service-item img {
    max-width: 100%;
    margin-bottom: 10px;
}

.service-paragraph h2{
    text-align: center;
    font-weight: bold;
}
.service-paragraph p{
    text-align:center;
    font-weight: normal;
}
/* single core service */

.core-hero{
    background-image: url('images/banking.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.core-body{
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    /* background-image: url(images/banking.jpg); */
}

.core-content {
    padding: 50px 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.core-description img{
    align-items: center;
    width:100%;
    height:50%;
}

.core-description h2{
color:#4472C4;
text-align:center;
margin-bottom: 10px;
font-size:xx-large;
}

.core-description p{
    text-align:left;
    margin-bottom: 20px;
    /* text-indent: 20px; */
    line-height: 1.2;
    font-size: bold;
}
.core-description ul {
    /* list-style: none; */
    /* padding: 0; */
    /* margin: 0;
    list-style-type: circle;
    margin-right: 50px; */
    list-style-type: disc; /* Bullet points */
    text-align: center; /* Center the list */
    padding: 0; /* Remove default padding */
    margin: 20px 0
}
.core-description ul li{
    text-align: left;
    margin-bottom: 10px;
    font-size: 1em;
    
}

/* single service page */
.service-hero{
    background-image: url('images/data.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.service-content {
    padding: 50px 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-description ul li{
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.2em;
    
}


.service-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color:#4472C4;
    text-align: center;
}
.service-content h1{
    text-align:center;
}

.service-content p {
    font-size: 1.2em;
    line-height: 1.2;
    margin-bottom: 20px;
}

/*blog css  */

.blog-hero {
    background-image: url('images/data.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-hero h1 {
    color: #4472C4;
    font-size: 48px;
    margin: 0;
}

.recent-posts {
    padding: 40px;
    text-align: center;
}

.recent-posts h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 45%;
    display: flex;
    overflow: hidden;
}

.post img {
    width: 40%;
    height: auto;
}

.post-info {
    padding: 20px;
    text-align: left;
}

.post-info p {
    margin: 0;
    color: #666;
}

.post-info h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}


.page-hero {
    background-image: url('images/data.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero h1 {
    color: #4472C4;
    font-size: 48px;
    margin: 0;
}
.single-post {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.single-post h1 {
    margin-top: 0;
}

.single-post .post-meta {
    color: #888;
    margin-bottom: 20px;
}

.single-post .post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.single-post .post-content p {
    margin-bottom: 20px;
}




/* Contact info styles */

.contact-hero {
    background: url('images/contact.jpg') no-repeat center center;
    background-size: cover;
    padding: 20px ;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 2em;
    margin: 0;
    color:#4472C4
}

.contact-hero2 p {
    font-size: 18px;
    text-align:center;
    margin: auto;
    color:black;
    padding-top:5px,5px;
    font-weight: bold;
}
.contact-info {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f9f9f9;
    width: 80%;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-method {
    text-align: center;
    flex: 1;
    margin: 0 10px;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-method img {
    height: 80px;
}

.contact-method h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

/* Contact form styles */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(45deg);
    }

    .nav-menu{
        position:fixed;
        left: -100%;
        top: 70px;
        gap:0;
        flex-direction: column;
        background-color: #4472C4;
        width:100%;
        text-align: center;
        transition:0.3s;
    }

    .nav-item{
        margin:16px 0;

    }
    .nav-menu.active{
        left:0;
    }
    /* .hideOnMobile{
        display:none;
    }

    .menu-button{
        display: block;
    } */
    


    .chatbot {
        position: absolute;
        top: 5px;
        left: 20px;
        margin-top: 25%;
    }

    .chatbot-button {
        padding: 8px 10px;
        font-size: 1em;
        margin-bottom: 5px;
    }

    .chatbot p{
        font-size: smaller;
    }
    
    .hero p {
        font-size: 1em;
        text-align: left;
        margin-bottom: 10px;
    }
    /* .hero {
        padding: 20px 10px;
    } */

    .hero{
        height:50vh;
        background-image: url("images/Frame\ 54.png");
        background-size: cover;
        /* background-repeat: no-repeat; */
        background-blend-mode: multiply;
    }
    .hero h1 {
        font-size: 1.5em;
        text-align: left;
        /* padding: 40px 20px; */

    }

    .about-us {
        /* display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 40px; */
        flex-direction: column;
        width: 50%;
        padding: 20px;
        align-items: center;
    }
    .about-us{
        height:auto;
        width:auto;
        display: column;
        justify-content: space-between;
    }
    .about-content{
        display: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .about-content img{
        height:auto;
        width: 25%;
        padding-left: 25%;
    }
    
    .about-text{
        text-align: left;
        font-size: 1em;
        font-weight: lighter;
        margin-bottom: 20px;
    }


    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* header nav ul {
        flex-direction: column;
        gap: 10px;

    } */

    
    .services-grid, .industries-grid, .blog-posts,.recent-posts, .partners-logos {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .service, .industry, .partner, .blog-post, .core-service {
        width: 100%;
    }

    form {
        padding: 10px;
    }

    .contact-info {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .contact-method {
        margin: 10px 0;
    }
   

    
        

    /* nav ul.show {
        display: flex;
    } */
    
    
    
    

    
/* 
    .sidebar{
        position:fixed;
        top:0;
        right:0;
        height:100vh;
        width:250px;
        z-index:999;
        background-color:#4472C4;
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction:column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .sidebar li{
        width: 100%
    }
    .sidebar a{
        width:100%
    }   */

    /* .menu-button{
        display: none;
      } */
  

}




