.custom-topbar {
    background-color: #141414;
    height: 35px;
    font-size: 12px;
    padding-right: 0;
    overflow: hidden;
}

.custom-topbar small {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.custom-topbar i {
    font-size: 13px;
}

.quote-btn {
    background-color: #8c6c2d;
    padding: 0 80px;
    height: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: background 0.3s ease;
    white-space: nowrap;
}

.quote-btn:hover {
    background-color: #b68c33;
}

@media (max-width: 991.98px) {
    .custom-topbar {
        display: none !important;
    }
}


/* ======= Navbar Base ======= */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
    height: 100px;
}

/* ======= Logo Styling ======= */
.navbar-brand {
    margin-right: 50px;
}

.navbar-brand img {
    max-height: 80px;
}

/* ======= Navbar Links ======= */
.navbar .nav-link {
    font-weight: 600;
    color: #000;
    padding: 16px 18px;
    margin: 0 10px;
    font-size: 16px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #bc8716;
}

/* ======= Dropdown Menu ======= */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 250px;
    background-color: #fff;
    animation: fadeDown 0.25s ease-in-out;
    border: none;
}

.dropdown-item {
    padding: 14px 20px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
    color: white;
    background-color: #C79E43;
}

.dropdown-toggle::after {
    display: none !important;
}

/* ======= Responsive Tweaks ======= */
@media (max-width: 991.98px) {
    .navbar {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar-brand {
        margin-right: 20px;

    }

    .navbar-nav .nav-link {
        padding: 14px 14px;
        margin: 0;
    }

    .navbar-brand img {
        max-height: 55px;
    }

}

.login-btn {
    padding: 0.6rem 2.5rem;
    /* More width */
    font-weight: 600;
    border-radius: 0;
    /* Square corners */
    background-color: #CA9E43;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #b88e39;
    color: #fff;
    text-decoration: none;
}

/* ======= Animation ======= */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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


/* ======= Offcanvas Styling ======= */
.offcanvas {
    background-color: #fff;
    width: 300px;
    border-right: none;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.08);
    border-radius: 0 12px 12px 0;
}

/* ======= Offcanvas Header ======= */
.offcanvas-header {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f1f1f1;
}

.offcanvas .navbar-brand img {
    max-height: 50px;
}

/* ======= Offcanvas Links ======= */
.offcanvas-body ul {
    padding-left: 0;
    margin-bottom: 0;
}

.offcanvas-body ul li {
    border-bottom: 1px solid #f5f5f5;
}

.offcanvas-body ul li:last-child {
    border-bottom: none;
}

