/********** Template CSS **********/
:root {
    --primary: #1B5FA8;
    --primary-dark: #123F73;
    --primary-rgb: 27, 95, 168;
    --secondary: #55606B;
    --light: #F4F6F8;
    --dark: #02245B;
    --accent: #C9A227;
    --accent-rgb: 201, 162, 39;
}

/********** Corporate theme overrides for the compiled Bootstrap primary utilities **********
 * The bundled bootstrap.min.css was custom-compiled with its own hardcoded primary colors
 * (green for btn/text/bg-primary, orange for outline/border/link-primary) instead of using
 * CSS variables. Since we can't recompile it, these rules re-point every Bootstrap "primary"
 * utility at the new corporate palette above so the whole site reads as one consistent theme.
 */
.btn-primary,
.btn-primary:hover,
.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--primary-rgb), 0.5);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--primary-rgb), 0.5);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: var(--primary);
    background-color: transparent;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.link-primary {
    color: var(--primary) !important;
}

.link-primary:hover,
.link-primary:focus {
    color: var(--primary-dark) !important;
}

.alert-primary {
    color: var(--dark);
    background-color: #E4ECF3;
    border-color: #CDDBE8;
}

.list-group-item-primary {
    color: var(--dark);
    background-color: #E4ECF3;
}

/* On dark navy sections (Facts, Project captions) blue-on-navy text-primary would be
   unreadable, so those spots get the gold accent instead. */
.facts .text-primary,
.project-title .text-primary {
    color: var(--accent) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar {
    box-shadow: 0 2px 12px rgba(2, 36, 91, 0.06);
    border-bottom: 1px solid rgba(2, 36, 91, 0.06);
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 20px;
    height: 75px;
    display: flex;
    align-items: center;
    background: transparent;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

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

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

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .12) !important;
    border-radius: 10px;
    transition: transform .3s, background .3s;
}

.facts .border:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .08);
}

.facts .fa-3x.text-white {
    color: var(--accent) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
    padding: 0 40px;
}

.project-card-v2 {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.project-card-v2 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s;
}

.project-card-v2:hover img {
    transform: scale(1.08);
}

.project-card-v2-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px 16px;
    background: linear-gradient(to top, rgba(2, 36, 91, .95) 0%, rgba(2, 36, 91, 0) 100%);
}

.project-card-v2-caption h5 {
    color: #fff;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
    padding: 0 10px;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-card-v2 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 36, 91, .08);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid var(--primary);
}

.team-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 36, 91, .14);
}

.team-card-v2-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-v2-body {
    padding: 22px;
    text-align: center;
}

.team-card-v2-role {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.team-card-v2-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card-v2-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--dark);
    transition: .3s;
}

.team-card-v2-social a:hover {
    background: var(--primary);
    color: #fff;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding: 10px;
}

.testimonial-card-v2 {
    background: #fff;
    border-radius: 14px;
    padding: 36px 30px;
    margin: 12px;
    box-shadow: 0 10px 30px rgba(2, 36, 91, .08);
    text-align: left;
    height: calc(100% - 24px);
}

.testimonial-card-v2-quote {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.testimonial-card-v2-text {
    color: var(--secondary);
    min-height: 90px;
}

.testimonial-card-v2-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EEEEEE;
}

.testimonial-carousel .testimonial-card-v2-author img {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
    display: inline-block !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 120px;
    top: -70px;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid #E7E7E7;
    font-size: 18px;
    transition: .3s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer-cta {
    background: linear-gradient(120deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 50px 0;
}

.footer-cta h2 {
    color: #fff;
}

.footer-cta p {
    color: rgba(255, 255, 255, .75);
}

.footer {
    color: #AEB7C4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.whatsapp-button {
  display: inline-block; /* Or flex, grid, etc. for positioning */
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
}

.whatsapp-button img {
  width: 25px; /* Adjust size as needed */
  height: 25px;
  vertical-align: middle; /* Align image with text */
  margin-right: 10px; /* Add some space between icon and text */
}

/* Optional: Hover effects */
.whatsapp-button:hover {
  opacity: 0.8;
}
.text-justify{
    text-align: justify;
}
.bounce {
    animation: bounce 2s infinite;
}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}
a {
    color: var(--primary);
    text-decoration: none;
}

/* btn-call */

.btn-call {
    background: #38a3fd;
    border: 2px solid #38a3fd;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
    cursor: pointer;
    height: 60px;
    width: 60px;
    text-align: center;
    position: fixed;
    left: 10px;
    bottom: 50px;
    z-index: 999;
    transition: .3s;
    -webkit-animation: hoverWave linear 1s infinite;
    animation: hoverWave linear 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
		text-decoration: none;
}

.btn-call__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1200ms ease 0s normal none 1 running shake;
    animation-iteration-count: infinite;
    -webkit-animation: 1200ms ease 0s normal none 1 running shake;
    -webkit-animation-iteration-count: infinite;
    color: white;
    font-size: 30px;
    padding-top: 5px;
    transition: .3s all;
}

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

.btn-call:hover .btn-call__ico {
    color: #38a3fd;
}

@-webkit-keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

