html {
    font-size: 14px;
    scroll-behavior:smooth;
    scroll-padding-top: 80px; /* Adjust according to navbar height */
    padding-bottom:50px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin-top: 80px;
    margin-bottom: 60px;
    overflow-x: hidden;
}

html body {
    font-family: "Nunito Sans", sans-serif;

}

.text-nav {
    color: #1c1f4c !important;
    font-weight: bold;
}

.text-nav:hover {
    color: #00C4CC !important;
}

    .text-nav:active {
        color: #007b80 !important;   
    }

.text-navy {
    color: #1c1f4c;
}
.text-teal {
    color: #00C4CC;
}

.bg-teal{
    background-color: #65e5ea;
}
.bg-purple{
    background-color:#281939;
}

.link-teal {
    color: #00C4CC;
}

    .link-teal:hover {
        color: #007b80;
    }

.btn-teal {
    font-weight:bold;
    color: white;
    background-color: #00C4CC;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
}

    .btn-teal:hover {
        color: white;
        background-color: #007b80;
    }

    .btn-teal:active {
        color: white;
        background-color: #00484b;
    }

.btn-navy {
    font-weight: bold;
    color: white;
    background-color: #1c1f4c;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
}


    .btn-navy:hover {
        color: white;
        background-color: #32355d;
    }


    .btn-navy:active {
        color: white;
        background-color: #131535;
    }

.container-fluid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

.top-banner {
    background-image: url('../images/0b111a_2cf6bfa8ece741269d36c25acf5e21de~mv2.jpg');
    background-size: cover;
    height: 100%;
    width: auto;
    background-repeat:no-repeat;
    background-attachment: fixed;  
    background-position:center top;
}


.full-height {
    height: 100vh;
}

@media (max-width: 1024px) { /* Targets iPads and smaller screens */
    .full-height {
        height: 50vh;
    }
}

@media (max-width: 375px) { /* Targets iPads and smaller screens */
    .full-height {
        height: 60vh;
    }
}



.system-icons {
    width: 115px;
    height: 115px;
}

.data-icons {
    width: 135px;
    height: 115px;
}


.cloud-icons {
    width: 143px;
    height: 115px;
}

.strategic-icons {
    width: 135px;
    height: 115px;
}

.bg-skyblue{
    background-color:#bde9fb;
}

.bg-about-img {
    background-image: url('../images/0b111a_cbee1f045e354f3abd01e12b4c5be00b~mv2.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}


.bg-blue {
    background-color: #2d445e;
}

.bg-navy {
    background-color: #1c1f4c;
}

.bg-metho-img {
    background-image: url('../images/istock-1031333576.jpg');
    background-size: cover;
    background-position: center bottom;
    height: 100%; /* Adjust the height as needed */
    width: auto; /* Ensure it's fully responsive */
    display:block;
}

/* Additional mobile-specific styles */
@media (max-width: 768px) {
    .bg-metho-img {
        background-position: center top;
        height: 60vh;
    }

    .bg-approach-img {
        background-position: center center;
        height: 60vh;
    }
}

.bg-approach-img {
    background-image: url('../images/0b111a_92ab25d6b0594ef6ad49049b6a7a3339~mv2.jpg');
    background-size: cover;
    background-position: center;
    height: 100%; /* Adjust the height as needed */
    width: 100%; /* Ensure it's fully responsive */
}

@media (min-width: 800px) and (max-width: 800px) {
    .vh-lg-100 {
        height: 40vh !important;
    }
}

.custom-input {
    border: none;
    border-bottom: 2px solid #495057; /* Adjust color as needed */
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

    .custom-input:focus {
        border-bottom: 2px solid #007bff; /* Change color on focus */
        outline: none;
        box-shadow: none;
    }

textarea.custom-input {
    resize: none;
}

footer[b-k3ksndbxtt] { 
   line-height: 20px !important;
   padding-top:20px;
}


@media (max-width: 576px) {
    .text-sm-center {
        text-align: center;
    }
}

/* Top Banner that fades in immediately */
.fade-top {
    opacity: 0; /* Initially invisible */
    animation: fadeInTop 1s forwards; /* Fade-in effect for the top banner */
}

.fade-in {
    opacity: 0; /* Initially invisible */
    transition: opacity 1s ease-out; /* Smooth fade-in for scroll-triggered elements */
}

    .fade-in.visible {
        opacity: 1; /* Fully visible when class 'visible' is added */
    }

/* Animation for the top banner */
@keyframes fadeInTop {
    to {
        opacity: 1; /* Fully visible */
    }
}


/* Set a fixed height for the .carousel-item-1 class */
.carousel-item-1 {
    height: 500px; /* Or adjust based on your preference */
    min-height: 400px; /* Ensures smaller screens have a minimum height */
    position: relative; /* Ensure positioning context for the absolute caption */
}

/* Ensure the carousel caption is centered vertically */
.carousel-item-1 .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center the caption vertically */
    bottom: auto;
    left: 20px;
    right: 20px;
    z-index: 10;
    text-align: left; /* Adjust text alignment if needed */
    width: auto; /* Keep the width of the text unaffected */
    padding: 0; /* Optional: remove any padding that may affect the layout */

}


/* For large screens (desktop) - set padding to 50px */
@media (min-width: 1024px) {
    .carousel-item-1 .carousel-caption {
        left: 50px;
        right: 50px;
    }
}


.carousel-item-2 {
    height: 400px; /* Default height */
    min-height: 400px; /* Minimum height */
    position: relative;
    margin-bottom: 50px;
    margin-top: 50px;
}

/* For medium screens (tablets, etc.) */
@media (max-width: 810px) {
    .carousel-item-2 {
        height: 500px; /* Adjust the height for smaller screens */
        min-height: 300px;
    }
}

/* For medium screens (tablets, etc.) */
@media (max-width: 800px) {
    .carousel-item-2 {
        height: 500px; /* Adjust the height for smaller screens */
        min-height: 500px;
    }
}

/* For medium screens (tablets, etc.) */
@media (max-width: 768px) {
    .carousel-item-2 {
        height: 300px; /* Adjust the height for smaller screens */
        min-height: 300px;
    }
}

/* For smaller screens (phones) */
@media (max-width: 576px) {
    .carousel-item-2 {
        height: 650px; /* Further adjust the height for very small screens */
        min-height: 650px;
    }
}

/* For smaller screens (phones) */
@media (max-width: 390px) {
    .carousel-item-2 {
        height: 750px; /* Further adjust the height for very small screens */
        min-height: 750px;
    }
}


/* For smaller screens (phones) */
@media (max-width: 375px) {
    .carousel-item-2 {
        height: 800px; /* Further adjust the height for very small screens */
        min-height: 800px;
    }
}