.offcanvas-body ul li a,
.offcanvas-body ul li button {
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    padding: 12px 1rem;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-body ul li a:hover,
.offcanvas-body ul li button:hover {
    color: #C79E43;
    background-color: #f9f9f9;
}

/* ======= Dropdown Links Inside Collapse ======= */
.offcanvas-body .collapse a {
    font-weight: 500;
    font-size: 15px;
    padding: 10px 1.5rem;
    display: block;
    color: #333;
    transition: all 0.2s ease-in-out;
}

.offcanvas-body .collapse a:hover {
    color: white !important;
    background-color: #C79E43;
    padding-left: 1.8rem;
    border-radius: 6px;
}

/* ======= Chevron Icon Styling ======= */
.offcanvas-body button i.fa-chevron-down {
    transition: transform 0.3s ease;
}

/* Rotate Chevron on Expand */
.offcanvas-body button[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Active Parent Link */
.offcanvas-body button[aria-expanded="true"] {
    color: #C79E43;
    background-color: #f2f2f2;
}

/* ======= Close Button Styling ======= */
.offcanvas .btn-close {
    filter: brightness(0) saturate(100%) invert(30%) sepia(31%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(90%);
}

.offcanvas-body ul li a:focus,
.offcanvas-body ul li a:active,
.offcanvas-body ul li button:focus,
.offcanvas-body ul li button:active {
    outline: none;
    box-shadow: none;
    border: none;
}



/* Button Style */
.btn-custom-toggle {
    background-color: #C79E43;
    color: #fff;
    border: none;
}

.btn-custom-toggle:hover {
    background-color: #a97329;
}

/* Animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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


/*** Header ***/
.my-carousel {
    height: 600px;
    overflow: hidden;
}

.my-carousel .carousel-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.my-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

/* Desktop typography */
.my-carousel .carousel-caption h1 {
    font-size: 4rem;
    /* large heading */
}

.my-carousel .carousel-caption h5 {
    font-size: 1.25rem;
    /* subtitle */
}

.my-carousel .carousel-caption ol.breadcrumb {
    font-size: 1rem;
}

.my-carousel .carousel-caption a.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.my-carousel .carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

/* MOBILE */
@media (max-width: 768px) {
    .my-carousel {
        height: 280px;
        /* Smaller height */
    }

    .my-carousel .carousel-item {
        position: relative;
        min-height: 100%;
        /* match carousel height */
    }

    .my-carousel .carousel-item img {
        position: absolute;
        /* width: 100%; */
        height: 100%;
        /* image height = carousel height */
        object-fit: cover;
    }

    /* Smaller heading and text */
    .my-carousel .carousel-caption h1 {
        font-size: 1.4rem;
        /* smaller to fit */
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }

    .my-carousel .carousel-caption h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .my-carousel .carousel-caption ol.breadcrumb {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .my-carousel .carousel-caption a.btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Smaller controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        border-width: 8px;
    }
}

@keyframes slideInDownCustom {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.slideInDown {
    animation: slideInDownCustom 1s ease forwards;
}

/* Mobile responsive padding/margin adjustment */
@media (max-width: 576px) {
    .fs-5 {
        font-size: 1rem !important;
        /* Reduce font for small screens */
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }
}

.btn-primary {
    background-color: #AA7A15 !important;
    border-color: #AA7A15 !important;
    color: white !important;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #885F12 !important;
    /* slightly darker on hover */
    border-color: #885F12 !important;
    color: white !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

/* ========== ABOUT SECTION STYLES ========== */
/* ABOUT SECTION STYLES */

/* Heading Styles */
.about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1c1c;

}

.about-subtitle {
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Paragraph Text */
.about-text p {
    color: #000;
    font-size: 1.02rem;
    text-align: justify;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Image Styling */
.about-image-container {
    padding-left: 1.5rem;
    padding-top: 1.5rem;
    min-height: 400px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Button Style */
.btn-primary {
    background-color: #CA9E43;
    border: none;
    font-weight: 600;
    color: #fff;
}

.btn-primary:hover {
    background-color: #a2782e;
    color: #fff;
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {

    .about-image-container {
        padding: 0;
        margin-bottom: 1.5rem;
        min-height: auto;
    }

    .about-image {
        width: 100%;
        height: auto;
        max-height: 4000px;
        object-fit: cover;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-subtitle {
        font-size: 0.85rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
}


/* Extra spacing for text container on all screen sizes */
.text-content {
    padding-left: 15px;
    padding-right: 15px;

}

/* On medium and up, add more left padding to separate from image */
@media (min-width: 768px) {
    .text-content {
        padding-left: 40px;
    }
}

/* ABOUT SECTION STYLING */
.bg-breadcrumb {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    z-index: 1;
}

.bg-breadcrumb .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* Gradient Overlay */
.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(65, 63, 63, 0.7), rgba(0, 0, 0, 0.7));
    z-index: -2;
}

/* Design Strips like original */
.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: -1;
}

/* Optional: Add bottom-right design if needed */
.bg-breadcrumb .banner-design-2 {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: -1;
}

/* Make breadcrumb anchor links white */
.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #fff !important;
}

/* Optional: Add hover effect */
.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-primary) !important;
}

/* Keep active breadcrumb item in primary color */
.bg-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--bs-primary) !important;
}

@media (max-width: 767.98px) {
    .bg-breadcrumb {
        padding: 30px 15px;
        text-align: center;
    }

    .bg-breadcrumb h1,
    .bg-breadcrumb h2,
    .bg-breadcrumb h3 {
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 10px;
        color: #fff;
    }

    .bg-breadcrumb .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 0;
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: #fff !important;
        text-decoration: none;
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
        color: #AA7A15 !important;
        /* highlight hover with your theme color */
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item.active {
        color: #AA7A15 !important;
        font-weight: 600;
    }

    /* Hide diagonal banner strips for clean mobile look */
    .bg-breadcrumb::after,
    .bg-breadcrumb .banner-design-2 {
        display: none;
    }
}

/*** Single Page Hero Header End ***/

/*** Service ***/
.service-item {
    border: none;
    /* Removed black border */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* Soft subtle shadow */
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    /* More visible shadow on hover */
}

/* Hover overlay background */
.service-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #AA7A15;
    /* Your chosen color */
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 0.9;
}

.service-text {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.service-text * {
    position: relative;
    transition: 0.3s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #fff !important;
}

.service-text h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.service-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-text a {
    font-weight: 500;
    color: #AA7A15;
    text-decoration: none;
}

.service-text a:hover {
    text-decoration: underline;
}

/* Heading h4 */
.text-primary {
    font-size: 1.20rem;
    /* reduced from default ~1.25rem */
    font-weight: 600;
    color: #AA7A15 !important;
    /* keep your golden tone */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Main heading h2 */
.display-4 {
    font-size: 2.50rem;
    /* reduced from ~3rem or more */
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

/* Optional: Responsive tweak for mobile */
@media (max-width: 576px) {
    .display-4 {
        font-size: 1.5rem;
    }

    .text-primary {
        font-size: 1rem;
    }
}


/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/*** Projects End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** Team End ***/

/*** Safety Section Start ***/
/* Safety Section - Our Safety Industrial Support Services */
/* Ensure all safety cards are equal in height and layout */
.safety-item,
.Safet-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: 0.5s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100% !important;
}

.safety-item:hover,
.Safet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Safety Image Container - Equal for all cards */
.safety-img {
    position: relative;
    overflow: hidden;
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Safety Images - Equal sizing for all */
.safety-img img,
.Safet-item .safety-img img {
    width: 100% !important;
    height: 250px !important;
    max-width: 100% !important;
    max-height: 250px !important;
    min-height: 250px !important;
    object-fit: fill !important;
    object-position: center !important;
    display: block !important;
    transition: 0.5s;
    border-radius: 0;
}

.safety-item:hover .safety-img img,
.Safet-item:hover .safety-img img {
    transform: scale(1.05);
}

/* Safety Content - Equal for all cards */
.safety-content,
.Safet-item .safety-content {
    transition: 0.5s;
    /* min-height: 100px !important; */
    /* max-height: 100px !important; */
    /* height: 100px !important; */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    /* padding: 20px !important; */
    /* background: #f8f9fa !important; */
}

.safety-content h4,
.Safet-item .safety-content h4 {
    margin: 0 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #333 !important;
    line-height: 1.4 !important;
}

/* Ensure equal column heights */
.row.g-4 [class*="col-"] {
    display: flex;
    align-items: stretch;
}

/* Responsive Safety Cards */
@media (max-width: 768px) {
    .safety-img {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .safety-img img,
    .Safet-item .safety-img img {
        height: 220px !important;
        max-height: 220px !important;
        min-height: 220px !important;
    }

    .safety-content,
    .Safet-item .safety-content {
        min-height: 90px !important;
        max-height: 90px !important;
        height: 90px !important;
        padding: 15px !important;
    }

    .safety-content h4,
    .Safet-item .safety-content h4 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .safety-img {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .safety-img img,
    .Safet-item .safety-img img {
        height: 200px !important;
        max-height: 200px !important;
        min-height: 200px !important;
    }

    .safety-content,
    .Safet-item .safety-content {
        min-height: 80px !important;
        max-height: 80px !important;
        height: 80px !important;
        padding: 12px !important;
    }

    .safety-content h4,
    .Safet-item .safety-content h4 {
        font-size: 1rem !important;
    }
}

/*** Safety Section End ***/

/*** Accreditations & Certifications Section Start ***/
/* Ensure all accreditation cards are equal in height and layout */

/* ISO Certification Cards - Equal Height and Increased Width */
.service-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 320px !important;
    max-height: 320px !important;
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    background-color: #f8f9fa !important;
    padding: 40px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
}

.service-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.service-item>div {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.service-item h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    flex-shrink: 0 !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.service-item p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 15px !important;
    flex-grow: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.service-item ul {
    margin-bottom: 0 !important;
    padding-left: 20px !important;
    flex-grow: 1 !important;
}

.service-item ul li {
    color: #666 !important;
    margin-bottom: 8px !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Certificate Image Cards - Equal Height and Increased Width */
.certificate-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f8f9fa !important;
    padding: 20px !important;
    margin: 0 auto !important;
}

.certificate-item img {
    max-width: 95% !important;
    max-height: 95% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.certificate-link {
    text-decoration: none !important;
    display: block !important;
    height: 100% !important;
}

.certificate-link:hover .certificate-item {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.certificate-link:hover img {
    transform: scale(1.05) !important;
}

/* Vendor Registration Cards - Decreased Height and Increased Image Size */
.service-item.text-center {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 280px !important;
    max-height: 280px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px !important;
    background-color: #f8f9fa !important;
    padding: 25px !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.service-item.text-center:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.service-item.text-center .mb-4 {
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
    flex-shrink: 0 !important;
}

.service-item.text-center img {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.service-item.text-center:hover img {
    transform: scale(1.1) !important;
}

/* Specific styling for SABIC image - Increased width */
.service-item.text-center img[src*="SABIC"],
.service-item.text-center img[alt*="SABIC"],
.service-item.text-center img[alt*="sabic"] {
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
    max-height: 80px !important;
}

.service-item.text-center .content-area {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.service-item.text-center h4 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.service-item.text-center p {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
    flex-grow: 1 !important;
}

/* Ensure equal column heights and increased width for ISO cards */
.row.g-4 [class*="col-"] {
    display: flex !important;
    align-items: stretch !important;
}

/* Specific width increase for ISO certification cards */
.row.g-4 .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 20px !important;
}

/* Specific width increase for Our Certifications section */
.row.g-4 .col-lg-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding: 0 25px !important;
}

.row.g-4 .col-md-6 {
    padding: 0 20px !important;
}

/* Container width adjustment for better spacing */
.container-xxl .container {
    max-width: 1500px !important;
}

/* Row spacing adjustment */
.row.g-4 {
    margin: 0 -25px !important;
}

/* Border style utility */
.border-style {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.border-style:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Design for Accreditation Cards */
@media (max-width: 768px) {
    .service-item {
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 35px !important;
    }

    .row.g-4 .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-bottom: 20px !important;
    }

    .row.g-4 {
        margin: 0 -15px !important;
    }

    .row.g-4 .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 15px !important;
        margin-bottom: 20px !important;
    }

    .certificate-item {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
        padding: 15px !important;
    }

    .certificate-item img {
        max-width: 90% !important;
        max-height: 90% !important;
    }

    .service-item.text-center {
        min-height: 250px !important;
        max-height: 250px !important;
        padding: 20px !important;
    }

    .service-item.text-center .mb-4 {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
        margin-bottom: 12px !important;
    }

    .service-item.text-center img {
        height: 65px !important;
        max-height: 65px !important;
    }

    .service-item.text-center img[src*="SABIC"],
    .service-item.text-center img[alt*="SABIC"],
    .service-item.text-center img[alt*="sabic"] {
        width: 100px !important;
        max-width: 100px !important;
        height: auto !important;
        max-height: 65px !important;
    }

    .service-item.text-center h4 {
        font-size: 1.1rem !important;
        min-height: 35px !important;
        margin-bottom: 8px !important;
    }

    .service-item h4 {
        font-size: 1.2rem !important;
        min-height: 45px !important;
    }

    .service-item p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 576px) {
    .service-item {
        min-height: 250px !important;
        max-height: 250px !important;
        padding: 30px !important;
    }

    .row.g-4 .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }

    .row.g-4 {
        margin: 0 -10px !important;
    }

    .row.g-4 .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }

    .certificate-item {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
        padding: 15px !important;
    }

    .certificate-item img {
        max-width: 85% !important;
        max-height: 85% !important;
    }

    .service-item.text-center {
        min-height: 220px !important;
        max-height: 220px !important;
        padding: 18px !important;
    }

    .service-item.text-center .mb-4 {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
        margin-bottom: 10px !important;
    }

    .service-item.text-center img {
        height: 55px !important;
        max-height: 55px !important;
    }

    .service-item.text-center img[src*="SABIC"],
    .service-item.text-center img[alt*="SABIC"],
    .service-item.text-center img[alt*="sabic"] {
        width: 85px !important;
        max-width: 85px !important;
        height: auto !important;
        max-height: 55px !important;
    }

    .service-item.text-center h4 {
        font-size: 1rem !important;
        min-height: 35px !important;
        margin-bottom: 6px !important;
    }

    .service-item h4 {
        font-size: 1.1rem !important;
        min-height: 40px !important;
    }

    .service-item p {
        font-size: 0.9rem !important;
    }
}

/*** Accreditations & Certifications Section End ***/

/*** Awards Section Start ***/
/* Awards Page - Equal Cards and Images */
body.awards-page .certificate-item,
.awards-section .certificate-item {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    width: 100% !important;
    padding: 15px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    background-color: #f8f9fa !important;
    margin: 0 auto !important;
}

body.awards-page .certificate-item img,
.awards-section .certificate-item img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

body.awards-page .certificate-link:hover .certificate-item,
.awards-section .certificate-link:hover .certificate-item {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

body.awards-page .certificate-link:hover img,
.awards-section .certificate-link:hover img {
    transform: scale(1.03) !important;
}

/* Ensure equal column heights for Awards page */
body.awards-page .row.g-4 [class*="col-"] {
    display: flex !important;
    align-items: stretch !important;
    margin-bottom: 30px !important;
}

body.awards-page .certificate-link {
    text-decoration: none !important;
    display: block !important;
    height: 100% !important;
    width: 100% !important;
}

/* Awards page column width optimization */
body.awards-page .row.g-4 .col-lg-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding: 0 15px !important;
}

body.awards-page .row.g-4 .col-md-6 {
    padding: 0 15px !important;
}

/* Responsive Design for Awards Cards - Equal Sizing */
@media (max-width: 768px) {

    body.awards-page .certificate-item,
    .awards-section .certificate-item {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        width: 100% !important;
        padding: 12px !important;
    }

    body.awards-page .certificate-item img,
    .awards-section .certificate-item img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }

    body.awards-page .row.g-4 .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 10px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {

    body.awards-page .certificate-item,
    .awards-section .certificate-item {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        width: 100% !important;
        padding: 10px !important;
    }

    body.awards-page .certificate-item img,
    .awards-section .certificate-item img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }

    body.awards-page .row.g-4 .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        margin-bottom: 15px !important;
    }
}

/*** Awards Section End ***/

/*** Workflow Section Start ***/
/* Our Workflow Project Execution Process - Equal Cards and Images */
.workflow-section .gallery-item,
body.gallery-page .gallery-item {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    width: 100% !important;
    margin-bottom: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f8f9fa !important;
}

.workflow-section .gallery-item:hover,
body.gallery-page .gallery-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.workflow-section .gallery-item img,
body.gallery-page .gallery-item img {
    width: 100% !important;
    height: 350px !important;
    max-width: 100% !important;
    max-height: 350px !important;
    min-height: 350px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.workflow-section .gallery-item:hover img,
body.gallery-page .gallery-item:hover img {
    transform: scale(1.05) !important;
}

/* Gallery Overlay for Workflow */
.workflow-section .gallery-overlay,
body.gallery-page .gallery-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 12px !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.workflow-section .gallery-item:hover .gallery-overlay,
body.gallery-page .gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.workflow-section .gallery-overlay .btn,
body.gallery-page .gallery-overlay .btn {
    background: rgba(202, 158, 67, 0.9) !important;
    border: 2px solid #CA9E43 !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.workflow-section .gallery-overlay .btn:hover,
body.gallery-page .gallery-overlay .btn:hover {
    background: #CA9E43 !important;
    transform: scale(1.1) !important;
}

/* Ensure equal column heights for Workflow */
.workflow-section .row.g-4 [class*="col-"],
body.gallery-page .row.g-4 [class*="col-"] {
    display: flex !important;
    align-items: stretch !important;
    margin-bottom: 30px !important;
}

/* Workflow column width optimization */
.workflow-section .row.g-4 .col-lg-4,
body.gallery-page .row.g-4 .col-lg-4 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding: 0 15px !important;
}

.workflow-section .row.g-4 .col-md-6,
body.gallery-page .row.g-4 .col-md-6 {
    padding: 0 15px !important;
}

/* Responsive Design for Workflow Cards */
@media (max-width: 768px) {

    .workflow-section .gallery-item,
    body.gallery-page .gallery-item {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .workflow-section .gallery-item img,
    body.gallery-page .gallery-item img {
        height: 300px !important;
        max-height: 300px !important;
        min-height: 300px !important;
    }

    .workflow-section .row.g-4 .col-lg-4,
    body.gallery-page .row.g-4 .col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 10px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {

    .workflow-section .gallery-item,
    body.gallery-page .gallery-item {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .workflow-section .gallery-item img,
    body.gallery-page .gallery-item img {
        height: 280px !important;
        max-height: 280px !important;
        min-height: 280px !important;
    }

    .workflow-section .row.g-4 .col-lg-4,
    body.gallery-page .row.g-4 .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        margin-bottom: 15px !important;
    }
}

/*** Workflow Section End ***/

/*** Our Awesome References Section Start ***/
/* Our Awesome References - We Provide Best Quality Industrial Services */
.service.py-5 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.service.py-5::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23CA9E43" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23CA9E43" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') !important;
    z-index: 1 !important;
}

.service .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Enhanced Section Title */
.service .text-primary {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #CA9E43 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
    position: relative !important;
}

.service .text-primary::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #CA9E43, #B8903A) !important;
    border-radius: 2px !important;
}

.service .display-4 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #0e121d !important;
    line-height: 1.2 !important;
    margin-bottom: 3rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Enhanced Service Cards - Increased Size */
.service .service-item {
    height: auto !important;
    /* Allow natural height based on content */
    min-height: 500px !important;
    /* Set minimum height */
    display: flex !important;
    flex-direction: column !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.service-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #CA9E43, #B8903A) !important;
    z-index: 3 !important;
}

.service .service-item:hover {
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2) !important;
    border-color: #CA9E43 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%) !important;
}

/* Enhanced Service Images - Larger Size */
.service .service-item img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    border-bottom: 2px solid #CA9E43 !important;
}

.service .service-item:hover img {
    transform: scale(1.1) !important;
    filter: brightness(1.15) contrast(1.2) saturate(1.2) !important;
    border-bottom-color: #B8903A !important;
}

/* Service Text Container - More Space */
.service .service-text {
    padding: 25px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Service Text Headings - Larger */
.service .service-text h5 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

/* Service Text Paragraphs - Larger */
.service .service-text p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin-bottom: 20px !important;
    flex-grow: 1 !important;
    overflow: visible !important;
    /* Show all content */
    display: block !important;
    /* Remove any line clamping */
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}

/* Service Link - More Prominent */
.service .service-text a {
    margin-top: auto !important;
    align-self: flex-start !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    background-color: #f8f9fa !important;
    transition: all 0.3s ease !important;
}

.service .service-text a:hover {
    transform: translateX(5px) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service .service-item {
        min-height: 600px !important;
    }
}

@media (max-width: 768px) {
    .service .service-item {
        min-height: 550px !important;
    }

    .service .service-item img {
        height: 300px !important;
        max-height: 300px !important;
        min-height: 300px !important;
    }

    .service .service-text h5 {
        font-size: 1.4rem !important;
    }

    .service .service-text p {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 576px) {
    .service .service-item {
        min-height: 500px !important;
    }

    .service .service-item img {
        height: 250px !important;
        max-height: 250px !important;
        min-height: 250px !important;
    }

    .service .service-text {
        padding: 1.8rem !important;
    }

    .service .service-text h5 {
        font-size: 1.3rem !important;
    }

    .service .service-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}

/*** Our Awesome References Section End ***/

/*** Enhanced Bootstrap Carousel Start ***/
/* Hero Carousel Container */
#heroCarousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Improved Carousel Images */
.carousel-img {
    height: 100vh;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    /*filter: brightness(0.6);
    transition: all 0.8s ease;*/
}

.carousel-item.active .carousel-img {
    filter: brightness(0.7);
    transform: scale(1.02);
}

/* Carousel Overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 76, 108, 0.7) 0%, rgba(202, 158, 67, 0.3) 100%);
    z-index: 1;
}

/* Enhanced Carousel Caption */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0;
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Hero Buttons */
.hero-buttons .btn {
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* Enhanced Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #CA9E43;
    transform: scale(1.2);
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 76, 108, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(202, 158, 67, 0.9);
    border-color: #CA9E43;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.carousel-control-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    width: 0%;
    transition: width 0.1s linear;
}

/* Carousel Fade Effect Enhancement */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    #heroCarousel {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-image {
        height: 70vh;
        min-height: 500px;
    }



    .carousel-caption h1 {
        font-size: 2rem !important;
    }

    .carousel-caption h5 {
        font-size: 1rem !important;
    }

    .carousel-caption p {
        font-size: 1rem !important;
    }

    .hero-buttons .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        margin: 5px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 60px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

/*** Enhanced Bootstrap Carousel End ***/

/*** Services Section Styling ***/
.service {
    background-color: #f8f9fa;
    position: relative;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern-light.png');
    opacity: 0.05;
    pointer-events: none;
}

.service .text-primary {
    color: #CA9E43 !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.service h1 {
    color: #333;
    font-weight: 700;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Image Container */
.service-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

/* Service Overlay with Icon */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: #fff;
    font-size: 3rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: translateY(0);
}

/* Service Content */
.service-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.service-content h4 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #CA9E43;
}

.service-content p {
    color: #666;
    font-size: 1rem;
}

/* Enhanced Client Card Styling */
/* .client-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 15px;
} */

/* Responsive grid adjustment */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Additional enhancements for client cards */
.client-card {
    transition: all 0.3s ease;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* .client-card img {
    transition: transform 0.3s ease;
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
} */

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

.client-card h4 {
    transition: color 0.3s ease;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-card:hover h4 {
    color: #CA9E43;
}

.client-card p {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;

    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.client-card1 {
    padding: 10px;
}


.client-card1 img {
    transition: all 0.3s ease;
   height: 150px;
    width: 220px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    /* margin-left: 15px; */
    object-fit: fill;

   
    
}


/* Service Button */
.service-btn {
    display: inline-block;
    color: #CA9E43;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #CA9E43;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.service-btn:hover {
    background-color: #CA9E43;
    color: #fff;
    transform: translateY(-3px);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-content h4 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }
}

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

    .service-content {
        padding: 20px;
        height: calc(100% - 200px);
    }

    .service-content h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .service-content p {
        margin-bottom: 15px;
    }

    .service-btn {
        padding: 7px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .service-img {
        height: 180px;
    }

    .service-content {
        height: calc(100% - 180px);
    }
}



.carousel-control-text {
    display: none;
}

@media (max-width: 576px) {
    #heroCarousel {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-image {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 3px;
    }
}

/* Improved Carousel Caption */
.carousel-caption {
    background: linear-gradient(135deg, rgba(30, 76, 108, 0.6) 0%, rgba(202, 158, 67, 0.3) 100%);
}

.carousel-caption h5 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #CA9E43;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-caption .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* Improved Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 76, 108, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(202, 158, 67, 0.9);
    border-color: #CA9E43;
    transform: translateY(-50%) scale(1.1);
}

/* Duplicate carousel fade styles removed - using unified styling above */

/* Responsive Design */
@media (max-width: 768px) {
    #heroCarousel {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-img {
        height: 70vh;
    }
}

/* Center the READ MORE links and fix hover effects */
.service-text .small.text-primary {
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto !important;
    position: relative !important;
    color: #CA9E43 !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease !important;
    padding: 5px 15px !important;
    border-radius: 4px !important;
}

/* Remove the ID-based styling that might be causing inconsistency */
#read-link {
    margin-left: 0 !important;
}