/* animations icon */

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}
.customer-slider {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.customer-logos {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    gap: 20px;
}

.customer-slider:hover .customer-logos {
    animation-play-state: paused;
}

.customer-card {
    flex: 0 0 auto;
    width: 150px;
    height: 100px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.customer-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Keyframes for scrolling */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/********** Shop / Product Catalog Redesign **********/

.section-title {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Breadcrumb bar under the navbar */
.page-header-bar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 60px 0 40px;
    color: #fff;
}

.page-header-bar h1 {
    color: #fff;
    margin-bottom: 8px;
}

.page-header-bar .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header-bar .breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.page-header-bar .breadcrumb a:hover {
    color: #fff;
}

.page-header-bar .breadcrumb .active {
    color: var(--accent);
}

/* Category filter pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #E7E7E7;
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    transition: .3s;
}

.category-pill:hover,
.category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Product cards */
.product-card,
.product-card-v2 {
    position: relative;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(2, 36, 91, 0.08);
    transition: transform .35s, box-shadow .35s;
    height: 100%;
    border-top: 4px solid var(--primary);
}

.product-card:hover,
.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(2, 36, 91, 0.16);
}

.product-card .product-img-wrap,
.product-card-v2 .product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--light);
}

.product-card .product-img-wrap img,
.product-card-v2 .product-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s;
}

.product-card:hover .product-img-wrap img,
.product-card-v2:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-card .card-body,
.product-card-v2 .card-body {
    padding: 22px;
}

.product-card .card-title,
.product-card-v2 .card-title {
    font-weight: 700;
    color: var(--dark);
}

.product-card .product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

.badge-fs {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.4);
}

.badge-stock-in {
    background: rgba(40, 167, 69, 0.12);
    color: #1e7e34;
}

.badge-stock-out {
    background: rgba(224, 48, 61, 0.12);
    color: var(--primary);
}

.badge-category {
    background: rgba(2, 36, 91, 0.06);
    color: var(--secondary);
}

/* Product detail gallery */
.product-gallery-main {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 24, 31, 0.12);
    background: var(--light);
}

.product-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-gallery-thumbs img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .25s;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--primary);
}

/* Enquiry / CTA card */
.enquiry-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(18, 24, 31, 0.1);
}

.enquiry-card .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--light);
    border-radius: 14px;
}

.empty-state i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

/********** New site-wide layout components **********/

/*** Top utility bar ***/
.topbar-strip {
    background: var(--dark);
    padding: 10px 0;
}

.topbar-link {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    margin-right: 28px;
}

.topbar-link i {
    color: var(--accent);
    margin-right: 8px;
}

a.topbar-link:hover {
    color: #fff;
}

.topbar-social a {
    color: rgba(255, 255, 255, .8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    background: rgba(255, 255, 255, .08);
    transition: .3s;
}

.topbar-social a:hover {
    background: var(--primary);
    color: #fff;
}

/*** Nav CTA / WhatsApp button ***/
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff !important;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    border-color: #1EBE5A;
    color: #fff !important;
}

.btn-outline-light.btn-whatsapp {
    background: #25D366;
}

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

/*** Hero banner (reusable page-header partial) ***/
.hero-wrap {
    position: relative;
    margin-bottom: 0;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0 110px;
    background: linear-gradient(120deg, var(--dark) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.hero-banner-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -180px;
    right: -100px;
}

.hero-banner-eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-banner-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.hero-banner .breadcrumb a {
    color: rgba(255, 255, 255, .7);
}

.hero-banner .breadcrumb a:hover {
    color: #fff;
}

.hero-banner .breadcrumb .active {
    color: var(--accent);
}

/*** Stats card (overlaps hero on the homepage) ***/
.stats-overlap-wrap {
    margin-top: -70px;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.stats-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(2, 36, 91, .15);
    padding: 10px 0;
}

.stat-cell {
    padding: 25px 15px;
    border-right: 1px solid #EEEEEE;
}

.col-lg-3:last-child .stat-cell,
.col-6:nth-child(2n) .stat-cell {
    border-right: none;
}

@media (min-width: 992px) {
    .col-6:nth-child(2n) .stat-cell {
        border-right: 1px solid #EEEEEE;
    }
    .col-lg-3:last-child .stat-cell {
        border-right: none;
    }
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}

.stat-number {
    color: var(--dark);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

/*** Mission / Vision cards ***/
.mission-vision-section {
    background: var(--light);
}

.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(2, 36, 91, .06);
    transition: transform .3s, box-shadow .3s;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 36, 91, .12);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/*** Feature rows ***/
.feature-row {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #EFEFEF;
    transition: .3s;
}

.feature-row:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(2, 36, 91, .08);
}

.feature-row-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/*** About media / experience badge ***/
.about-media-wrap {
    position: relative;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(2, 36, 91, .25);
}

.about-experience-badge h2 {
    font-weight: 700;
    font-size: 32px;
}

.about-experience-badge span {
    font-size: 13px;
    line-height: 1.3;
    display: inline-block;
}

.about-check-item {
    background: var(--light);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.about-check-item i {
    color: var(--primary);
    margin-right: 8px;
}

/*** Products page CTA ***/
.products-cta {
    background: var(--light);
    border-radius: 16px;
    padding: 50px 20px;
}

/*** Product detail WhatsApp enquiry card ***/
.enquiry-card-v2 {
    background: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(2, 36, 91, .08);
}

