:root {
    --primary-color: #008E4B;
    --secondary-color: #1a178a;
    --bg-color: #ffffff;
    --text-color: var(--secondary-color);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nav Styles */

nav {
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* stays on top of other content */
    background-color: #fff;
    /* keep it visible while scrolling */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* optional: subtle shadow */
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-a {
    width: 50%;
}

.logo {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
   width: 121%;
    display: flex;
    gap: 24px;
}

.nav-links .nav-link-a {
    position: relative;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.nav-links a {
    font-size: 17px;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Green underline on hover */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 45px;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    width: 25px;
    background: var(--secondary-color);
    margin: 4px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--bg-color);
        position: absolute;
        z-index: 1;
        top: 83px;
        right: 20px;
        left: 212px;
        width: 200px;
        padding: 15px;
        border-radius: 5px;
        border: 1px solid var(--primary-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .default-btn {
        font-size: 14px !important;
    }

}

/* Dropdown */
.dropdown {
    margin-top: 6px;
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.6em;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    top: 87%;
    left: 0;
    min-width: 150px;
    z-index: 999;
    flex-direction: column;
}

.dropdown-menu a {
    line-height: 34px;
    width: 200px;
    padding: 5px 17px;
    color: var(--text-color);
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* Show on hover for desktop */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .nav-links {
        flex-direction: column;
    }

    .dropdown-menu {
        position: relative;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
}

/* === SLIDER STYLES === */
.slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Individual Slide */
.slide {
    position: absolute;
    width: 100%;
    height: 80%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    z-index: 0;
}

/* Active Slide */
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Content Overlay on Slide */
.content {
    position: absolute;
    bottom: 34%;
    top: 20%;
    left: 10%;
    background: rgb(214 217 254 / 16%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 80%;
    animation: fadeUp 1s ease-in-out;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #27cd7f;
}

.content p {
    font-size: 21.2px;
    line-height: 1.6;
}

/* Slide-in Text Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Arrows */
.slider-controls {
    /* position: absolute; */
    display: none;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

.slider-controls span {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-controls span:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {


    /* .content h1 {
        font-size: 1.8rem;
    } */

    .content p {
        font-size: 13px;
    }

}

/* button style */

.nav-btn {
    margin-top: -6px;
}

button {
    position: relative;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    background-color: hsla(236, 61%, 32%, 0);
    border: solid 1px hsla(0, 3%, 94%, 0);
    font-family: inherit;
}

.default-btn {
    background-color: hsl(235.67deg 61.78% 30.78%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 13px;
    border-radius: 6px 0px;
    font-size: 19px;
    font-weight: 500;
    transition: all .3s ease;
}


.hover-btn {
    background-color: hsla(148, 100%, 32%, 0);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    /* text-transform: uppercase; */
    transition: all .3s ease;
}

.hover-btn {
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    transform: translate(0%, 100%);
}

.default-btn span {
    color: hsl(0, 0%, 100%);
}

.hover-btn span {
    color: hsl(60, 12%, 97%);
    font-size: 18px;
}

button:hover .default-btn {
    transform: translate(0%, -100%);
}

button:hover .hover-btn {
    transform: translate(0%, 0%);
    border-radius: 6px 0px;
}

.fa-star {
    /* color: var(--primary-color); */
    background-color: white;
    color: var(--secondary-color);
    font-size: 22px;
    border-radius: 24px;
    top: 33px;
    position: relative;
    padding: 11px;
    border: 1px solid var(--secondary-color);
}

.icon-box {
    display: flex;
}

.icon-box-title {
    font-weight: 400;
    font-size: 17px;
    color: var(--secondary-color);
}

.icon-box-content {
    padding: 29px 28px 0px 25px;
}

.icon-box-description {
    color: #787878;
    font-weight: 100;
    font-size: 14px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
}

.calibration-description {
    font-size: 14px;
    color: #3c3c3c;
    padding: 29px 81px 38px 4px;
}

.image-about {
    margin-top: -56px;
    border-radius: 40px 0px;
    width: 54%;
}

.info-boxes {
    z-index: 1;
    border-radius: 25px 0px;
    top: -192px;
    position: relative;
    padding: 6px 28px 38px;
    background-color: #ededed;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: scale(1.02);
}

.info-boxes:hover {
    transform: scale(1);
    box-shadow: 0 4px 20px rgb(0 142 75 / 21%);
}

.calibration-section {
    padding: 0px 0px 0px 26px;
}


.why-us-section {
    background-color: #f7f9fb;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.why-us-title {
    font-size: 36px;
    color: #283593;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-us-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #008e4b;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.why-us-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.why-us-content ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.why-us-content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.why-us-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #43a047;
}

.btn-why-us {
    display: inline-block;
    padding: 12px 24px;
    background-color: #283593;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.btn-why-us:hover {
    background-color: #1a237e;
}


.about-section {
    background: #ffffff;
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 36px;
    color: #2a2a72;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.about-title::after {
    content: '';
    width: 60px;
    left: -274px;
    position: relative;
    height: 4px;
    background: #008e4b;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 18px;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}


.why-us-p {
    padding: 18px 39px 34px 12px;
    font-size: 16px;
}

.why-us-image {
    width: 90%;
    border-radius: 40px 0px;
}

.button-left-a {
    float: inline-start;
}

.svc-sub {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.svc-title {
    font-size: 32px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.svc-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #008e4b;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

.svc-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-top: 10px;
    font-style: italic;
}

.text-p {
    font-size: 18px;
    word-spacing: 2px;
    line-height: 34px;
}

.svc-desc-a {
    font-style: italic;
    font-size: 17px;
    color: #e6e3e3;
    line-height: 1.7;
    margin-top: 10px;
}

.svc-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    border-radius: 25px 0px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.svc-card img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
}

.svc-card:hover img {
    transform: scale(1.1);
}

.svc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 51, 102, 0.85);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-card:hover .svc-overlay {
    opacity: 1;
}

.svc-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.svc-overlay p {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Button container */
.svc-overlay button {
    background: #00b4d8;
    border: none;
    cursor: pointer;
    position: relative;
    width: 134px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px;
    left: 80px;
    border-radius: 6px 0px;
}


.p-text {

    text-align: center;
    font-size: 18px;
    padding-bottom: 25px;
    font-weight: 700;
}

.svc-card:hover+.p-text {
    display: none;
}

/* client slider style */



/* footer style*/
.footer {
    background-color: #222;
    color: #ccc;
    padding: 29px 0px 0px 0px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 250px;
    margin: 20px;
}

.footer h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer p,
.footer a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer p {
    padding: 11px 0px 4px 0px;
    justify-content: center;
}

.footer a:hover {
    color: #fff;
}

.social-icons a {
    font-size: 18px;
    margin-right: 10px;
    color: #ccc;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: black;
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    padding: 1px;
    color: #aaa;
}

@media (max-width: 768px) {

    .calibration-section {
        position: relative;
        top: -117px;
        padding: 0px 0px 0px 26px;
    }

    .image-about {
        margin-top: -56px;
        border-radius: 40px 0px;
        width: 89%;
        margin-left: 22px;
    }

    .why-us-subtitle {
        font-size: 17px;
        color: #666;
        font-style: italic;
        margin-bottom: 30px;
    }

    .why-us-title {
        font-size: 28px;
        color: #283593;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .why-us-p {
        padding: 15px 0px 28px 6px;
        font-size: 14px;
    }

    .svc-title {
        font-size: 26px;
        color: #003366;
        font-weight: 700;
        margin-bottom: 8px;
        position: relative;
        display: inline-block;
    }

    .svc-desc-a {
        font-style: italic;
        font-size: 14px;
        color: #e6e3e3;
        line-height: 1.7;
        margin-top: 10px;
    }

    .text-p {
        font-size: 14px;
        word-spacing: 2px;
        line-height: 26px;
    }

    .svc-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.7;
        margin-top: 10px;
        font-style: italic;
    }

    .animatedImage {
        display: none;
    }

    .contactForm input,
    .contactForm textarea {
        padding: 11px !important;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px 0px !important;
        width: 90% !important;
        box-sizing: border-box;
    }

    .btn.btn-primary-a {
        display: inline-block;
        margin-top: 15px;
        width: 95px !important;
        padding: 8px 12px !important;
        background-color: #1e257f;
        color: white;
        font-size: 18px !important;
        border: none;
        border-radius: 6px 0px !important;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-align: center;
    }

    .footer-logo {
        width: 50% !important;
        padding: 12px;
        background-color: #e7e7e7;
    }

    .info-boxes {
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
        /* align-items: center; */
    }

    .footer-col {
        margin: 15px 31px;
        /* text-align: center; */
    }

    .about-title-j::after {
        display: none;
    }

    .about-title-j {
        font-size: 22px;
        color: #2a2a72;
        font-weight: 700;
        margin-top: 23px;
        margin-bottom: 0px;
    }

    .about-subtitle {
        font-size: 18px;
        color: #555;
        font-style: italic;
        top: -9px;
        position: relative;
        margin-bottom: 12px;
    }

}

@media (max-width: 915px) and (min-width: 412px) {
    .service-list {
        font-size: 18px !important;
        padding-left: 10px !important;
    }

    .breadcrumb {
        font-size: 19px;
        padding: 123px;
        left: -93px;
        position: relative;
        display: ruby-text !important;
        align-items: flex-end;
    }

    .image-biomedical-ff {
        position: relative;
        top: -123px !important;
        width: 47% !important;
        height: 44% !important;
        left: 187px !important;
        border-radius: 136px !important;
    }

    .image-biomedical-c {
        position: relative;
        width: 71%;
        top: 62px;
        border-radius: 196px;
    }

    .image-biomedical-cc {
        position: relative;
        top: -67px;
        width: 47%;
        left: 188px;
        border-radius: 136px;
    }

    .breadcrumb-section {
        background-image: url(../images/banner/1.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        height: 132px;
        text-align: center;
    }

    .breadcrumb-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: inline-block;
    }

    .breadcrumb {
        font-size: 22px !important;
        padding: 54px 149px !important;
        display: flex;
        align-items: center;
    }

    .header-icon {
        font-size: 12px;
    }

    .list-text {
        position: relative !important;
        left: 1px !important;
    }

    a span {
        font-size: 9px !important;
    }

    .header-icon {
        font-size: 10px !important;
    }

    .header-content {
        color: white;
        line-height: 16px;
        font-size: 14px;
        text-decoration: none;
    }

    .service-section {
        background-color: #cbcef05c;
        padding: 34px 0px !important;
    }

    .logo-a {
        width: 35%;
    }

    .nav-toggle span {
        height: 3px;
        width: 31px;
        background: var(--secondary-color);
        margin: 3px 0;
        border-radius: 2px;
    }



    .about-title {
        font-size: 26px;
        color: #2a2a72;
        font-weight: 700;
        margin-top: 43px;
        margin-bottom: 10px;
        position: relative;
        left: -16px;
    }

    .header-text-service {
        font-size: 32px;
        margin-top: 51px;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 20px;
    }

    .biomedical-imag {
        width: 103%;
        border-radius: 12px 0px !important;
    }

    .image-mechanical {
        border-radius: 267px;
        width: 52%;
        height: 147%;
    }

    .image-mechanical-a {
        top: 73px;
        left: -36px;
        position: relative;
        border-radius: 203px;
        width: 40%;
        height: 113%;
    }

    .image-mechanical-1 {
        border-radius: 267px;
        position: relative;
        top: 73px !important;
        width: 62% !important;
        height: 156% !important;
    }

    .image-mechanical-a-1 {
        top: 185px !important;
        left: -42px !important;
        position: relative;
        border-radius: 203px;
        width: 32% !important;
        height: 91% !important;
    }

    .service-container {
        padding: 115px 0px;
    }

    .image-biomedical-bb {
        border-radius: 167px;
        width: 45%;
        left: 164px;
        top: -149px;
        position: relative;
        height: 57%;
    }

    .image-biomedical-dd {
        border-radius: 167px;
        width: 45%;
        left: 183px;
        top: -163px;
        position: relative;
        height: 74%;
    }

    .image-biomedical-ee {
        border-radius: 167px;
        width: 41% !important;
        left: 189px !important;
        top: -159px !important;
        position: relative;
        height: 64% !important;
    }
}

.footer-logo {
    width: 60%;
    padding: 12px;
    background-color: #e7e7e7;
}

.swiper-button-next:after {
    display: none;
}

.swiper-button-prev:after {
    display: none;
}

.header-nav {
    background-color: #1e257f;
    padding: 10px;
}

.header-content {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.list-text {
    position: relative;
    left: 5px;
}

.header-icon {
    font-size: 18px;
}

/* client slider */
.clientSliderWrapper {
    overflow: hidden;
    width: 100%;
    background-color: #aaaaaa1f;
    padding: 20px 0;
    box-sizing: border-box;
}

.clientSliderTrack {
    display: flex;
    animation: clientScroll 25s linear infinite;
}

.clientSlide {
    flex: 0 0 auto;
    width: 211px;
    margin-right: 30px;
}

.clientSlide img {
    width: 58%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@keyframes clientScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.client-slider {
    padding: 77px 0px;
}

.header-icon-a {
    border-radius: 50px;
    font-size: 16px;
    border: 2px solid #cccccc;
    padding: 7px;
    width: 34px;
    height: 34px;
}


.contact-section {
    top: -2px;
    position: relative;
    padding: 19px 0px 92px 0px;
    background-color: #e7e7e7;
}

.contactSection {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.contactContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.contactColumnLeft,
.contactColumnRight {
    flex: 1 1 45%;
}

.contactTitle {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.contactDetails p {
    margin-bottom: 10px;
    color: white;
    font-size: 16px;
}

.contactDetails a {
    color: #ffffff;
    text-decoration: none;
}



.contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formRow {
    display: flex;
    gap: 15px;
}

.formRow input {
    flex: 1;
}

.contactForm input,
.contactForm textarea {
    padding: 21px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}
.tel-2{
    margin-top: -11px;
    margin-left: 38px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .contactContainer {
        flex-direction: column;
    }

    .formRow {
        flex-direction: column;
    }
    .clientSlide img {
    width: 100%;}

}
@media (max-width: 440px) {
    .image-biomedical-b,
    .image-biomedical-bb,
    .image-mechanical-a,
    .image-mechanical,
     .image-mechanical-a-1,
    .image-mechanical-1,
    .image-mechanical-2, 
    .image-mechanical-a-2,
    .image-biomedical-c,
    .image-biomedical-cc,
    .image-biomedical-e,
    .image-biomedical-f,
    .image-biomedical-ff{
        display: none;
    }
    .breadcrumb {
    font-size: 23px !important;
    padding: 56px 0px !important;}

    .header-text-service {
    font-size: 32px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    margin-top: 37px;
}
    }
#contact-button {
    left: 282px;
    width: 17%;
    justify-items: anchor-center;
}


.animatedImage {
    animation: floatUpDown 3s ease-in-out infinite;
}


@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.bg-fixed-section {
    position: relative;
    /* Needed for ::before to overlay correctly */
    padding: 28px 0px 86px 0px;
    background-image: url('../images/about/quality-policy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    /* Make sure it's under content */
    color: white;
    /* Optional: White text for visibility */
    overflow: hidden;
    /* Prevent ::before overflow */
}

.bg-fixed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

/* All direct children must sit above the overlay */
.bg-fixed-section>* {
    position: relative;
    z-index: 2;
}

.svc-title-a {
    color: #e3e3e3;
}

a span {
    font-size: 17px;

}

.hover-btn a {
    text-decoration: none;
}

.btn.btn-primary-a {
    display: inline-block;
    margin-top: 15px;
    width: 107px;
    padding: 13px 20px;
    background-color: #1e257f;
    color: white;
    font-size: 21px;
    border: none;
    border-radius: 6px 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn.btn-primary:hover {
    background-color: #1e257f;
    border-radius: 6px 0px;
}

.btn-wrapper {
    text-align: center;
    /* This centers the button horizontally */
    margin-top: 15px;
}

.breadcrumb {
    font-size: 28px;
    padding: 123px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    color: #ffffff;
    font-weight: bold;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-section {
    background-image: url('../images/banner/1.jpeg');
    /* replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* padding: 40px 20px; */
    text-align: center;
}

.breadcrumb-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    display: inline-block;
    border-radius: 8px;
}

#card {
    position: relative;
    top: 222px;
}

.about-header-a {
    padding: 112px 0px;
}

.verticalMenu {
    width: 97%;
    background-color: #ffffff;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 19px 0px;
}

.menuTitle {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    border-bottom: 2px solid #1e3a8a;
    padding: 17px;
}

.menuList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menuList li {
    padding: 0;
}

.menuList li a {
    position: relative;
    display: block;
    padding: 12px 23px;
    text-decoration: none;
    color: #1e257fcf;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menuList li a:hover,
.menuList li a.active {
    background-color: #1e257fcf;
    color: white;
    border-radius: 4px;
}

.service-section {
    background-color: #cbcef05c;
    padding: 97px 0px;
}

.hedaer-text-service {
    font-size: 36px;
    font-weight: 600;
}

.header-text-service {
    font-size: 32px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.service-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    font-size: 22px;
    line-height: 1.6;
}

.image-biomedical {
    border-radius: 167px;
    width: 52%;
    height: 96%;
}

.help-box {
    width: 96%;
    border-radius: 20px 0;
    background-color: var(--secondary-color);
    color: var(--bg-color);
    margin-top: 30px;
    padding: 30px 15px;
    line-height: 2;
}

.fa-headset {
    font-size: 52px;
}

#header-icon-a {
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.hedaer-text-a {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.biomedical-imag {
    border-radius: 40px 0px;
}

.image-mechanical {
    border-radius: 267px;
    width: 62%;
    height: 100%;
}

.image-mechanical-a {
    top: 141px;
    left: -107px;
    position: relative;
    border-radius: 203px;
    width: 49%;
    height: 75%;
}

.about-title-a::after {
    content: '';
    width: 60px;
    left: -384px;
    position: relative;
    height: 4px;
    background: #008e4b;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-title-a {
    font-size: 25px;
    color: #2a2a72;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}


.image-mechanical-1 {
    border-radius: 267px;
    width: 59%;
    height: 116%;
}

.image-mechanical-a-1 {
    top: 141px;
    left: -107px;
    position: relative;
    border-radius: 203px;
    width: 39%;
    height: 78%;
}

.image-mechanical-2 {
    border-radius: 267px;
    width: 62%;
    height: 170%;
}

.image-mechanical-a-2 {
    top: 141px;
    left: -107px;
    position: relative;
    border-radius: 203px;
    width: 44%;
    height: 124%;
}

.service-container {
    padding: 84px 0px;
}

.image-biomedical-bb {
    border-radius: 167px;
    width: 45%;
    left: 263px;
    top: -229px;
    position: relative;
    height: 57%;
}

.image-biomedical-b {
    position: relative;
    width: 60%;
    border-radius: 196px;
    height: 79%;
}

.image-biomedical-c {
    position: relative;
    width: 71%;
    border-radius: 196px;
}

.image-biomedical-cc {
    position: relative;
    top: -240px;
    width: 47%;
    left: 274px;
    border-radius: 136px;
}

.image-biomedical-d {
    position: relative;
    width: 60%;
    border-radius: 196px;
    height: 97%;
}

.image-biomedical-dd {
    border-radius: 167px;
    width: 45%;
    left: 263px;
    top: -229px;
    position: relative;
    height: 74%;
}

.image-biomedical-e {
    position: relative;
    width: 60%;
    border-radius: 196px;
    height: 100%;
}

.image-biomedical-ee {
    border-radius: 167px;
    width: 45%;
    left: 263px;
    top: -229px;
    position: relative;
    height: 76%;
}

.image-biomedical-f {
    position: relative;
    width: 71%;
    height: 65%;
    border-radius: 196px;
}

.image-biomedical-ff {
    position: relative;
    top: -240px;
    width: 47%;
    height: 44%;
    left: 274px;
    border-radius: 136px;
}

.image-biomedical-i {
    position: relative;
    width: 100%;
    height: 93%;
    border-radius: 29px 0px;
}

.about-title-j {
    font-size: 25px;
    color: #2a2a72;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}


.svc-overlay a {
    text-decoration: none;
    color: white;
}

.contactDetails {
    padding: 43px 49px;
    line-height: 24px;
    background: #1e257f;
    border-radius: 17px 0px;
}


.about-title-j {
    position: relative;
    display: inline-block;
}

.about-title-j::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 4px;
    top: 35px;
    height: 4px;
    width: 31%;
    background-color: #017f3b;
}


.contactForm input,
.contactForm textarea {
    border-radius: 6px 0px;
}

.image-ct{
        width: 90%;
    background-color: #1e257f24;
    padding: 34px;
    border-radius: 12px;
}

figcaption{ 
    padding: 21px 0px;
    font-size: 18px;
    font-weight: 600;
}