/* Center align the service text container */
.service .service-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
}

/* Prevent color change on hover */
.service-item:hover .service-text .small.text-primary,
.service-item:hover .service-text a.small.text-primary {
    color: #CA9E43 !important;
    /* Keep golden color on hover */
    transform: scale(1.1) !important;
    /* Only zoom effect */
}

/* Keep arrow icon golden too */
.service-item:hover .service-text .small.text-primary i,
.service-item:hover .service-text a.small.text-primary i {
    color: #CA9E43 !important;
}

/* Make sure paragraphs take available space */
.service .service-text p {
    flex-grow: 1 !important;
    margin-bottom: 1.5rem !important;
}

/* Center the READ MORE links and fix hover effects */
.service-text .small.text-primary {
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto !important;
    position: relative !important;
    color: #CA9E43 !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease !important;
    padding: 5px 15px !important;
    border-radius: 4px !important;
}

/* Remove the ID-based styling that might be causing inconsistency */
#read-link {
    margin-left: 0 !important;
}

/* Center align the service text container */
.service .service-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
}

/* Prevent color change on hover */
.service-item:hover .service-text .small.text-primary,
.service-item:hover .service-text a.small.text-primary {
    color: #CA9E43 !important;
    /* Keep golden color on hover */
    transform: scale(1.1) !important;
    /* Only zoom effect */
}

