* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
    /* font-family: 'Roboto'; */    
}
body {
    font-family: 'Lato', sans-serif;
}
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}
body {
    max-width: 100%;
    background-color: #f8f9fa;
    font-size: 0.88rem;
    color: grey; /* Change this to your desired font color */    
}

body, html {
    overflow-x: hidden;
}

/* Top Nav Start*/
.topbar {
    background-color: #023168;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.topbar a {
    color: white;
    text-decoration: none;
    margin: 0px 0px 0px 10px;
}
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}
.social-links li {
    display: inline-block;
}
.social-links a {
    color: white;
    font-size: 18px;
}
.login-btn {
    background: white;
    color: #023168 !important;
    padding: 3px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 5px;
}
.contact-info {
    margin-bottom: 10px;
}
@media(min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .contact-info, .social-links, .login-btn {
        margin: 0;
    }
}
/* Top Nav End*/

/* Footer Section  Start*/
.footer {
    background-color: #222;
    color: white;
    padding: 20px 0px;
    font-size: 14px;
    
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1024px;
    margin: auto;
}

.footer-column {
    flex: 0;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left;
    height: 100vh;
    max-height: 295px;
}
.footer-column-small {
    min-width: 150px;
    
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column ul {
    line-height: 1.6;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column p,
.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ddd;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #111;
    font-size: 13px;
}

/* Responsive Design for container*/
@media (max-width: 768px) {
    
    .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        min-width: 370px;
        box-sizing: border-box;
    }
    .container-menu{
        flex-direction: row;
    }
}
/* Footer Section  End*/


.color-forany{
    color: white !important;
}


/* Nav bar Section Start */
/* Navigation Bar */
.nav-container {
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 42px; /* Initially below top bar */
    left: 0;
    transition: top 0.3s ease-in-out;
    z-index: 1001;
}

/* Sticky Navbar when scrolling */
.sticky-nav {
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
}

.nav-logo span {
    color: gray;
}

.nav-logoSize{
    max-width: 250px;
    max-height: 50px;
}
/* Adjust for smaller screens */
@media (max-width: 768px) {  /* Tablets and smaller */
    .nav-logoSize {
        max-width: 180px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {  /* Mobile devices */
    .nav-logoSize {
        max-width: 140px;
        max-height: 30px;
    }
}

.nav-menu {
    list-style: none;
    display: flex;
    /* gap: 20px; */
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    color: grey;
    font-weight: bold;
    padding: 8px;

}

.nav-menu a:hover {
    border-bottom: 2px solid black;
}

.nav-menu li a:active,
.nav-menu li a:focus {
    color: #007bff; /* Change color */
    font-weight: bold;
    border-bottom: 2px solid #007bff; /* Underline effect */
}

.active-link {
    color: #007bff !important;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
}

@media screen and (max-width: 768px) { /* Tablets and smaller */
    .nav-container {
        top: 70px; /* Change top position for mobile */
    }
}
@media screen and (max-width: 385px) { /* Tablets and smaller */
    .nav-container {
        top: 85px; /* Change top position for mobile */
    }
}
.register-btn {
    background-color: #003366;
    color: white;
    padding: 8px 16px;  /* Balanced padding */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;  /* Default font size */
    height: 40px;  /* Fixed height */
    line-height: 40px;  /* Center text vertically */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;  /* Prevents wrapping */

}

/* Responsive Adjustments */
@media (max-width: 768px) {  /* Tablet */
    .register-btn {
        font-size: 13px;
        padding: 6px 12px;
        height: 35px;
        line-height: 35px;
    }
}

@media (max-width: 480px) {  /* Mobile */
    .register-btn {
        font-size: 12px;
        padding: 5px 10px;
        height: 30px;
        line-height: 30px;
    }
}
/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hide navbar on scroll down */
.nav-hidden {
    top: -100px;
}

/* Responsive Design for nav-menu*/
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
    .nav-hidden {
        top: -100px;
    }
}
/* Nav Bar Section End */


/*  */
.elementor-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1024px;
    margin: auto;
    flex-wrap: wrap;
}

.text-section {
    flex: 1;
    padding: 20px;
    max-width: 380px;
}

.text-section h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color : #002c5f;
}

.text-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.buttons-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-download {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download i {
    margin-right: 10px;
}

.btn-download:hover {
    background: #0056b3;
}

.android {
    background: #28a745;
}

.android:hover {
    background: #1f7a31;
}

.ppt {
    background: #ff9800;
}

.ppt:hover {
    background: #e68900;
}

.image-section {
    flex: 1;
    text-align: center;
    max-width: 718px
}

.image-section img {
    max-width: 100%;
    height: auto;
}

.flowchartImage-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1024px;
    margin: auto;
    flex-wrap: wrap;
}

/* Image Styling */
.flowchartImage-section img {
    width: 100%; /* Adjust size as needed */
    height: auto;
}

@media (max-width: 768px) {/* mobile */

    .flowchartImage-section img {
        margin-bottom: 10px;
    }
}


/* display: flex;
justify-content: space-between;
align-items: center;
padding: 50px;
max-width: 1200px;
margin: auto;
flex-wrap: wrap; */

