body {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: #f8f9fa;
    overflow-x: hidden;
    font-size: 16px;
}
section{padding: 5rem 5% 5rem 5%;}
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #072758;
margin-bottom: 20px;
}
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #072758;
}

.h3,
h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
}

.h4,
h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
}
p {
    font-size: 1rem;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    height: 100vh;
    /* Adjust height as needed */
    background: url('../../assets/images/banner.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    /* Padding for content inside hero */
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 99;
}

.hero-section .col-12 {
    position: relative;
}

.hero-section img {
    width: 100%;
}

.hero-content {
    max-width: 50%;
    /* Adjust width for text content */
    z-index: 1;
    /* Ensure content is above overlay */
    margin-top: 5%;
    vertical-align: middle;
    display: table-cell;
    height: 100vh;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: normal;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-view-all {
    background-color: #007bff;
    /* Blue button */
    border-color: #007bff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    /* Rounded corners */
}
.form-card h3 {
    margin-bottom: 20px;
}
.form-card {
    background-color: #072758;
    padding: 2rem;
    border-radius: 15px;
    position: absolute;
    right: 0%;
    top: 85%;

    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    z-index: 9999;
}

.form-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    /* Lighter background for inputs */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 10px;
    /* Rounded input fields */
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
}

textarea.form-control {
    height: 150px;
}
.form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-card .btn-submit {
    background-color: #33A5E4;
    border-color: #33A5E4;
    width: 100%;
    color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    border: 0px;
    text-transform: uppercase;
}
.form-card .btn-submit:hover {
    background: #fff;
     color: #000;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    text-align: center;
    padding: 10px 20px;
}

.about {
    background-color: #fff;
}

.about-section {
    padding: 5rem 5%;
    justify-content: center;
    align-items: center;
}

.about-text {
    flex: 1;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #072758;
    line-height: 2.2rem;
}



.about-image-placeholder {
    flex: 1;
    text-align: right;
    
}
.about-image-placeholder img {
    width: 80%;
}
.btn-read-more {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
}

/* Navbar styling */
header.sticky .navbar {
    background: #fff;
    padding: 0.5rem 2%;
    border-radius: 0px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

header.sticky .navbar .navbar-nav .nav-link {
    color: #000 !important;
}

header.sticky .navbar-brand img {
    filter: none;
    max-height: 40px;
}

.navbar {

    padding: 1rem 5%;
    border-radius: 0 0 10px 10px;
    /* Rounded bottom corners */
}

.navbar-brand {
    color: white !important;
    font-size: 1.8rem;
    font-weight: bold;
}

.home .navbar-brand img {
    filter: brightness(0) invert(1);
    max-height: 60px;
}
.navbar-brand img {
    
    max-height: 60px;
}

.navbar-brand span {
    font-size: 1rem;
    display: block;
    font-weight: normal;
}

.home .navbar-nav .nav-link {
    color: white !important;
    margin-right: 1.5rem;
    font-weight: 400;
    font-size: 15px;
}
.navbar-nav .nav-link {
    color: #000 !important;
    margin-right: 1.5rem;
    font-weight: 400;
    font-size: 15px;
}
/* Dropdown CSS */
.nav-item ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-item ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
}

.nav-item ul li:last-child {
  border-bottom: none;
}

/* Submenu links */
.nav-item ul li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item ul li a:hover {
  background-color: #f5f5f5;
  color: #33A5E4;
}

/* Show submenu on hover */
.nav-item:hover > ul {
  display: block;
}






.btn-request-quote {
    background-color: #33A5E4;
    border-color: #33A5E4;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
}

.btn-blue {
    background-color: #33A5E4;
    border-color: #33A5E4;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
}

.btn-blue:hover {
    background-color: #072758;
    border-color: #072758;
    color: #fff;
}
.btn-dark-blue {
    background-color: #072758;
    border-color: #072758;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
}

.btn-dark-blue:hover {
    background-color: #33A5E4;
    border-color: #072758;
    color: #fff;
}

.btn-primary {
    font-size: 15px;
}

.btn-secondary {
    background-color: #072758;
    border-color: #072758;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
}

.btn-secondary:hover {
    background: none;
    border-color: #072758;
    color: #072758;
}

/* Services Section Styling */

.services-section {
    background-color: #002c6b;
    /* Dark blue background */
    color: white;
    
}

section.services-section::before {
    content: "";
    width: 37%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: #33a5e4;
    height: 50%;
    z-index: -1;
}

.services-intro {
    padding-right: 3rem;
}

.services-intro h2 {
    color: #fff;
}


.services-card {

    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    height: 100%;
    /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services-card a{display: block; text-decoration: none;}
.services-card .icon-placeholder {
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;


}

.services-card h3, .services-card h3 a {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #33a5e4;
    text-decoration: none;
}

.services-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: #fff;
    /* Allow description to take available space */

}

.services-card .btn-read-more-card {
    background-color: transparent;
    /* border: 1px solid white; */
    color: #33a5e4;
    padding: 0;
    text-decoration: none;
    display: inline-block;

}

.services-card .btn-read-more-card:hover {

    color: white;
}

/* AI Section Styling */
.ai-section {
   
    background-color: #fff;
}

.ai-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ai-text {
    flex: 1;
}

.ai-text h3 {
    color: #33A5E4;
    /* Blue color for subtitle */
}

.ai-text p {
    margin-bottom: 1rem;
  
}

.ai-image-container {
    flex: 1;
    position: relative;
    min-height: 400px;
    /* Minimum height for the image container */



}

.ai-overlay-box {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.ai-overlay-box.top-right {
    top: 15%;
    right: 5%;
    background: #33a5e4;
    color: #fff;
}

.ai-overlay-box.mid-left {
    top: 45%;
    left: -10%;
    background: #002c6b;
    color: #fff;
}

.ai-overlay-box.bottom-center {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #002c6b;
}
.ai-image-container img{width:100%;}

/* Our Work Section Styling */
.our-work-section {
    
    background-color: #f0f2f5;
    /* Light gray background */
}

.our-work-intro {
    margin-bottom: 3rem;
    max-width: 600px;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}


.work-placeholder-block {
    background-color: #e0e0e0;
    /* Gray placeholder background */
    height: 300px;
    /* Placeholder height */
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.work-placeholder-block.dark {
    background-color: #002c6b;
    /* Dark blue background for specific blocks */
}

/* Blog Section Styling */
.blog-section {
    
    background-color: #f8f9fa;
    /* Light background for the section */
    text-align: center;
}

.blog-section h2 {

    margin-bottom: 3rem;
}

.blog-post-card {

    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content to bottom */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-position: center center;
    position: relative;
    border-radius: 5px;
    overflow: hidden;

}
.blog-post-card img.wp-post-image {
    height: 350px !important;
    object-fit: cover;
}

.blog-post-card a {
    display: block;
    position: relative;
}

.blog-post-card img {
    width: 100%;
    transition: transform 0.3s ease;
}

.blog-post-card:hover img {
    transform: scale(1.1);
}

.blog-post-card:hover a::after,
.blog-post-card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    /* Gradient overlay */

}

.blog-post-card h4 {
    color: #fff;
    position: absolute;
    /* Bring text above overlay */
    z-index: 1;
    bottom: 0px;
    text-align: center;
    width: 100%;
    padding: 10px;
}

.blog-section .btn-read-more {
    margin-top: 3rem;
}

/* Footer Styling */
.footer-section {
    background-color: #fff;
    padding: 3rem 5% 0px;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #072758;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #33A5E4;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #33A5E4;
    text-decoration: none;
}
.fphone a{font-size: 30px;}
.footer-contact a:hover {
    text-decoration: underline;
}
.social-icons {
           list-style: none;
           padding: 0;
           display: flex;
           gap: 1rem;
           margin-top: 20px;
       }
       .social-icons li {
           display: inline;
       }
       .social-icons a {
           text-decoration: none;
           color: #072758 !important;
           font-size: 2rem !important;
       }
.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}


/* Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.inner-banner { padding: 120px 0 40px; /* Adjust padding as needed */
background: linear-gradient(270deg, #DFE6F8 0%, #F1F5FE 49.52%, #F2F7FC 100%);}
.inner-banner h1{ text-align: center;}


/* About US Page */
 .about-us-section {
            padding: 120px 0 80px; /* Adjust padding as needed */
            background: linear-gradient(270deg, #DFE6F8 0%, #F1F5FE 49.52%, #F2F7FC 100%);

        }
        .about-us-section img {
    width: 100%;
}
.mission {
    height: 300px;
    width: 300px;
    border-radius: 100%;
    background: #33A5E4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 20px;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}
.mission h3{color: #fff;}
.mission p{ text-align: center;}
    .vision {
    height: 300px;
    width: 300px;
    border-radius: 100%;
    background: #072758;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 20px;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}
.vision h3{color: #fff;}
.vision p{ text-align: center;}   
    
.technology{ background: url('../../assets/images/technology-prallax.jpg') no-repeat center center/cover fixed; background-size: 100%; color: #fff; padding: 120px 0px;}      
.technology h2{color: #fff;}

.inner-serivces-cards .process-cards {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;}

.process-cards {display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;}
.process-cards .card {
   background: white;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    text-align: left;
}
.inner-serivces-cards .process-cards .card::before {
  display: none;
}
.process-cards .card::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    right: 0;
    background: #cfe6fb;
    color: #6272a3;
    font-weight: bold;
    padding: 1rem 2rem;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 40px;
    font-size: 2rem;
}
.process-cards .card .icon {
    font-size: 2rem;
    color: #1d2d5c;
}
.process-cards .card h3{    margin-top: 1rem; font-weight: 600;        color: #1d2d5c;}
.process-cards .card p {
    margin-top: 0.5rem;
    
}
section.blue-cta {
    background: #002c6b;
}
section.blue-cta h2, section.blue-cta p{color:#fff;}
/* End About Us Page */

/* Services Page */

 .services-top {
            padding: 120px 0 80px; /* Adjust padding as needed */
            background: linear-gradient(270deg, #DFE6F8 0%, #F1F5FE 49.52%, #F2F7FC 100%);

        }
.servicelist{ background: #fff;}
.servicelist .row{ margin-bottom: 4rem;}
.servicelist .row:last-child {
    margin-bottom: 0;
}
.servicelist img{width:100%;}
.servicelist .scontent {
    padding: 2rem;
    
}
.servicelist.lblue{    background: #33a5e4;}
.servicelist.lblue h2, .servicelist.lblue p{color:#fff}

.listing-card ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.listing-card ul li {
    /* background: #fff; */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); */
    border-bottom: 2px solid #33a5e4;
}
.listing-card ul li p {
    margin-bottom: 5px;
}

/* Contact Us Page */
.contact .container{ max-width: 1000px;}
.contact form {
    background: #002c6b;
    padding: 20px;
    border-radius: 20px;;
}

.contact form h2{color:#fff;}
.contact form .btn-blue {
    background-color: #33A5E4;
    border-color: #33A5E4;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
    display: block;
    width: auto;
}
.cinfocard {
    padding: 10px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    border-radius: 10px;
}
.cinfocard img {
    display: inline-block;
}
.contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
}
.contact a {
    text-decoration: none;
}
.cinfocard.phone a{font-size: 20px; color: #33A5E4;}
.cinfocard.email a{font-size: 16px; color: #33A5E4;}
.cinfocard.social ul{margin-top: 0px; margin-bottom: 0px;}

/* Responsive adjustments */
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1240px;
    }
}
@media (max-width: 1024px) {

.hero-content {
    height: auto;
}
.hero-content h1 {
    font-size: 1.7rem;
    line-height: 3rem;
}
.navbar-brand img {
  
    max-height: 50px;
}
.hero-section{height: 80vh;}
}
.about-section {
    
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .servicelist .scontent {
    padding: 0rem;
    text-align: center;
    margin-bottom: 2rem;
    
}
.services-top {
    padding: 40px 0 60px;
  
}
    header.sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}
    .hero-content {
        max-width: 80%;
    }
    .about-section {
    
    justify-content: center;
    align-items: center;
}
.our-work-intro {
   display: block;
}
.form-card {
    position: static;
    transform: none;
    margin-top: 2rem;
    width: 100%;
}
.fquick, .fservices{display: none;}
    .hero-section {
        flex-direction: column;
        justify-content: center;
        
        height: auto;
        /* Allow height to adjust */
    }
    .technology {
    padding: 50px 0px;
    background-size:auto;
    

}
.mission-vision .col.d-flex {
    justify-content: center !important;
}
    .about-section {
       
        align-items: center;
        text-align: center;
    }

  .about-image-placeholder {
    width: 100%;
    text-align: center;
}

    .services-intro {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .ai-content {
        flex-direction: column;
        text-align: center;
    }

    .ai-image-container {
        width: 90%;
        margin: 0 auto;
        min-height: 300px;
    }
    

.ai-overlay-box.mid-left {
    left: 49%;
    transform: translateX(-49%);
    top: 65%;
}

 .ai-overlay-box.top-right {
    top: 0%;
    right: 42%;
    transform: translateX(36%);
    width: auto;
}

 .ai-overlay-box.bottom-center {
    bottom: -15%;
    left: 35%;
    transform: translateX(-24%);
}

    .our-work-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-post-card {
        margin-bottom: 1.5rem;
        /* Add margin for stacking on smaller screens */
    }

    .footer-section .col-md-3,
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
        /* Spacing between columns on smaller screens */
    }

    .footer-section .col-md-3:last-child,
    .footer-section .col-lg-3:last-child {
        margin-bottom: 0;
    }

/* About Us Page */
.about-us-section {
   padding: 50px 0 80px;
}

.about-images {
                height: auto; /* Allow height to adjust on smaller screens */
                margin-top: 50px;
            }
            .about-images .circle-img {
                position: relative; /* Make them flow naturally */
                margin-bottom: 20px;
                width: 150px; /* Smaller on mobile */
                height: 150px;
                display: block; /* Stack them */
                left: auto;
                top: auto;
                transform: none;
            }
            .about-images .d-flex-wrap-md {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }


}

@media (max-width: 768px) {
  section.services-section::before {
 display: none;
}
.navbar {
    background: #fff;
    position: relative;
}
.navbar-brand img {
    filter: none;
    
}


    .hero-content p {
        font-size: 1.2rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-collapse {
        /* background-color: rgba(0, 0, 0, 0.8); */
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .ai-text h3 {
        font-size: 1.3rem;
    }

    .ai-overlay-box {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .blog-section h2,
    .our-work-intro h2 {
        font-size: 2rem;
    }
}