/* Keep arrow icon golden too */
.service-item:hover .service-text .small.text-primary i,
.service-item:hover .service-text a.small.text-primary i {
    color: #CA9E43 !important;
}

/* Make sure paragraphs take available space */
.service .service-text p {
    flex-grow: 1 !important;
    margin-bottom: 1.5rem ! min-height: 500px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
}

.carousel-caption h5 {
    font-size: 1.2rem;
}

.carousel-caption p {
    font-size: 1.3rem;
}

.hero-buttons .btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    margin: 5px !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-text {
    display: none;
}


@media (max-width: 576px) {
    #heroCarousel {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-img {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption h5 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 3px;
    }
}

/* Improved Carousel Caption */
.carousel-caption {
    background: linear-gradient(135deg, rgba(30, 76, 108, 0.6) 0%, rgba(202, 158, 67, 0.3) 100%);
}

.carousel-caption h5 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #CA9E43;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    font-weight: 600;
    letter-spacing: 1px;

    font-size: 1rem;
}

.carousel-caption p {
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}


@media (max-width: 576px) {
    #heroCarousel {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-img {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 5px;
    }
}

/*** Enhanced Bootstrap Carousel End ***/


#read-link {
    margin-left: 40px !important;
}

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/

/*** Testimonial Start ***/
/* Testimonial Carousel Outer Stage */
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

/* Testimonial Item */
.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

/* Customer Text (Bottom Box) */
.testimonial .testimonial-item .customer-text {
    border: 1px solid #CA9E43;
    border-top: none;
}

/* Quote Icon */
.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: #CA9E43;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Inner Part with Image */
.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

/* Image Inside Testimonial */
.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid #CA9E43;
}

/* Owl Carousel Dots Wrapper */
.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
}

/* Owl Dot Default Style */
.testimonial-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

/* Owl Dot Active State */
.testimonial-carousel .owl-dots .owl-dot.active {
    background-color: #CA9E43;
    transform: scale(1.3);
}

/* Hide Unnecessary Span Inside Dot */
.testimonial-carousel .owl-dots .owl-dot span {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 6px;
    }
}

/*** Testimonial End ***/



/*** Footer Start ***/
.footer {
    background: #765b1e !important;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color: white;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

.capabilities-table thead {
    background-color: #CA9E43 !important;
}

.capabilities-table thead th {
    color: #ffffff;
}

/* ========== QUALITY POLICY STYLES ========== */

/* Our Commitments Section */
.commitments-section {
    margin-top: 50px;
}

.commitment-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(202, 158, 67, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(202, 158, 67, 0.2);
    border-color: #CA9E43;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.commitment-item:hover .commitment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(202, 158, 67, 0.4);
}

.commitment-item h5 {
    color: #CA9E43;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.commitment-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.commitment-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(202, 158, 67, 0.1);
    transition: all 0.3s ease;
}

.commitment-features li:last-child {
    border-bottom: none;
}

.commitment-features li:hover {
    color: #CA9E43;
    padding-left: 10px;
}

.commitment-features li i {
    transition: all 0.3s ease;
}

.commitment-features li:hover i {
    transform: translateX(5px);
}

/* Quality Features Styling */
.quality-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.quality-features .feature-item i {
    font-size: 1.2rem;
}

/* Enhanced Main Title Styling */
.display-4.fw-bold {
    font-weight: 800 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.display-4.fw-bold::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    border-radius: 2px;
}

/* Call to Action Section */
.cta-section {
    margin-top: 50px;
}

.cta-content {
    border: 1px solid rgba(202, 158, 67, 0.3);
    position: relative;
    transition: all 0.3s ease;
    color: white;
}

.cta-gold-theme {
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%) !important;
    color: white !important;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(202, 158, 67, 0.3);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.7;
}

