.feature-images-wrapper .ht-box-images {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure full height */
    border: 1px solid #e0e0e0; /* Optional: add a border */
    border-radius: 8px; /* Optional: add rounded corners */
    overflow: hidden; /* Prevent overflow */
    background-color: #fff; /* Background color */
}

.feature-images-wrapper .image-box-wrap {
    flex: 1; /* Take available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content */
    align-items: center; /* Center content */
}

.feature-images-wrapper .content {
    padding: 20px; /* Padding for content */
    text-align: center; /* Center text */
}

.feature-images-wrapper .box-image img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}


.product-summary-section {
    /* background-color: #f5f7fa; Light background for contrast */
    padding: 60px 0; /* Space above and below */
     /* Soft separator from next section */
}

.product-summary-content {
    max-width: 800px; /* Keeps content centered and readable */
    margin: 0 auto; /* Center the content */
    text-align: center; /* Center-align text */
}

.product-summary-section .heading {
    font-size: 26px; /* Larger, prominent font */
    font-weight: 600; /* Bold for emphasis */
    color: #333; /* Primary heading color */
}

.product-summary-section .text {
    font-size: 18px; /* Slightly smaller than heading */
    line-height: 1.7; /* Improves readability */
    color: #555; /* Softer color for paragraph */
    margin-top: 20px;
}
.vision-overview .overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-overview .overview-list li {
    margin-bottom: 10px;
}

.vision-overview .overview-list strong {
    color: #333;
    font-weight: 600;
}
.footer-area-wrapper {
    background-color: #f8f9fa; /* Adjust as needed */
}

.footer-area {
    padding-top: 40px;
    padding-bottom: 40px; /* Adjust these values for the top section spacing */
}

.footer-copyright-area {
    background-color: #e0e0e0; /* Separate color for the copyright section */
    padding-top: 10px; /* Reduced padding for a more compact look */
    padding-bottom: 10px;
    margin-top: 0; /* Remove extra space above if needed */
    border-top: 1px solid #ccc; /* Optional: add a border for separation */
}

.copyright-text {
    font-size: 14px;
    color: #666; /* Adjust text color if necessary */
}
.tile {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin-bottom: 20px; /* Space between tiles */
}

.tile .fun-fact__count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.tile .fun-fact__text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}
.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #ffc82d;
}
.icon-style {
    font-size: 2rem;        /* Icon size */
    color: #003A50;         /* Icon color - adjust as needed */
    margin-bottom: 10px;    /* Space between icon and text */
}

.tile {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.tile .fun-fact__count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.tile .fun-fact__text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}




.fun-fact-wrapper .row {
    display: flex;
    align-items: center;       /* Center vertically */
    justify-content: center;    /* Center horizontally if needed */
}

.col-lg-4.offset-lg-1 {
    margin-left: auto;
    margin-right: auto;         /* Centers the element horizontally */
    text-align: center;         /* Center text inside the column */
}








/* General Styles */
.ht-tab-wrap {
    padding: 20px;
    border-radius: 8px;
    
}

.ht-tab-menu .nav-link {
    font-size: 1.1em;
    color: #555;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ht-tab-menu .nav-link.active {
    background-color: #003A50;
    color: white;
}

.tab-content-inner h2 {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8em;
    color: #333;
    text-transform: uppercase;
}

.icon-highlight {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.4em;
    animation-duration: 1.5s;
}





/* Animated Icons */
.bounce-icon {
    animation: bounce 2s infinite;
}

.spin-icon {
    animation: spin 2s linear infinite;
}

.pulse-icon {
    animation: pulse 2s infinite;
}

.shake-icon {
    animation: shake 0.8s infinite;
}

