:root {
    --background-blue: #001F54;
    --background-white: #ffffff;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-green: #28A745;
    --text-blue: #001F54;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0066cc;
    color: var(--text-white);
    padding: 10px 13px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.explore-btn .btn-text {
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.explore-btn .arrow-container {
    background-color: white;
    width: 37px;
    height: 37px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.explore-btn .arrow {
    color: #0066cc;
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 102, 204, 0.4);
    background-color: #0052a3;
}

.explore-btn:hover .arrow {
    transform: translateX(5px);
}

/* Active effect */
.explore-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
}

/* margin */
.section-margin-fix {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .section-margin-fix {
        margin-top: 37px;
    }
}

/* body section allpage */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* header section allpage */
.header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
    filter: brightness(60%);
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* nav section allpage */
.navbar {
    transition: all 0.4s ease;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
}

.navbar-scrolled {
    background-color: var(--background-white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Default desktop colors (transparent navbar) */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-white) !important;
    transition: color 0.3s ease;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a1c5ff !important;
}

/* When scrolled or mobile (white background) */
.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
    color: #333 !important;
}

@media (max-width: 991px) {
    .navbar {
        background-color: var(--background-white) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand,
    .nav-link {
        color: #333 !important;
    }

    .navbar-toggler {
        border-color: #333;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2833, 33, 33, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-explore {
    background-color: var(--background-blue);
    color: var(--text-white);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-explore:hover {
    background-color: #003a85;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
        margin-top: 37px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* product setion homepage */
.product-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.product-info {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    padding: 40px;
    max-width: 50%;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: var(--background-white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .product-slider {
        height: 400px;
    }

    .product-info {
        max-width: 100%;
    }


    .product-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 0px;
    }

    .product-name {
        font-size: 2rem;
    }
}

/* about section homepage */
.about-section {
    background-color: var(--background-white);
    padding: 0;
}

.about-section img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about-section h3 {
    color: var(--text-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-section img {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }
}

/* industryes section homepage */
.industries-section {
    background-color: var(--background-blue);
    color: var(--text-white);
    padding: 60px 0;
}

.industries-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.industries-section p {
    color: #cdd9f0;
    max-width: 650px;
    text-align: justify;
}

.industries-served-padding {
    padding: 70px;
}

@media (max-width: 992px) {
    .industries-served-padding {
        padding: 10px;
    }
}

.info-box {
    background-color: #1A3665;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-box i {
    font-size: 30px;
    color: #00b4ff;
    margin-bottom: 15px;
}

.info-box h5 {
    font-weight: 600;
    color: var(--text-white);
}

.info-box p {
    color: #cdd9f0;
    font-size: 15px;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .industries-section {
        text-align: center;
    }

    .info-box {
        margin-bottom: 20px;
    }
}

/* responsiblity section homepage */
.green-section {
    background-color: var(--background-white);
    padding: 20px;
    text-align: center;
}

.green-section h2 {
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
}

.green-section p {
    color: var(--text-white);
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

.green-section-description {
    color: var(--text-black) !important;
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
}

.stat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: var(--text-white);
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 180px;
}

.stat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.stat-content {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 2;
}

.stat-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.stat-card:hover img {
    transform: scale(1.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* counter section homepage */
.home-global {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/2000px-World_map_-_low_resolution.svg.png') no-repeat center center/cover;
    padding: 100px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.home-global::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 80, 0.85);
    z-index: 1;
}

.home-global .content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.home-global h2 {
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-white);
}

.home-global p {
    font-size: 1rem;
    color: #dcdcdc;
    line-height: 1.7;
}

.home-global .stats {
    margin-top: 60px;
}

.home-global .stat-box {
    text-align: center;
    margin-bottom: 30px;
}

.home-global .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.home-global .stat-label {
    font-size: 1.1rem;
    color: #ddd;
}

/* animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* market section homepage */
.market-section {
    padding: 20px;
    background-color: var(--background-white);
}

.market-title {
    font-weight: 700;
    margin-bottom: 40px;
}

.market-img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.market-img:hover {
    transform: scale(1.02);
}

.market-content p {
    line-height: 1.7;
    color: #333;
    font-size: 0.95rem;
    text-align: justify;
}

/* animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .market-section {
        padding: 60px 15px;
    }

    .market-title {
        text-align: center;
    }

    .market-img {
        margin-bottom: 30px;
    }
}

/* blog section homepage */
.industry-section {
    padding: 0;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
}

.industry-card img {
    width: 100%;
    height: 337px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--text-white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
    transition: all 0.4s ease;
}

.industry-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-desc {
    opacity: 1;
    max-height: 150px;
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--background-blue);
    color: var(--text-white);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 6px;
}

.industry-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* footer section homepage */
.contact-section {
    background: linear-gradient(135deg, #e6f0ff, #f5f9ff);
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.contact-section h2 {
    font-weight: 700;
    color: var(--text-blue);
    margin-bottom: 15px;
}

.contact-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 1.05rem;
}

.recruitment-team {
    margin-top: 50px;
    text-align: center;
}

.recruitment-team h3 {
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 10px;
}

.recruitment-team a {
    color: #003399;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.recruitment-team a:hover {
    color: #0056ff;
}

.contact-section .btn {
    background-color: var(--background-blue);
    color: var(--text-white);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.contact-section .btn:hover {
    background-color: var(--background-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
}

/* footer */
footer {
    background-color: var(--background-blue);
    color: #e0e0e0;
    padding: 70px 0 40px;
}

footer h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 17px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer p,
footer a,
footer li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cfd8dc;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #0d6efd;
    text-decoration: none;
}

/* blog section homepage */
.footer-newsletter {
    display: flex;
    align-items: center;
    margin-top: 20px;
    background-color: var(--background-blue);
    border-radius: 50px;
    overflow: hidden;
    transition: 0.3s ease;
}

.footer-newsletter input {
    border: none;
    background: var(--background-white);
    padding: 12px 18px;
    color: var(--text-black);
    width: 100%;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: #aaa;
}

.footer-newsletter button {
    background: #004aad;
    border: none;
    padding: 12px 18px;
    color: var(--text-white);
    border-radius: 0 50px 50px 0;
    transition: 0.3s ease;
}

.footer-newsletter button:hover {
    background: #043473;
}

/* social media icon */
.social-icons a {
    color: var(--text-white);
    font-size: 1.3rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
}

/* bottom bar section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    margin: 0 8px;
}

.footer-bottom a:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    footer .col-md-3 {
        text-align: center;
    }

    .footer-newsletter {
        justify-content: center;
    }
}

/* about page style */

/* about section aboutpage */
.about-industry {
    background-color: var(--background-white);
    overflow: hidden;
}

/* Image Styling */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Content Styling */
.about-content {
    background-color: var(--background-white);
    padding: 80px 60px;
}

.about-content h3 {
    color: var(--text-blue);
    font-weight: 700;
    font-size: 2rem;
}

.about-content p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 15px;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .about-content {
        padding: 50px 25px;
        text-align: center;
    }

    .about-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 40px 20px;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}

/* industry section aboutpage */
.mission-vision-values {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

/* Box Layout */
.mvv-box {
    flex: 1;
    padding: 70px 40px;
    color: var(--text-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Staggered Animation Delay */
.mvv-box:nth-child(1) {
    animation-delay: 0.3s;
    background-color: #bcd4ff;
}

.mvv-box:nth-child(2) {
    animation-delay: 0.6s;
    background-color: #a8c8ff;
}

.mvv-box:nth-child(3) {
    animation-delay: 0.9s;
    background-color: #99bdff;
}

/* Heading */
.mvv-box h4 {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--text-blue);
    position: relative;
    transition: all 0.4s ease;
}

/* Decorative underline */
.mvv-box h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: var(--background-blue);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Paragraph */
.mvv-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
    color: var(--text-black);
    transition: color 0.3s ease;
}

/* Hover Effects */
.mvv-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.mvv-box:hover h4::after {
    width: 80px;
    background-color: var(--background-blue);
}

.mvv-box:hover p {
    color: #222;
}

/* Keyframe Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .mvv-box {
        flex: 1 1 50%;
        padding: 60px 25px;
    }
}

@media (max-width: 768px) {
    .mvv-box {
        flex: 1 1 100%;
        padding: 50px 25px;
    }

    .mvv-box h4 {
        font-size: 1.5rem;
    }
}

/* founder section aboutpage */
.founder-section {
    padding: 0;
    background-color: var(--background-white);
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.founder-content h3 {
    color: var(--text-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-content h5 {
    color: var(--text-black);
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 992px) {
    .founder-section {
        text-align: center;
    }

    .founder-content {
        margin-top: 30px;
    }

    .founder-image img {
        width: 220px;
        height: 220px;
    }
}

/* employee section aboutpage */
.people-section {
    padding: 0;
    background-color: var(--background-white);
}

.people-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.people-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0;
}

.people-header a {
    color: var(--text-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.people-header a:hover {
    text-decoration: underline;
    color: var(--text-blue);
}

.people-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .people-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .people-header h3 {
        font-size: 1.2rem;
    }

    .people-header a {
        font-size: 0.95rem;
    }
}

/* global section aboutpage */
.global-reach {
    background-color: var(--background-white);
    padding: 0;
    text-align: center;
}

.global-reach h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.global-reach p {
    font-size: 0.95rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.global-reach img {
    width: 100%;
    max-width: 950px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .global-reach {
        padding: 20px;
    }

    .global-reach h2 {
        font-size: 1.5rem;
    }

    .global-reach p {
        font-size: 0.9rem;
    }
}

/* certification section aboutpage */
.certification-section {
    padding: 0;
    background: var(--background-white);
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--background-blue);
}

/* Slider wrapper */
.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-item {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cert-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .cert-item {
        width: 120px;
        height: 120px;
    }

    .cert-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .cert-item {
        width: 100px;
        height: 100px;
    }

    .cert-logo {
        width: 50px;
        height: 50px;
    }

    .cert-name {
        font-size: 0.8rem;
    }
}

/* product page style */
.product-card {
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    animation: fadeUp 1s ease-in-out;
}

/* Hover lift (no flick) */
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Pulse halo using pseudo-element (no flick on hover out) */
.product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(0, 86, 210, 0);
    transition: all 0.4s ease;
}

.product-card:hover::after {
    animation: pulse 1.5s infinite;
}

/* Product Image */
.product-img-container {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Overlay effect */
.product-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 210, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-img-container::after {
    opacity: 1;
}

/* Blue Section */
.product-content {
    padding: 15px;
    background: var(--background-blue);
    color: var(--text-white);
    border-top: 5px solid var(--background-blue);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.product-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.product-card:hover .product-content::before {
    left: 100%;
}

.product-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover .product-content h5 {
    transform: translateX(5px);
}

.product-content p {
    font-size: 14px;
    margin: 0;
    position: relative;
    transition: transform 0.3s ease 0.1s;
}

.product-card:hover .product-content p {
    transform: translateX(5px);
}

/* Fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation (now smooth) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 210, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 86, 210, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 210, 0);
    }
}

@media (max-width: 768px) {
    .product-img {
        height: 180px;
    }
}

/* footer form productpage */
.footer-contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 15px;
    background: url('../img/foembg.png') center center/cover no-repeat;
    color: var(--text-white);
    overflow: hidden;
}

/* Overlay */
.footer-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 50, 0.55);
    z-index: 1;
}

/* Optional container outline to visualize alignment */
.footer-contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Form Container */
.footer-contact-form-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 45px 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
    margin-left: 8%;
}

/* Title + Subtitle */
.footer-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

.footer-form-intro {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--background-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 111, 220, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #666;
}

/* Button */
.btn-contact {
    background-color: var(--background-blue);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-contact:hover {
    background-color: var(--background-blue);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-contact-section {
        justify-content: center;
    }

    .footer-contact-form-container {
        margin-left: 0;
        padding: 37px 27px;
    }
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading-main-big {
    font-weight: bold;
    color: var(--text-blue);
}

/* menufactur section capabilitypage */
.facility-overview {
    position: relative;
    background: url('../img/capabilitybanner.png') center center / cover no-repeat;
    color: var(--text-white);
    min-height: 77vh;
    padding: 0;
    display: flex;
    align-items: center;
}

.facility-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 85, 0.75);
    z-index: 1;
}

.facility-overview .container {
    position: relative;
    z-index: 2;
}

.facility-overview h2 {
    font-size: 1.9rem;
    font-weight: 700;
}

.facility-overview p,
.facility-overview ul li {
    font-size: 1rem;
    line-height: 1.6;
}

.facility-overview ul {
    padding-left: 1rem;
}

.facility-overview ul li::marker {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .facility-overview {
        padding: 60px 20px;
        text-align: left;
    }

    .facility-overview h2 {
        font-size: 1.5rem;
    }

    .facility-overview p,
    .facility-overview ul li {
        font-size: 0.95rem;
    }
}

/* our value pillers section capabilitypage */
.value-pillars {
    padding: 15px;
}

.value-pillars h2 {
    color: var(--text-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-pillars p.subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.pillar-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.pillar-item p {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 767.98px) {
    .value-pillars {
        padding: 15px;
    }

    .pillar-item {
        margin-bottom: 1.5rem;
    }
}

.bluecolor {
    color: var(--text-blue);
    font-weight: bold;
}

/* about section sustainabilitypage */
.green-section-title {
    color: var(--text-green);
    font-weight: bold;
    margin-bottom: 1rem;
}

.our-commitment-section {
    max-width: 700px;
    margin-bottom: 17px;
    text-decoration: none;
}

.bluecolor {
    color: var(--text-blue);
    font-weight: 600;
}

.border-top {
    border-top: 1px solid #bbb !important;
    margin: auto;
    width: 77%;
}

/* a reputation for excellence  section sustainbilitypage */
.sustainability-certification-section {
    background-color: var(--background-blue);
    color: var(--text-white);
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

.sustainability-certification-section h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    animation: fadeDown 1s ease-in-out;
}

.cert-box {
    background-color: var(--background-white);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Stagger Animation Delay */
.cert-box:nth-child(1) {
    animation-delay: 0.2s;
}

.cert-box:nth-child(2) {
    animation-delay: 0.4s;
}

.cert-box:nth-child(3) {
    animation-delay: 0.6s;
}

.cert-box:nth-child(4) {
    animation-delay: 0.8s;
}

.cert-box img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

@media (max-width: 991.98px) {
    .cert-box {
        height: 140px;
    }
}

@media (max-width: 767.98px) {
    .sustainability-certification-section h3 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .cert-box {
        height: 130px;
    }
}

.people-section {
    padding: 0;
    overflow: hidden;
}

.info-card {
    background: var(--background-white);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: left;
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardEntrance 1s forwards;
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Staggered animation delay */
.info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.info-card:nth-child(2) {
    animation-delay: 0.3s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

.info-card:nth-child(4) {
    animation-delay: 0.5s;
}

.info-card:nth-child(5) {
    animation-delay: 0.6s;
}

.info-card:nth-child(6) {
    animation-delay: 0.7s;
}

.info-card:nth-child(7) {
    animation-delay: 0.8s;
}

.info-card:nth-child(8) {
    animation-delay: 0.9s;
}

.info-card:nth-child(9) {
    animation-delay: 1s;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.info-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(0, 123, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.info-card:hover::after {
    opacity: 1;
}

.info-icon {
    color: var(--text-green);
    font-size: 2.4rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.info-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-black);
    position: relative;
    z-index: 1;
}

.info-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Glow on hover */
.info-card:hover .info-icon {
    color: var(--text-blue);
    text-shadow: 0 0 12px rgba(13, 110, 253, 0.4);
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .info-card {
        text-align: center;
        padding: 25px 20px;
    }

    .info-icon {
        font-size: 2rem;
    }
}

/* contact section contactpage */
.contact-title {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0b2a66;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-info span {
    font-weight: 500;
    color: var(--text-black);
}

.divider {
    height: 1px;
    background-color: #e2e2e2;
    margin: 25px 0;
}

/* career section careerpage */
.career-section {
    padding: 0;
    background-color: var(--background-white);
}

.career-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.career-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 17px;
    color: var(--text-black);
    margin-top: 17px;
}

.career-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-top: 10px;
}

.stats-section {
    background-color: #001F54;
    color: var(--text-white);
    padding: 80px 0;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
    display: inline-block;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item p {
    font-size: 1rem;
    color: #d0d0d0;
    margin: 0;
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 30px;
    }
}

/* why joi us section careerpage */
.why-join-section {
    background-color: var(--background-white);
    padding: 0;
}

.why-join-section h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.why-join-section p.section-subtitle {
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 1rem;
}

.join-card {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 30px;
    background-color: var(--background-white);
    transition: all 0.3s ease;
    height: 100%;
}

.join-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.join-card i {
    font-size: 2rem;
    color: #001F54;
    margin-bottom: 15px;
}

.join-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-black);
}

.join-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 992px) {
    .join-card {
        margin-bottom: 25px;
    }
}

/* career section careerpage */
.career-career-section {
    background-color: #001F54;
    color: var(--text-white);
    padding: 80px 0;
}

.career-career-section h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.career-career-section p {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* job section careerpage */
.job-box {
    background-color: var(--background-white);
    color: #001F54;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.job-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.btn-view {
    background-color: #001F54;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #062e75;
    color: var(--text-white);
}

@media (max-width: 992px) {
    .career-career-section {
        text-align: center;
    }

    .job-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .btn-view {
        margin-top: 10px;
        align-self: flex-end;
    }
}