/* CTA Content Styling */
.cta-title {
    color: white !important;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.cta-icon-color {
    color: white !important;
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Button Styles */
.btn-cta-primary {
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    border: 2px solid white;
    color: #CA9E43 !important;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
    background: white;
    color: #B8903A !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white !important;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-secondary:hover {
    background: white;
    color: #CA9E43 !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Quality Badge Styles */
.quality-badge {
    font-size: 0.9rem;
    border-radius: 20px !important;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.quality-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.3) !important;
}

/* ISO Card Gold Theme */
.iso-card-gold {
    border: 1px solid rgba(202, 158, 67, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(202, 158, 67, 0.1);
}

.iso-card-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(202, 158, 67, 0.2);
}

.iso-header-gold {
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%) !important;
}

.iso-check-gold {
    color: #CA9E43 !important;
}

/* Border Style Class */
.border-style {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.border-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .commitment-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .commitment-icon {
        width: 60px;
        height: 60px;
    }

    .commitment-icon i {
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 30px 20px !important;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .quality-badge {
        display: block;
        margin-bottom: 10px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Animation Enhancements */
.commitment-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.commitment-item:nth-child(1) {
    animation-delay: 0.1s;
}

.commitment-item:nth-child(2) {
    animation-delay: 0.3s;
}

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

/* Accessibility Improvements */
.commitment-item:focus,
.cta-content:focus {
    outline: 2px solid #CA9E43;
    outline-offset: 2px;
}

/* Enhanced Typography */
.commitment-item strong {
    font-weight: 700;
    color: #CA9E43;
}

/* ========== CLIENT TIMELINE SHOWCASE ========== */
.client-timeline {
    padding: 70px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

.client-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-light.png');
    opacity: 0.03;
    pointer-events: none;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E121D;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.timeline-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #CA9E43, #F68A0A);
}

.timeline-header p {
    font-size: 1.1rem;
    color: #878D97;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.timeline-filter-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #878D97;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-filter-btn:hover,
.timeline-filter-btn.active {
    background: #F68A0A;
    color: #fff;
    border-color: #F68A0A;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.2);
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.timeline-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: rgba(246, 138, 10, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    background: #F68A0A;
}

.timeline-icon i {
    color: #F68A0A;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon i {
    color: #fff;
}

.timeline-date {
    text-align: right;
}

.timeline-month {
    display: block;
    font-size: 0.85rem;
    color: #878D97;
    margin-bottom: 2px;
}

.timeline-year {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F68A0A;
}

.timeline-card-body {
    padding: 20px;
}

.timeline-client {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0E121D;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-client {
    color: #F68A0A;
}

.timeline-location {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.timeline-location i {
    color: #F68A0A;
    margin-right: 8px;
    margin-top: 4px;
    font-size: 0.9rem;
}

.timeline-location span {
    font-size: 0.95rem;
    color: #878D97;
}

.timeline-description {
    font-size: 0.95rem;
    color: #878D97;
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .timeline-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .client-timeline {
        padding: 50px 0;
    }

    .timeline-header {
        margin-bottom: 30px;
    }

    .timeline-header h2 {
        font-size: 2rem;
    }

    .timeline-header p {
        font-size: 1rem;
    }

    .timeline-filters {
        flex-wrap: wrap;
    }

    .timeline-filter-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .timeline-cards {
        grid-template-columns: 1fr;
    }

    .timeline-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.timeline-card {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
    opacity: 0;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-bg.png');
    opacity: 0.03;
    pointer-events: none;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E4C6C;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #CA9E43, #F68A0A);
}

.section-heading p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Premium Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Premium Client Card */
.premium-client-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-client-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.premium-client-card:hover {
    transform: translateY(-10px);
}

.premium-client-card:hover::after {
    opacity: 1;
}

/* Card Header with Logo */
.client-logo-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.client-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.premium-client-card:hover .client-logo-wrapper::before {
    opacity: 1;
    transform: scale(1);
}

.client-logo {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.premium-client-card:hover .client-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Card Content */
.client-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E4C6C;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 12px;
}

.client-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #F68A0A;
    transition: width 0.3s ease;
}

.premium-client-card:hover .client-name {
    color: #F68A0A;
}

.premium-client-card:hover .client-name::after {
    width: 60px;
}

.client-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Card Footer */
.client-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-industry {
    font-size: 0.85rem;
    color: #adb5bd;
    display: flex;
    align-items: center;
}

.client-industry i {
    margin-right: 5px;
    color: #F68A0A;
}

.client-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #F68A0A;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.client-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.premium-client-card:hover .client-link {
    opacity: 1;
    transform: translateX(0);
}

.premium-client-card:hover .client-link i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .client-showcase {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .client-logo-wrapper {
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .client-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-client-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }
}

color: #CA9E43;
font-weight: 600;


.commitments-section h3 {
    color: #333;
    font-weight: 700;
    position: relative;
}

.commitments-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    border-radius: 2px;
}

/* ========== CLIENTS GRID - 4 CARDS PER ROW ========== */

.clients-section {
    padding: 300px 0;
    background-color: #f8f9fa;
}

.clients-section .container {
    max-width: 1320px;
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #333;
    position: relative;
}

.clients-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    border-radius: 2px;
}

/* 4 cards per row grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Client card styling */
/* .client-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
} */

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* .client-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
} */

/* .client-img img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
} */

.client-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.client-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1E4C6C;
    margin-bottom: 10px;
}

.client-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid-section {
        margin-left: 80px;
    }

    .clients-grid-section h3 {
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

/*** Historical Projects Section ***/
.historical-projects-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 80px 0;
}

.historical-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-light.png');
    opacity: 0.05;
    pointer-events: none;
}

.historical-projects-section .text-primary {
    color: #CA9E43 !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.historical-projects-section h1 {
    color: #333;
    font-weight: 700;
}

/* Row and Column Alignment */
.historical-projects-section .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: flex-start;
    align-items: stretch;
}

.historical-projects-section .col-md-6.col-lg-4 {
    display: flex;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Historical Project Cards */
.historical-project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #CA9E43;
    height: 100%;
}

.historical-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Project Header - Fixed Height and Alignment */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 90px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(202, 158, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon i {
    color: #CA9E43;
    font-size: 1.5rem;
}

.project-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.project-date span:first-child {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.project-date span:last-child {
    font-weight: 700;
    color: #CA9E43;
    font-size: 1.1rem;
}

/* Project Body - Consistent Alignment */
.project-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-body h4 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.project-location i {
    color: #CA9E43;
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
}

.project-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    height: 4.8em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Clear Row Fixes for Proper Alignment */
.historical-projects-section .row.g-4::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure cards in the same row have the same height */
@media (min-width: 992px) {
    .historical-projects-section .row.g-4 {
        display: flex;
        flex-wrap: wrap;
    }

    .historical-projects-section .row.g-4::before,
    .historical-projects-section .row.g-4::after {
        display: none;
    }

    .historical-projects-section .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    /* Force equal height for each row */
    .historical-projects-section .row.g-4:after {
        content: "";
        flex: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .historical-projects-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Responsive Adjustments - Maintaining Alignment */
@media (max-width: 991px) {
    .project-body h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .historical-projects-section .col-md-6 {
        width: 100%;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .project-header {
        height: 80px;
        padding: 15px;
    }

    .project-body {
        padding: 15px;
    }

    .project-icon {
        width: 45px;
        height: 45px;
    }

    .project-icon i {
        font-size: 1.3rem;
    }

    .project-date span:first-child {
        font-size: 0.85rem;
    }

    .project-date span:last-child {
        font-size: 1rem;
    }

    .project-body h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        height: 2.6em;
    }

    .project-location,
    .project-description {
        font-size: 0.9rem;
    }

    .project-description {
        height: 4.5em;
    }
}

@media (max-width: 576px) {
    .historical-projects-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .historical-projects-section .col-md-6 {
        padding-left: 5px;
        padding-right: 5px;
        max-width: 100%;
    }

    .project-header {
        height: 70px;
        padding: 12px;
    }

    .project-body {
        padding: 12px;
    }

    .project-icon {
        width: 40px;
        height: 40px;
    }

    .project-icon i {
        font-size: 1.2rem;
    }

    .project-body h4 {
        height: 2.4em;
        margin-bottom: 10px;
    }

    .project-description {
        height: 4.2em;
    }
}

/* ========== QUALITY POLICY DOCUMENT STYLES ========== */

/* Document Container */
.policy-document {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.policy-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
}

/* Document Header */
.document-header {
    background-color: #f8f9fa;
    position: relative;
}

.document-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/pattern-light.png');
    opacity: 0.05;
    pointer-events: none;
}

.document-header .text-primary {
    color: #CA9E43 !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.document-header h1 {
    color: #333;
    font-weight: 700;
}

/* Document Content */
.document-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Document Title */
.document-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Document Description */
.document-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Document Download Button */
.document-download-btn {
    display: inline-block;
    color: #CA9E43;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #CA9E43;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.document-download-btn:hover {
    background-color: #CA9E43;
    color: #fff;
    transform: translateY(-3px);
}

.document-download-btn i {
    transition: transform 0.3s ease;
}

.document-download-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .document-content {
        margin: 0 15px 20px;
    }
}

@media (max-width: 768px) {
    .document-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .document-content {
        margin: 0 10px 20px;
    }
}

/* Improved Carousel Caption */
.carousel-caption {
    background: linear-gradient(135deg, rgba(30, 76, 108, 0.6) 0%, rgba(202, 158, 67, 0.3) 100%);
}

.carousel-caption h5 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #CA9E43;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-caption .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* Improved Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 76, 108, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(202, 158, 67, 0.9);
    border-color: #CA9E43;
    transform: translateY(-50%) scale(1.1);
}

/* Duplicate carousel fade styles removed - using unified styling above */

/* Responsive Design */
@media (max-width: 768px) {
    #heroCarousel {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-img {
        height: 70vh;
    }
}

/* Center the READ MORE links and fix hover effects */
.service-text .small.text-primary {
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto !important;
    position: relative !important;
    color: #CA9E43 !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease !important;
    padding: 5px 15px !important;
    border-radius: 4px !important;
}

/* Remove the ID-based styling that might be causing inconsistency */
#read-link {
    margin-left: 0 !important;
}