.glow-icon {
    animation: glow 1.5s ease-in-out infinite alternate;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px #007bff; }
    100% { box-shadow: 0 0 20px #007bff; }
}









.tab-content-inner h2 {
    font-size: 1.5rem; /* Adjust the size as needed */
    margin-bottom: 20px;
}

.tab-content-inner p {
    font-size: 1rem; /* Adjust the size as needed */
    text-align: justify;
    margin-bottom: 15px; /* Optional: for spacing between paragraphs */
}






.contact-info-three {
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.contact-info-three .heading {
    font-size: 18px; /* Adjust heading size */
    color: #333; /* Darker color for better visibility */
}

.contact-info-three .call-us {
    font-size: 16px; /* Size for the contact details */
    color: #555; /* Medium gray for contact text */
    margin: 10px 0; /* Margin between items */
}

.contact-info-three .call-us a {
    color: inherit; /* Inherit the color from the parent */
    text-decoration: none; /* Remove underline */
}


.contact-info-three i {
    margin-right: 8px; /* Space between icon and text */
    color: #003A50; /* Icon color */
    font-size: 18px; /* Size of icons */
}




.tab-content-inner {
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    height: 100%; /* Allow height to be 100% for full vertical centering */
}

.tab-content-inner > div {
    flex: 1; /* Allow child divs to take equal space */
}





/* header button */
.headerbutton {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 46px;
    height: 55px;
  }
  .headerbutton {
    font-size: 15px;
    font-weight: 500;
    border-style: solid;
    border-radius: 5px;
    border-color: transparent;
    padding: 0 13px;
    text-align: center;
    color: black;
    background: white;
    border-width: 1px;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }









  .key-offerings-section .offering-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

.key-offerings-section .offering-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.key-offerings-section .icon-box {
    margin-bottom: 20px;
    display: inline-block;
    background: #f0f9ff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.key-offerings-section .heading {
    color:black;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.3;
}

.key-offerings-section .text {
    font-size: 16px;
    color: #666666;
}

.key-offerings-section .section-title-wrap h3 .text-color-primary {
    color: #003a50;
}















.section-wrapper {
    margin: 20px 0;
    padding: 20px;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.solution-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.solution-card {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-left: 4px solid #3498db; /* Adjust color to match brand */
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 16px;
    color: #555;
}





.box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-icon i {
    font-size: 48px;
    color: #003a50; /* Adjust color as needed */
}






.solution-card:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0px 8px 15px rgba(0, 58, 80, 0.2); /* Add shadow on hover */
    cursor: pointer;
    background-color: #ffc82d;
    color: black;
}

/* Add custom styling for icons and text */
.solution-card {
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.solution-card .box-icon i {
    transition: color 0.3s;
}









.challenge-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.challenge-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #ffc82d; /* Light blue background on hover */
    cursor: pointer;
}

.challenge-box:hover .box-icon i {
    color:black; /* Change icon color on hover */
    cursor: pointer;
}

.challenge-box h5 {
    color:black;
    transition: color 0.3s ease;
}



.challenge-box p {
    color: #333;
    transition: color 0.3s ease;
}

.challenge-box:hover p {
    color: black; /* Slightly darker text on hover */
    cursor: pointer;
}
.challenge-box:hover h5 {
    color: black
    ; /* Slightly darker text on hover */
    cursor: pointer;
}



.card-size {
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    
    background-color: #fff;
    
}

.card-size .icon-box-wrap {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-size .content {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.card-size .heading {
    font-size: 18px;
    color: #003a50;
}

.card-size .icon {
    margin-bottom: 15px;
}





.solution-impact-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.solution-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    background-color: #ffc82d;
}

.solution-impact-card .icon-box-wrap {
    margin-bottom: 0px;
}

.solution-impact-card .icon {
    color: #003a50;
}

.solution-impact-card .heading {
    font-size: 18px;
    font-weight: bold;
    color: #003a50;
    margin-top: 0px;
}

/* Ensuring the cards have consistent size */
.solution-impact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 25px;
}

.solution-impact-card .icon {
    margin-bottom: 15px;
}

.solution-impact-card .content {
    margin-top: auto;
}

/* Flexbox grid settings for responsive design */
.solution-impact-list .col-lg-3,
.solution-impact-list .col-md-6 {
    margin-bottom: 30px;
}



/* Social Impact Section Style */
.social-impact-wrapper {
    background-color: #f8f9fa; /* Light background */
    padding-top: 60px;
    padding-bottom: 60px;
}

.social-impact-card {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    
    height: 100%;
}

.social-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #ffc82d;
}

.social-impact-card .icon-box-wrap {
    margin-bottom: 20px;
}

.social-impact-card .icon {
    color: #003A50;
}

.social-impact-card .heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-impact-card .description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

/* Section Title Styling */
.social-impact-wrapper .section-title-wrap h3 {
    color: #003a50; /* Darker color for contrast */
}

.social-impact-wrapper .section-title-wrap .section-sub-title {
    color: #6c757d; /* A different color for the subtitle */
}

.social-impact-wrapper .section-title-wrap p {
    color: #495057;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}






.testimonial-slider__single {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.testimonial-slider__single:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.wow.animate__zoomIn {
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
}






.social-link.hint--bounce.hint--top.hint--primary:hover {
    background-color: #ffc82d;
    color: black;
}









/* Set background for counter section */
.fun-fact-wrapper {
    background-color: white;
}

/* Style for counter numbers */
.fun-fact__count {
    font-size: 2rem;
    color: #333333; /* Dark text for contrast */
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Style for counter text */
.fun-fact__text {
    font-size: 1rem;
    color: #333333;
    margin-top: 10px;
}




.section-title-wrap .heading {
    color: #333333; /* Keep primary heading text dark for contrast */
    border-bottom: 3px solid #ffc82d; /* Adds a yellow underline */
    padding-bottom: 10px;
    display: inline-block;
   
}
 
    



    /* bredcrum area */

.breadcrumb-area {
    background: linear-gradient(180deg, #ffc82d 0%, #fff9e0 100%);
    padding: 180px 0;
}







.feature-icon-wrapper .ht-box-icon .icon-box-wrap {
    background-color: #f7f7f7; /* Light background for each card */
    padding: 20px; /* Padding inside each card */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.feature-icon-wrapper .ht-box-icon .icon-box-wrap:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
    transform: translateY(-5px); /* Small hover animation */
    transition: all 0.3s ease;
    background-color: #ffc82d;
}

.feature-icon-wrapper .heading {
    font-size: 1rem; /* Set heading font size */
    color: black; /* Matching text color */
    font-weight: bold;
    text-transform: capitalize;
}







/* Default button style */
.headerbutton {
    background-color: #ffc82d; /* Yellow when the header is stable */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* When the header is sticky */
.header-area.is-sticky .headerbutton {
    background-color: white; /* White background when header is sticky */
}







.contact-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 100px;
    color: #333;
    text-align: center;
}









/* Two-toned background */
.features-background {
    background: linear-gradient(135deg, #ffffff 50%,  #ffc82d
     50%);
    padding: 60px 0;
}

/* Centering the heading */
.heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

/* Flexbox for row layout */
.features-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual feature cards */
.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    width: 210px;
    height: 260px; /* Fixed height for all cards */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

/* Apply offset for staggered cards */
.feature-card-offset {
    margin-top: -20px; /* Adjust this value for the offset effect */
}

/* Icons inside cards */
.feature-icon i {
    font-size: 2.5rem;
    color: #003A50;
    ; /* Red-orange color for icons */
    margin-bottom: 15px;
}

/* Card title styling */
.feature-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Description text */
.feature-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

/* Link styling for "More" */
.feature-link {
    font-weight: bold;
    color: #ff6347;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hover effect for cards */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card, .feature-card-offset {
        width: 90%;
        margin-top: 0; /* Remove offset on smaller screens */
        margin-bottom: 20px;
    }
}




/* CSS to reduce the height of the cards */
.feature-images__one .ht-box-images.style-01 {
    padding: 10px; /* Reduce padding */
}

.feature-images__one .ht-box-images .image-box-wrap {
    padding: 10px; /* Reduce padding inside the image box */
}

.feature-images__one .ht-box-images .box-image img {
    max-height: 60px; /* Reduce image height */
    width: auto; /* Maintain aspect ratio */
}

.feature-images__one .ht-box-images .content {
    padding-top: 10px; /* Reduce padding between image and content */
}

.feature-images__one .ht-box-images .content h5 {
    font-size: 1.1rem; /* Adjust heading size */
}

.feature-images__one .ht-box-images .content .text {
    font-size: 0.9rem; /* Adjust text size */
    line-height: 1.4; /* Adjust line spacing */
}






.feature-images-wrapper {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden; /* Hide anything that goes outside the container */
}

.wavify-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures background is behind the content */
}

.wavify-background svg {
    position: absolute;
    width: 100%;
    height: 150px; /* Adjust this height to control wave size */
    bottom: 0;
}

.feel-the-wave,
.feel-the-wave-two {
    fill: #ffc82d; /* Set the wave color to yellow */
    animation: wave-animation 5s infinite linear;
}

@keyframes wave-animation {
    0% {
        transform: translateY(0); /* Starts at the bottom */
    }
    100% {
        transform: translateY(-100px); /* Moves upward */
    }
}

.section-title-wrap h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}




/* Responsive Styles */
@media (max-width: 1200px) {
    /* For large screens, like desktops */
    .feature-images-wrapper .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    /* For medium screens, like tablets */
    .section-title-wrap h3 {
        font-size: 1.8rem;
    }

    .feature-images-wrapper .row {
        margin: 0;
    }

    .block {
        margin-bottom: 30px; /* Add space between blocks */
    }

    .ht-box-images .content {
        padding: 20px; /* Add padding to content for better spacing */
    }
}

@media (max-width: 768px) {
    /* For smaller screens, like mobile devices */
    .section-title-wrap h3 {
        font-size: 1.6rem; /* Smaller title font size */
    }

    .block {
        /* Stack the cards in a single column */
        width: 100%;
    }

    .ht-box-images .content {
        padding: 15px;
    }

    .feature-images-wrapper {
        padding-top: 60px;
        padding-bottom: 60px; /* Reduce padding for mobile */
    }

    .wavify-background svg {
        height: 100px; /* Adjust wave height for mobile */
    }
}

/* For very small screens, like portrait mobile devices */
@media (max-width: 576px) {
    .section-title-wrap h3 {
        font-size: 1.4rem;
    }

    .block {
        width: 100%;
        margin-bottom: 20px; /* Add space between cards */
    }

    .ht-box-images .content {
        padding: 10px; /* Smaller padding */
    }

    .feature-images-wrapper {
        padding-top: 40px;
        padding-bottom: 40px; /* Further reduce padding for very small screens */
    }
}