/* Responsive Design for elementor-container*/
@media (max-width: 768px) {
    .elementor-container {
        flex-direction: column;
        text-align: center;
    }
    
    .text-section {
        max-width: 100%;
    }

    .buttons {
        align-items: center;
    }
}

.demo-button {
    margin-bottom: 30px !important;
}

.btn-demo {
    display: inline-block;
    padding: 15px 30px;
    background: #002c5f;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.btn-demo:hover {
    background: #004080;
}

.content{
    margin: 0 auto 0 auto!important;
    max-width: 1024px;
}

.content h1 {
    font-size: 24px;
    color: #002c5f;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left; /* Ensures h1 is centered */
}

.content h2 {
    font-size: 50px !important;
    /* color: #002c5f; */
    font-weight: bold !important;
    margin-bottom: 40px !important;
    text-align: left; /* Ensures h2 is centered */
}

.content h3 {
    font-size: 18px !important;
    /* color: #002c5f; */
    font-weight: bold !important;
    margin-bottom: 40px !important;
    text-align: left; /* Ensures h2 is centered */
}
.content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 1024px;
    margin: 0 auto;
    text-align: left; /* Ensures text is centered */
}

/* Responsive for content*/
@media (max-width: 768px) {
    .btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .content h1 {
        font-size: 20px;
    }

    .content p {
        font-size: 14px;
    }
}
/*  */

.contain-center{
    display: flex; /* Required for flex properties */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    /*height: 100vh;*/ /* Full screen height */
    margin: 0; /* Remove unwanted margins */
}

/* Section Layout */
.container-section {
    width: 100%;
    max-width: 1024px;
    margin: 30px auto;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Image Styling */
.image-section img {
    width: 50%; /* Adjust size as needed */
    height: auto;
}

/* Text Styling */
.text {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .image-section img {
        margin-bottom: 10px;
    }
}

/* Features Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1024px;
    margin: auto;
}

/* Individual Feature Box START */
.feature {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

/* Icons */
.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Headings */
.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #002c5f;
}

/* Description */
.feature p {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr; /* Stacks items in a single column */
        padding: 20px;
    }
}
/* Individual Feature Box  END*/


/* logo-slider START*/

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px 0;
}

.logo-slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: 200%; /* Double the width to allow seamless scrolling */
}

.logo {
    flex: 0 0 auto;
    width: 150px; /* Adjust logo size as needed */
    margin: 0 15px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Keyframe animation for scrolling effect */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* logo-slider END*/

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }
.google { background: #db4437; } /* Google's Red */

.PageContain {
    margin-top: 120px !important; /* Same as header height */
    padding: 20px; /* Optional spacing */
}

@media (max-width: 768px) {
    .PageContain {
        margin-top: 200px !important; /* Same as header height */
    }
}

/*  About Us Page Start*/
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

.slanted-section {
    background-color: #5f7895; /* Darker blue-gray */
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;    
}

.section-background {
    background: linear-gradient(to bottom, #6c839f 80%, white 20%);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.slanted-section .content {
    max-width: 800px;
    margin: auto;
}

.slanted-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #fff; /* Keep white */
}

.slanted-section h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #f0f0f0; /* Slightly lighter for contrast */
}

.slanted-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
    color: #e0e0e0; /* Light gray for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .slanted-section {
        padding: 40px 15px;
        
    }

    .slanted-section h2 {
        font-size: 26px;
    }

    .slanted-section h3 {
        font-size: 18px;
    }

    .slanted-section p {
        font-size: 16px;
    }
}

/* Section Styling */
.tech-section {
    padding: 50px 10%;
    background-color: #fff;
}

.tech-section h2 {
    font-size: 28px;
    color: #0a2a5d;
    font-weight: bold;    
    text-align: center;
}

.tech-section p {
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* Content Layout */
.tech-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Card Grid */
.tech-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    flex: 1;
}

/* Individual Cards */
.card {
    background: #f1f4fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-top: 4px solid #0a2a5d;
}

.card h3 {
    font-size: 18px;
    color: #0a2a5d;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* Image */
.tech-image {
    flex: 1;
    text-align: right;
}

.tech-image img {
    max-width: 400px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-cards {
        grid-template-columns: 1fr;
    }

    .tech-image {
        text-align: center;
        margin-top: 20px;
    }
}
/*  About Us Page End*/


/* contact Us Page Start */

/* Contact Form Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    background: white;
}

/* Form Styling */
.contactus-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}

.contactus-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contactus-form input, .contactus-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contactus-form button {
    background-color: #002855;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.contactus-form button:hover {
    background-color: #0046a1;
}

/* Contact Info Section */
.contactus-info {
    flex: 1;
    padding-left: 30px;
    border-left: 2px solid #ddd;
}

.contactus-info h3 {
    color: #002855;
    margin-bottom: 15px !important; /* Space below the heading */   
}

.contactus-info h3 {
    color: #002855;
}

.contactus-info p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 40px !important; /* Space between rows */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .contactus-form {
        padding-right: 0;
    }

    .contactus-info {
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }
}
/* Contact Us page End */


 /* Style for the WhatsApp icon */
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}