/* Center align the service text container */
.service .service-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
}

/* Prevent color change on hover */
.service-item:hover .service-text .small.text-primary,
.service-item:hover .service-text a.small.text-primary {
    color: #CA9E43 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.policy-intro-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
}

.quality-logo-container {
    position: relative;
}

.quality-logo-container::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-logo-container::before {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Document Title Section */
.document-title-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.document-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
}

.company-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.document-info {
    background: rgba(0, 123, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 300px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* Document Content */
.document-content {
    background: #ffffff;
    position: relative;
}

.document-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #007bff, #28a745);
}

/* Policy List Styling */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: policy-counter;
}

.policy-item {
    counter-increment: policy-counter;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #007bff;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.policy-item::before {
    content: counter(policy-counter);
    position: absolute;
    left: -15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.policy-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #28a745;
}

.policy-item:hover::before {
    background: #28a745;
    transform: scale(1.1);
}

.policy-item:nth-child(even) {
    border-left-color: #28a745;
}

.policy-item:nth-child(even)::before {
    background: #28a745;
}

.policy-item:nth-child(3n)::before {
    background: #ffc107;
    color: #000;
}

.policy-item:nth-child(3n) {
    border-left-color: #ffc107;
}

/* ISO Compliance Section */
.iso-compliance {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #007bff;
    position: relative;
    overflow: hidden;
}

.iso-compliance::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.iso-compliance h4 {
    color: #007bff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.iso-compliance p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Policy Animation Enhancements */
.policy-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.policy-item:nth-child(1) {
    animation-delay: 0.1s;
}

.policy-item:nth-child(2) {
    animation-delay: 0.2s;
}

.policy-item:nth-child(3) {
    animation-delay: 0.3s;
}

.policy-item:nth-child(4) {
    animation-delay: 0.4s;
}

.policy-item:nth-child(5) {
    animation-delay: 0.5s;
}

.policy-item:nth-child(6) {
    animation-delay: 0.6s;
}

.policy-item:nth-child(7) {
    animation-delay: 0.7s;
}

.policy-item:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Policy Accessibility Improvements */
.policy-item:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Policy Enhanced Typography */
.policy-item strong {
    color: #007bff;
    font-weight: 600;
}

.lead {
    font-weight: 400;
    color: #495057;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .policy-intro-text {
        font-size: 0.8rem;
    }

    .document-title-section {
        padding: 30px 20px !important;
    }

    .document-content {
        padding: 30px 20px !important;
    }

    .policy-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .policy-number .badge {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }

    .policy-text {
        flex: 1;
    }

    .policy-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .quality-logo-container img {
        width: 80px !important;
        height: 80px !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    .policy-content {
        padding: 20px !important;
    }

    .iso-compliance-statement {
        padding: 20px !important;
        margin-top: 30px !important;
    }

    .iso-standards-section .row {
        margin: 0 -10px;
    }

    .iso-standards-section .col-12 {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .iso-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }

    .iso-header {
        padding: 20px !important;
    }

    .iso-header i {
        font-size: 2rem !important;
    }

    .iso-header h4 {
        font-size: 1.2rem !important;
    }

    .iso-body {
        padding: 20px !important;
    }

    .iso-features li {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }

    .display-6 {
        font-size: 1.3rem !important;
    }

    .policy-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .policy-number .badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .policy-text p {
        font-size: 0.85rem;
    }

    .quality-badges .badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin: 2px;
    }

    .iso-compliance-statement h4 {
        font-size: 1.1rem;
    }

    .iso-compliance-statement p {
        font-size: 0.9rem;
    }

    .commitment-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .commitment-icon {
        width: 60px;
        height: 60px;
    }

    .commitment-icon i {
        font-size: 1.5rem;
    }

    .commitment-item h5 {
        font-size: 1.1rem;
    }

    .commitment-item p {
        font-size: 0.85rem;
    }

    .commitment-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
}

/* Additional responsive utilities */
@media (min-width: 769px) and (max-width: 991px) {
    .policy-item {
        padding: 18px;
    }

    .iso-card {
        margin-bottom: 20px;
    }

    .commitment-item {
        padding: 25px;
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .policy-content {
        padding: 60px !important;
    }

    .iso-compliance-statement {
        padding: 40px !important;
    }

    .commitment-item {
        padding: 35px;
    }
}

/* ========== SIMPLIFIED UI/UX DESIGN ========== */

/* Simple Hero Section */
.quality-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-content {
    position: relative;
}

/* Simple Hero Icon */
.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(202, 158, 67, 0.3);
}

.hero-icon i {
    font-size: 2rem;
    color: white;
}

/* Simple Hero Title */
.hero-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Simple ISO Badges */
.iso-badges-simple {
    margin: 2rem 0;
}

.simple-badge {
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin: 5px;
}

.simple-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.simple-badge.badge-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.simple-badge.badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.simple-badge.badge-warning {
    background: linear-gradient(135deg, #CA9E43, #B8903A);
}

/* Simple Policy Content Section */
.policy-content-section {
    background: #ffffff;
}

.simple-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Simple Policy Content Card */
.policy-content-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #CA9E43;
}

.policy-intro-text .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Simple Policy Items */
.policy-points-simple {
    margin-top: 2rem;
}

.simple-policy-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.simple-policy-item:hover {
    background: #ffffff;
    border-left-color: #CA9E43;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.policy-number-simple {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #CA9E43, #B8903A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.policy-text-simple {
    flex: 1;
}

.policy-text-simple p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Simple Compliance Section */
.simple-compliance-section {
    margin-top: 3rem;
}

.simple-compliance-card {
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(202, 158, 67, 0.3);
}

.compliance-icon-simple {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
}

.simple-compliance-card h4 {
    color: white;
    font-weight: 700;
}

.simple-compliance-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.simple-compliance-card strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ========== SIMPLE RESPONSIVE DESIGN ========== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-icon {
        width: 70px;
        height: 70px;
    }

    .hero-icon i {
        font-size: 1.8rem;
    }

    .policy-content-card {
        padding: 2rem;
    }

    .simple-policy-item {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .quality-hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-icon {
        width: 60px;
        height: 60px;
    }

    .hero-icon i {
        font-size: 1.5rem;
    }

    .simple-badge {
        display: block;
        margin: 5px auto;
        text-align: center;
        max-width: 200px;
    }

    .policy-content-card {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policy-intro-text .lead {
        font-size: 1.1rem;
    }

    .simple-policy-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .simple-policy-item:hover {
        transform: translateY(-3px);
    }

    .policy-number-simple {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .policy-text-simple p {
        font-size: 0.95rem;
    }

    .simple-compliance-card {
        padding: 2rem;
    }

    .compliance-icon-simple {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .quality-hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

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

    .policy-content-card {
        padding: 1.2rem;
    }

    .policy-intro-text .lead {
        font-size: 1rem;
    }

    .simple-policy-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .policy-number-simple {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .policy-text-simple p {
        font-size: 0.9rem;
    }

    .simple-compliance-card {
        padding: 1.5rem;
    }

    .simple-compliance-card h4 {
        font-size: 1.3rem;
    }

    .simple-compliance-card p {
        font-size: 1rem;
    }
}

/* ========== MISSION VISION IMAGE STYLES ========== */

/* Mission Vision Image Full Display */
img[src="img/Mission-Vision.png"] {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

img[src="img/Mission-Vision.png"]:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Mission Vision Container */
.mission-vision-container {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.mission-vision-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Image Wrapper for Mission Vision - Card Style */
.img-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.img-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Mission Vision Image Specific Styling */
.mission-vision-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    background: #fafafa;
    padding: 10px;
}

.mission-vision-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* General img-wrapper img fallback */
.img-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    background: #fafafa;
    padding: 10px;
}

/* Responsive Mission Vision Image */
@media (max-width: 992px) {
    .img-wrapper {
        min-height: 350px;
        padding: 18px;
        margin: 15px auto;
    }

    .mission-vision-img {
        max-width: 450px;
        max-height: 300px;
        padding: 8px;
    }

    .img-wrapper img {
        max-width: 450px;
        max-height: 300px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .img-wrapper {
        min-height: 300px;
        padding: 15px;
        margin: 15px auto;
    }

    .mission-vision-img {
        max-width: 400px;
        max-height: 280px;
        padding: 8px;
    }

    .img-wrapper img {
        max-width: 400px;
        max-height: 280px;
        padding: 8px;
    }

    .mission-vision-container {
        padding: 15px;
        margin: 15px 0;
    }
}

@media (max-width: 576px) {
    .img-wrapper {
        min-height: 250px;
        padding: 12px;
        margin: 10px auto;
        border-radius: 10px;
    }

    .mission-vision-img {
        max-width: 350px;
        max-height: 220px;
        padding: 5px;
        border-radius: 8px;
    }

    .img-wrapper img {
        max-width: 350px;
        max-height: 220px;
        padding: 5px;
        border-radius: 8px;
    }

    .mission-vision-container {
        padding: 10px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .img-wrapper {
        min-height: 200px;
        padding: 10px;
    }

    .mission-vision-img {
        max-width: 300px;
        max-height: 180px;
        padding: 5px;
    }

    .img-wrapper img {
        max-width: 300px;
        max-height: 180px;
        padding: 5px;
    }
}

/* ========== CLIENTS PAGE STYLES ========== */

/* ========== CLIENTS GRID - PROFESSIONAL STYLING WITH PROPER MARGINS ========== */

/* Main container styling with proper margins */
.clients-grid-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Centered heading with improved styling */
.clients-grid-section h3 {
    font-size: 2.5rem;
    text-align: center !;
    color: #333;
    margin: 0 auto 60px;
    padding: 0 15px;
    font-weight: 700;
    position: relative;
    max-width: 800px;
    line-height: 1.3;
}

.clients-grid-section h3::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CA9E43, #B8903A);
    border-radius: 2px;
}

/* Clients Grid Layout - Exactly 4 cards per row with proper spacing */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
    margin: 0 auto;
}

/* Client Card Styling with consistent margins */
.client-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    text-align: center;
    padding: 20px 15px;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    height: 100%;
}

/* Client Card Link Styling with improved spacing */
/* .client-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 15px;
    padding: 10px 0;
} */

/* Client Card Hover Effects */
.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(202, 158, 67, 0.3);
}

/* Client Image Styling with proper spacing */
/* .client-card img {
    max-width: 130px;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
    margin: 0 auto 5px;
} */

.client-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Client Text Styling with improved spacing */
.client-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    padding: 0 10px;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
   margin-top: 10px;
}

.client-card:hover h4 {
    color: #CA9E43;
}

.client-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 0 5px;
    transition: color 0.3s ease;
    text-align: center;
    flex-shrink: 0;
    height: 4.8em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.client-card:hover p {
    color: #555;
}

/* Responsive Clients Grid with proper margins at all breakpoints */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .clients-grid-section {
        margin: 70px auto;
        padding: 0 25px;
    }

    .clients-grid-section h3 {
        font-size: 2.3rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .clients-grid-section {
        margin: 60px auto;
        padding: 0 20px;
    }

    .clients-grid-section h3 {
        font-size: 2.1rem;
        margin-bottom: 45px;
    }

    .client-card {
        min-height: 260px;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .clients-grid-section {
        margin: 50px auto;
        padding: 0 15px;
    }

    .clients-grid-section h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-card {
        padding: 25px 15px;
        min-height: 240px;
    }

    .client-card img {
        max-width: 100px;
        max-height: 70px;
    }

    .client-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .client-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .clients-grid-section {
        margin: 40px auto;
        padding: 0 15px;
    }

    .clients-grid-section h3 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .clients-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .client-card {
        padding: 25px 15px;
        min-height: 220px;
        max-width: 320px;
        margin: 0 auto;
    }

    .client-card img {
        max-width: 90px;
        max-height: 60px;
    }

    .client-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .client-card p {
        font-size: 0.8rem;
        height: auto;
        -webkit-line-clamp: 4;
    }
}

/* ========== ROW G-5 VERTICAL ALIGNMENT ========== */

/* Vertical Center Alignment for Row G-5 */
.row.g-5 {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.row.g-5>[class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive adjustments for row g-5 */
@media (max-width: 991.98px) {
    .row.g-5 {
        min-height: auto;
        align-items: stretch;
    }

    .row.g-5>[class*="col-"] {
        justify-content: flex-start;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .row.g-5 {
        min-height: auto;
    }
}

/* ========== COMPANY INFO SECTION STYLES ========== */

/* Company Info Section Background */
.company-info-section {
    background-color: #f8f9fa;
}

/* Company Info Section Responsive */
@media (max-width: 768px) {
    .company-info-section .display-5 {
        font-size: 1.8rem;
    }

    .company-info-section .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .company-info-section .btn-square {
        margin: 0 auto 15px;
    }

    .company-info-section .ms-4 {
        margin-left: 0 !important;
    }
}

/* ========== PETROLEUM & CHEMICAL TESTING SECTION ========== */

/* Petroleum Chemical Testing Section */
.petroleum-chemical-testing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #CA9E43;
    margin: 20px 0;
}

.petroleum-chemical-testing-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #CA9E43;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Testing Details Cards */
.testing-details-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testing-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testing-details-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Testing List Styling */
.testing-list {
    margin: 0;
    padding: 0;
}

.testing-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testing-list li:last-child {
    border-bottom: none;
}

.testing-list li:hover {
    color: #CA9E43;
    padding-left: 10px;
}

.testing-list li i {
    transition: all 0.3s ease;
}

.testing-list li:hover i {
    transform: scale(1.2);
}

/* Standards Badges */
.standards-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.standards-badges .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.standards-badges .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Purpose and Capabilities Text */
.testing-details-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* Responsive Design for Testing Section */
@media (max-width: 992px) {
    .petroleum-chemical-testing-section {
        padding: 25px;
    }

    .testing-details-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .petroleum-chemical-testing-section {
        padding: 20px;
        margin: 15px 0;
    }

    .petroleum-chemical-testing-section h4 {
        font-size: 1.3rem;
        text-align: center;
    }

    .testing-details-card {
        padding: 18px;
    }

    .testing-details-card h5 {
        font-size: 1rem;
        text-align: center;
    }

    .standards-badges {
        justify-content: center;
    }

    .testing-list li {
        font-size: 0.9rem;
        text-align: left;
    }

    .testing-details-card p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .petroleum-chemical-testing-section {
        padding: 15px;
    }

    .petroleum-chemical-testing-section h4 {
        font-size: 1.2rem;
    }

    .testing-details-card {
        padding: 15px;
    }

    .testing-details-card h5 {
        font-size: 0.95rem;
    }

    .standards-badges .badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .testing-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* ========== MATERIAL TESTING SECTION ========== */

/* Material Testing Section */
.material-testing-section {
    background: linear-gradient(135deg, #f1f8ff 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #007bff;
    margin: 20px 0;
}

.material-testing-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Material Testing Specific Styling */
.material-testing-section .testing-details-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.material-testing-section .testing-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.material-testing-section .testing-details-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e3f2fd;
    padding-bottom: 8px;
}

/* Material Testing List Styling */
.material-testing-section .testing-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 123, 255, 0.05);
    transition: all 0.3s ease;
}

.material-testing-section .testing-list li:hover {
    color: #007bff;
    padding-left: 10px;
}

.material-testing-section .testing-list li:hover i {
    transform: scale(1.2);
    color: #007bff;
}

/* Material Testing Standards Badges */
.material-testing-section .standards-badges .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.material-testing-section .standards-badges .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Material Testing Purpose and Capabilities */
.material-testing-section .testing-details-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* Responsive Design for Material Testing Section */
@media (max-width: 992px) {
    .material-testing-section {
        padding: 25px;
    }

    .material-testing-section .testing-details-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .material-testing-section {
        padding: 20px;
        margin: 15px 0;
    }

    .material-testing-section h4 {
        font-size: 1.3rem;
        text-align: center;
    }

    .material-testing-section .testing-details-card {
        padding: 18px;
    }

    .material-testing-section .testing-details-card h5 {
        font-size: 1rem;
        text-align: center;
    }

    .material-testing-section .standards-badges {
        justify-content: center;
    }

    .material-testing-section .testing-list li {
        font-size: 0.9rem;
        text-align: left;
    }

    .material-testing-section .testing-details-card p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .material-testing-section {
        padding: 15px;
    }

    .material-testing-section h4 {
        font-size: 1.2rem;
    }

    .material-testing-section .testing-details-card {
        padding: 15px;
    }

    .material-testing-section .testing-details-card h5 {
        font-size: 0.95rem;
    }

    .material-testing-section .standards-badges .badge {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .material-testing-section .testing-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* ========== NDT SERVICES SECTION ========== */

/* NDT Services Main Container */
.ndt-services-section {
    padding: 20px 0;
}

/* NDT Category Cards */
.ndt-category-card {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ndt-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.ndt-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Advanced NDT Styling */
.advanced-ndt {
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
    border-left: 5px solid #28a745;
}

.advanced-ndt::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.advanced-ndt:hover {
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

/* Conventional NDT Styling */
.conventional-ndt {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-left: 5px solid #007bff;
}

.conventional-ndt::before {
    background: linear-gradient(90deg, #007bff, #17a2b8);
}

.conventional-ndt:hover {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

/* Special NDT Styling */
.special-ndt {
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
    border-left: 5px solid #ffc107;
}

.special-ndt::before {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.special-ndt:hover {
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

/* NDT Section Titles */
.ndt-category-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.ndt-category-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
}

/* NDT Details Cards */
.ndt-details-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ndt-details-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ndt-details-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* NDT List Styling */
.ndt-list {
    margin: 0;
    padding: 0;
}

.ndt-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ndt-list li:last-child {
    border-bottom: none;
}

.ndt-list li:hover {
    padding-left: 10px;
    color: #333;
}

.ndt-list li i {
    transition: all 0.3s ease;
}

.ndt-list li:hover i {
    transform: scale(1.2);
}

/* NDT Purpose and Capabilities Text */
.ndt-details-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
}

/* Responsive Design for NDT Services */
@media (max-width: 992px) {
    .ndt-category-card {
        padding: 25px;
        margin-bottom: 25px;
    }

    .ndt-details-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ndt-services-section {
        padding: 15px 0;
    }

    .ndt-category-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .ndt-category-card h4 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .ndt-category-card h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ndt-details-card {
        padding: 18px;
    }

    .ndt-details-card h5 {
        font-size: 1rem;
        text-align: center;
    }

    .ndt-list li {
        font-size: 0.9rem;
        text-align: left;
    }

    .ndt-details-card p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ndt-category-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .ndt-category-card h4 {
        font-size: 1.1rem;
    }

    .ndt-details-card {
        padding: 15px;
    }

    .ndt-details-card h5 {
        font-size: 0.95rem;
    }

    .ndt-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .ndt-details-card p {
        font-size: 0.85rem;
    }
}

/* ========== SERVICES PAGE IMAGE ALIGNMENT ========== */

/* General Services Image Styling */
.services-page img,
.service-section img,
.container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

.services-page img:hover,
.service-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* .services-page img:hover,
.service-section img:hover,
.container img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
} */

/* Service Section Image Containers */
.service-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.service-image-container img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

/* Specific Image Classes for Services - 70% Height */
.img-fluid {
    width: 100% !important;
    height: 70% !important;
    max-width: 100% !important;
    max-height: 70% !important;
    object-fit: fill !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Center alignment for all service images */
.col-lg-6 img,
.col-md-6 img,
.col-12 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    width: 100% !important;
    object-fit: fill;
    border-radius: 10px !important;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

/* Image wrapper for better control */
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 15px 0;
}

.image-wrapper img {
    max-width: 85%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Image Styling */
@media (max-width: 768px) {
    .service-image-container {
        padding: 15px;
        margin: 15px 0;
    }

    .service-image-container img {
        max-width: 95%;
        max-height: 300px;
    }

    .image-wrapper {
        padding: 12px;
        margin: 12px 0;
    }

    .image-wrapper img {
        max-width: 90%;
        max-height: 250px;
    }

    .img-fluid {
        height: 70% !important;
        max-height: 70% !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 576px) {
    .service-image-container {
        padding: 10px;
        margin: 10px 0;
    }

    .service-image-container img {
        max-width: 100%;
        max-height: 250px;
    }

    .image-wrapper {
        padding: 10px;
        margin: 10px 0;
    }

    .image-wrapper img {
        max-width: 95%;
        max-height: 200px;
    }

    .img-fluid {
        border-radius: 6px !important;
    }
}

/* Specific styling for different service section images */
.mechanical-lab-img,
.chemical-lab-img,
.ndt-lab-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.mechanical-lab-img:hover,
.chemical-lab-img:hover,
.ndt-lab-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* Image container for better presentation */
.lab-image-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

@media (max-width: 768px) {
    .lab-image-container {
        padding: 20px;
        min-height: 250px;
    }

    .mechanical-lab-img,
    .chemical-lab-img,
    .ndt-lab-img {
        max-width: 450px;
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .lab-image-container {
        padding: 15px;
        min-height: 200px;
    }

    .mechanical-lab-img,
    .chemical-lab-img,
    .ndt-lab-img {
        max-width: 350px;
        max-height: 220px;
    }
}

/* Policy Content Card */
.policy-content-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.policy-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545, #CA9E43);
}

.policy-intro-text .lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Interactive Policy Points */
.policy-points-container {
    margin-top: 3rem;
}

.policy-point {
    margin-bottom: 2rem;
}

.policy-point-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
}

.policy-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(202, 158, 67, 0.1), transparent);
    transition: left 0.6s ease;
}

.policy-point-card:hover::before {
    left: 100%;
}

.policy-point-card:hover {
    transform: translateX(20px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.policy-number {
    flex-shrink: 0;
}

.number-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.policy-point-card:hover .number-badge {
    transform: scale(1.2) rotate(360deg);
}

.badge-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.badge-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
}

.badge-dark {
    background: linear-gradient(135deg, #343a40, #23272b);
}

.badge-gold {
    background: linear-gradient(135deg, #CA9E43, #B8903A);
}

.policy-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CA9E43, #B8903A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.policy-point-card:hover .policy-icon {
    transform: rotate(360deg) scale(1.1);
}

.policy-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    flex: 1;
}

/* ISO Compliance Highlight */
.iso-compliance-highlight {
    margin-top: 4rem;
}

.compliance-card {
    background: linear-gradient(135deg, #CA9E43 0%, #B8903A 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(202, 158, 67, 0.3);
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: complianceRotate 20s linear infinite;
}

@keyframes complianceRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.compliance-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: complianceIconFloat 3s ease-in-out infinite;
}

@keyframes complianceIconFloat {

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

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

.compliance-content {
    position: relative;
    z-index: 2;
}

.compliance-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.compliance-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600;
}

/* ========== AMAZING UI RESPONSIVE DESIGN ========== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .policy-content-card {
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .quality-hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .hero-icon i {
        font-size: 2.5rem;
    }

    .iso-badge {
        min-width: 200px;
        padding: 15px;
    }

    .iso-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .policy-content-card {
        padding: 2.5rem;
    }

    .policy-point-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .policy-point-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .compliance-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .hero-icon {
        width: 80px;
        height: 80px;
    }

    .hero-icon i {
        font-size: 2rem;
    }

    .iso-badges-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .iso-badge {
        min-width: 280px;
        max-width: 300px;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .policy-content-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .policy-intro-text .lead {
        font-size: 1.1rem;
    }

    .policy-point-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .policy-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .policy-content p {
        font-size: 1rem;
    }

    .compliance-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .compliance-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .compliance-title {
        font-size: 1.5rem;
    }

    .compliance-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .quality-hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero-icon {
        width: 70px;
        height: 70px;
    }

    .hero-icon i {
        font-size: 1.8rem;
    }

    .iso-badge {
        min-width: 250px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .iso-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .policy-content-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .policy-intro-text .lead {
        font-size: 1rem;
    }

    .policy-point-card {
        padding: 1rem;
        gap: 1rem;
    }

    .number-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .policy-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .policy-content p {
        font-size: 0.9rem;
    }

    .compliance-card {
        padding: 1.5rem;
    }

    .compliance-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .compliance-title {
        font-size: 1.3rem;
    }

    .compliance-text {
        font-size: 0.9rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Enhanced Hover Effects for Touch Devices */
@media (hover: none) {
    .policy-point-card:hover {
        transform: none;
    }

    .iso-badge:hover {
        transform: none;
    }

    .policy-point-card:active {
        transform: scale(0.98);
    }

    .iso-badge:active {
        transform: scale(0.98);
    }
}

/* Print Styles for Amazing UI */
@media print {
    .quality-hero-section {
        background: white !important;
        min-height: auto;
    }

    .hero-background-animation,
    .hero-particles {
        display: none;
    }

    .policy-content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .policy-point-card {
        box-shadow: none;
        border: 1px solid #eee;
        break-inside: avoid;
    }

    .compliance-card {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
}

/* Print Styles */
@media print {
    .policy-document {
        box-shadow: none;
        border: 1px solid #000;
    }

    .policy-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .document-header {
        background: #f5f5f5 !important;
    }
}


.clients-grid-section {
    margin-left: 80px;
}

.clients-grid-section1 h3 {
    text-align: center;
}

.head h3 {
    text-align: center;
}


.mainimg img {
    /* display: block; */
    /* margin: 0 auto; */
    max-width: 100%;
    height: 100% !important;
    width: 100% !important;
    object-fit: fill;
    border-radius: 0px !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}


.project-card {
    border-radius: 0px !important;
    border-top-left-radius: 10px !important;

}