/* ===============================
   CSS Reset + Normalization
=============================== */
:root {
    --color-primary: #000a33;
    --color-primary-dark: #000f44;
    --color-secondary: #ed6b24;
    --color-primary-light: #283671;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 200;
    line-height: 30px;
    background: var(--color-primary);
    color: #FFF;
    overflow: hidden;
}

html {
    overflow-x: hidden;
}

.swiper-container {
    overflow: hidden;
}

.swiper img {
    width: 100%;
}

a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

svg {
    width: 30px;
    height: 30px;
}


.image-row {
    background-size: cover;
    min-height: 600px;
    background-position: center center;
}

.text-justify
{
    text-align:justify;
}
/* ===== END CSS Reset + Normalization ===== */



/* ===============================
   Sticky Header
=============================== */

#site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: transparent;
}

#site-header.is-hidden {
  transform: translateY(-100%);
}

#site-header.is-visible {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  background: #000f44;
}
/* ===== END Sticky Header ===== */



/* ===============================
   Header Items
=============================== */

.nav-menu
{
    display: flex;
    justify-content: space-between;
    /* gap: 38px; */
}
.nav-menu li a
{
    padding: 12px 0;
    color: #FFF;
}
.nav-menu li a:hover
{
  color: #ffffff;
}
.main-logo
{
    display: flex;
}
.main-logo img
{
    width: 260px;
}

.drop-down-list {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9;
    transition: all 0.3s;
    box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
    padding-bottom: 10px;
}

.drop-down-list {
    display: none;
    position: absolute;
    background-color: #000a33;
    z-index: 9;
    transition: all 0.3s;
    box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
    padding-bottom: 0;
    max-width: 340px;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}



@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3%, 0);
        transform: translate3d(0, -3%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3%, 0);
        transform: translate3d(0, -3%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



.nav-menu>li:hover>.drop-down-list {
    display: block;
    transition: all 0.3s;
    animation-name: fadeInDown;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    padding: 10px 0;
}

.nav-menu>li>.drop-down-list>li>a {
    display: block;
    padding: 8px 27px;
    font-size: 14px;
    line-height: 21px;
}

.nav-menu>li>.drop-down-list>li:last-child>a {border-bottom: none;padding-bottom: 16px;}

.nav-menu>li>.drop-down-list>li>a:hover {
    background: #48c6b8;
    color: #ffffff;
}



.has-dropdown {
    position: unset;
}


@media (max-width: 992px) {
.main-logo img {
    width: 250px;
    margin: 7px 0;
}
.menu-toggle svg
{
    width: 24px;
    height: 24px;
    fill: #FFF;
}
    .hz69-menu-v2-container {
        position: fixed;
        inset: 0;
        z-index: 999999;
        background-color: var(--color-primary-dark);
        background: linear-gradient(to top, var(--color-primary-dark) 0%, #2c3689 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        opacity: 0;
        visibility: hidden;
        background-position: center center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

   /* 
.hz69-menu-v2-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/mob-menu-bg.svg") no-repeat center;
    background-size: 130%;
    animation: rotateBg 30s linear infinite;
    z-index: 0;
    width: 2200px;
    left: auto;
    right: auto;
    opacity: .5;
}

/* keep content above */
.hz69-menu-v2-container > * {
    position: relative;
    z-index: 1;
}

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

    /* Active state */
    .hz69-menu-v2-container.active {
        opacity: 1;
        visibility: visible;
    }

    /* Close button */
    .hz69-menu-v2-container .close-btn {
        position: absolute;
        top: 9px;
        right: 4px;
        z-index: 99;
        width: 60px;
        height: 60px;
    }

    .hz69-menu-v2-container .close-btn svg {
        width: 26px;
        height: 26px;
        fill: #FFF;
    }

    /* Menu list */
    .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.nav-menu li a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    transition: all 0.35s ease;
}

/* subtle underline animation */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

/* hover */
.nav-menu li a:hover {
    color: var(--color-secondary);
}
.nav-menu>li>.drop-down-list>li>a:hover {
    background: #48c6b8;
}
    .nav-menu li a::after
    {
        display:none;
    }
.nav-menu li a:hover::after {
    width: 60%;
}

/* active page support */
.nav-menu li a.active {
    color: var(--color-secondary);
}

.nav-menu li a.active::after {
    width: 60%;
}


    .drop-down-list {
        position: inherit;
        box-shadow: none;
        max-width: inherit;
        border-radius: 9px;
    }
    .nav-menu>li>.drop-down-list>li:last-child>a {
    padding-bottom: 18px;
}
    
    .nav-menu>li>.drop-down-list>li:first-child>a {
    padding-top: 18px;
}
    .nav-menu>li:hover>.drop-down-list {
        display: none;
        animation: none;
    }

        .nav-menu {
        display: flex;
        padding: 30px 0px;
        flex-direction: column;
        gap: 18px;
        position: absolute;
        height: 100vh;
        overflow-y: scroll;
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }


}

/* ===== END Header Items ===== */



/* ===============================
   Hero Banner Section
=============================== */

.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #f4f6f8;
}
.hero-banner::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 10 51) 0%, rgba(37, 117, 191, 0) 20%, rgba(41, 137, 216, 0) 50%, rgba(83, 161, 224, 0) 65%, rgb(0 10 51) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.75);
    z-index: 1;
}

/* content */
.hero-content {
    position: relative;
    z-index: 9999;
    text-align: center;
    top: 34%;
    padding: 0 20px;
    opacity: 0;
}

/* subtitle */
.hero-subtitle {
    font-size: 36px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* main title */
.hero-title {
    font-size: 69px;
    font-weight: 900;
    color: #1fb6a6;
    letter-spacing: 2px;
    line-height: 80px;
    text-transform: uppercase;
    margin: 20px 0 0;
}

/* highlight */
.hero-title span {
    font-weight: 700;
}

/* animation */
@keyframes fadeUp {
    from {
        transform: translateY(60%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%);
        opacity: 1;
    }
}

/* ===== END Hero Banner Section ===== */


/* ===============================
   Segment Overlap Section
=============================== */

.hz-segment-section {
    position: relative;
    margin-top: -70px;
    z-index: 5;
}
.hz-segment-wrapper {
    background: #2a3c7e;
    border-radius: 8px;
    padding: 25px 60px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
    position: relative;
    top: -62px; /* keep overlap if needed */
}

.hz-segment-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    cursor: default;
}

.hz-segment-svg {
    width: 38px;
    height: 38px;
    fill: #ffffff;
    transition: all 0.35s ease;
}

/* hover */
.hz-segment-item:hover {
    transform: translateY(-6px);
}

.hz-segment-item:hover .hz-segment-svg {
    fill: var(--color-secondary);
    transform: scale(1.1);
}

.hz-segment-item:hover span {
    color: var(--color-secondary);
}

/* ===== END Segment Overlap Section ===== */

/* ===============================
   Global Primary Large Button
=============================== */

.hz-btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--color-secondary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 200;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.hz-btn-primary-lg .hz-btn-icon {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hover */
.hz-btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.hz-btn-primary-lg:hover .hz-btn-icon {
    transform: translate(4px, -4px);
}

/* active */
.hz-btn-primary-lg:active {
    transform: translateY(-2px);
}

/* ===== END Global Primary Large Button ===== */

/* ===============================
   Button Light Variant
=============================== */

.hz-btn-light {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.hz-btn-light .hz-btn-icon {
    fill: #ffffff;
}

/* hover */
.hz-btn-light:hover {
    background: var(--color-secondary);
    color: #ffffff;
    border: 1px solid var(--color-secondary);
}

.hz-btn-light:hover svg{
    fill: #ffffff;
}

.hz-btn-light:hover .hz-btn-icon {
    fill: #ffffff;
}

/* ===== END Button Light Variant ===== */


/* ===============================
   Glow Zoom + Rotation
=============================== */

.hz-section-primary-dark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 940px;
    height: 840px;
    background: url("../images/glow-bg1.png") no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform-origin: center;
    animation: hzGlowMotion 18s linear infinite;
    will-change: transform;
    pointer-events: none;
}

@keyframes hzGlowMotion {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4) rotate(180deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
}

/* ===== END Glow Zoom + Rotation ===== */



/* ===============================
   Primary Dark Section
=============================== */

.hz-section-primary-dark {
    background: var(--color-primary);
    padding: 70px 0 120px 0;
    position: relative;
}



/* Reusable Section Title */
.hz-section-title {
    font-size: 50px;
    line-height: 64px;
    font-weight: 200;
}

/* spacing helpers */
.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== END Primary Dark Section ===== */


/* ===============================
   Global Section Padding
=============================== */

.hz-section {
    padding: 120px 0 120px 0;
}
.hz-why-doc-review
{
    background: var(--color-primary-dark);
    
}
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Global Section Padding ===== */


/* ===============================
   Services Section
=============================== */

.hz-services-section {
    background: var(--color-primary-dark);
    position: relative;
}

/* Service Box */
.hz-service-box {
    position: relative;
    padding: 50px 40px 40px 40px;
    border-radius: 14px;
    background: linear-gradient(
        to top,
        var(--color-primary-dark) 0%,
        #2c3689 100%
    );
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
}

.hz-service-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000f4400 50%, #4c5dea 100%);
    left: 0;
    border-radius: 50%;
    bottom: -230px;
    z-index: -1;
    filter: blur(15px);
    -webkit-transition: .5s all;
    opacity: 0;
}

.hz-service-box:hover::after {
    bottom: -230px;
    -webkit-transition: .5s all;
    opacity: 1;
}
/* Glow Border */
.hz-service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #10bfae 50%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: 0.4s ease;
}

.hz-service-box:hover::before {
    background: linear-gradient(to bottom, transparent 20%, #3dfdea 50%, transparent 70%);
}

/* Icon */
.hz-service-icon svg {
    width: 50px;
    height: 50px;
    fill: #ffffff;
    transition: 0.4s ease;
    
}
.hz-service-box:hover .hz-service-icon svg {
    width: 50px;
    height: 50px;    fill: #10bfae;
    transition: 0.4s ease;
}
/* Arrow */
.hz-service-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
}

.hz-service-arrow svg {
    width: 20px;
    height: 20px;
    fill: #10bfae;
    transition: all 0.4s ease;
}
.hz-service-box:hover .hz-service-arrow svg {
    width: 30px;
    height: 30px;
}
/* Title */
.hz-service-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 18px;
}

/* Text */
.hz-service-box p {
    font-size: 15px;
    font-weight: 300;
    color: #c7d2ff;
    line-height: 26px;
}

/* Hover Effects */
.hz-service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hz-service-box:hover::before {
    opacity: 1;
}


/* ===== END Services Section ===== */


/* ===============================
   About + Key Facts Section
=============================== */

.hz-section-padding {
    padding: 120px 0;
}

.hz-about-section {
    position: relative;
    background: #000929;
    /* background-image: url("../images/engineer-bg1.jpg"); */
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    color: #FFF;
}

/* image */
.hz-about-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.hz-about-image {
    border-radius: 16px;
}

/* key facts */
.hz-keyfacts-row {
    margin-top: 100px;
}

.hz-counter {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

/* responsive */
@media (max-width: 992px) {

    .hz-section-padding {
        padding: 80px 0;
    }

    .hz-about-section {
        background-position: bottom right;
        background-size: 550px;
    }

    .hz-keyfacts-row {
        margin-top: 60px;
    }

    .hz-counter {
        font-size: 36px;
    }

}

/* ===== END About + Key Facts Section ===== */

/* ===============================
   Key Facts Layout
=============================== */

.hz-keyfacts-wrapper {
    margin-top: 120px;
    align-items: center;
}


/* grid */
.hz-keyfacts-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* item */
.hz-keyfact-item {
    text-align: center;
}

.hz-counter {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.hz-keyfact-item p {
    margin: 0;
    font-size: 16px;
}

.hz-keyfact-item p.subtxt {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 18px;
    width: 260px;
}

/* separator */
.hz-keyfact-separator {
    width: 2px;
    height: 60px;
    background: #3143aa;
    opacity: 0.7;
}

/* responsive */
@media (max-width: 992px) {

    .hz-keyfacts-wrapper {
        margin-top: 10px;
    }

    .hz-keyfacts-grid {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .hz-keyfact-separator {
        display: none;
    }

    .hz-keyfacts-title {
        margin-bottom: 40px;
        text-align: center;
    }

}

/* ===== END Key Facts Layout ===== */


/* =====================================
   Contact + Commitment Section Start
===================================== */

.hz-contact-commitment {
    background: linear-gradient(to bottom, #041456, var(--color-primary-dark));
    padding: 100px 0;
}

/* Small Title */
.hz-section-title-sm {
    font-size: 30px;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Form Styles */
.hz-contact-form {
    margin-top: 10px;
}

.hz-form-group {
    margin-bottom: 20px;
}

.hz-contact-form input,
.hz-contact-form textarea {
    width: 100%;
    padding: 24px 18px;
    border-radius: 4px;
    border: none;
    background: #031353;
    border: 1px solid #2c4195;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: none;
    color: #FFF;
}
.hz-contact-form input.error,
.hz-contact-form textarea.error
{
    border: 1px solid var(--color-secondary);
    
}
.error-message
{
    color: var(--color-secondary);
    font-size: 15px;
}
.success-message
{
    background: #0a9475;
    text-align: center;
    margin: 0 0 30px;
    padding: 10px 0;
    border-radius: 5px;
}
.hz-contact-form input:focus,
.hz-contact-form textarea:focus {
    outline: none;
}


/* Commitment List */
.hz-commitment-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hz-commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hz-commitment-icon {
    width: 34px;
    height: 34px;
    fill: #ffffff;
    flex-shrink: 0;
    margin-top: 4px;
}

.hz-commitment-item p {
    color: #d6dbff;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {

    .hz-section-title-sm {
        font-size: 24px;
    }

    .hz-contact-commitment {
        padding: 70px 0;
    }

}

/* =====================================
   Contact + Commitment Section End
===================================== */


/* =====================================
   Footer Start
===================================== */

.hz-footer {
    position: relative;
    background: var(--color-primary-dark);
    padding: 100px 0 40px;
    color: #ffffff;
    overflow: hidden;
}

/* Texture Overlay */
.hz-footer-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/footer-bg.png') center/cover no-repeat;
    z-index: 1;
    background-size: cover;
}

/* Big Background Logo */
.hz-footer-big-logo {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hz-footer .container {
    z-index: 2;
}

/* Logo */
.hz-footer-logo {
    width: 320px;
}

/* Social Icons */
.hz-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
    transition: all 0.3s ease;
}

.hz-footer-social svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

.hz-footer-social a:hover svg {
    fill: #f58b23;
    transform: translateY(-3px);
}

/* Headings */
.hz-footer h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Contact List */
.hz-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Footer Nav */
.hz-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 160px 0 70px;
}

.hz-footer-nav li {
    display: inline-block;
    margin: 0 18px;
}

.hz-footer-nav a {
    color: #d4d9ff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.hz-footer-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #df3426, #f58b23);
    transition: width 0.3s ease;
}

.hz-footer-nav a:hover {
    color: #ffffff;
}

.hz-footer-nav a:hover::after {
    width: 100%;
}

/* Copyright */
.hz-footer-bottom p {
    font-size: 14px;
    color: #aab2ff;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {

    .hz-footer-big-logo {
    }

    .hz-footer-social {
        margin-top: 20px;
        text-align: center !important;
    }

    .hz-footer-nav li {
        display: inline-block;
        margin: 8px 14px;
    }

}

/* Contact List  */

.hz-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.hz-footer-icon {
    width: 22px; /* fixed width keeps alignment perfect */
    flex-shrink: 0;
}

.hz-footer-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.hz-footer-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hz-footer-text-group a {
    color: #ffffff; /* force white */
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hz-footer-text-group a:hover {
    color: #f58b23;
    transform: translateX(4px);
}

/* =====================================
   Footer End
===================================== */


/* ===============================
   Innerpage Header
=============================== */
.innerpage-header {
  padding: 136px 0 60px;
  text-align: center;
   /* adjust if needed */
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background-color: #000f44;
}

.innerpage-header h2, .innerpage-header h1 {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 700;
  margin-top: 0;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 58px;
}

/* ===== END Innerpage Header ===== */


/* ===============================
   Innerpage Breadcrumb
=============================== */

.innerpage-header {
  text-align: center;
}

.innerpage-header .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  font-size: 14px;
  text-align: center;
}

/* items */
.innerpage-header .breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  white-space: nowrap;
}

/* allow only last item to wrap nicely */
.innerpage-header .breadcrumb li:last-child {
  white-space: normal;
  text-align: center;
}

/* links */
.innerpage-header .breadcrumb a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.innerpage-header .breadcrumb a:hover {
  /* color: #000; */
}

/* separator */
.innerpage-header .breadcrumb li + li::before {
  content: "";
  display: inline-block;
  margin: 0 8px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-secondary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* mobile refinement */
@media (max-width: 768px) {

  .innerpage-header .breadcrumb {
    font-size: 13px;
    gap: 6px;
  }

  /* allow wrapping on smaller screens */
  .innerpage-header .breadcrumb li {
    white-space: normal;
  }

  .innerpage-header .breadcrumb li + li::before {
    margin: 0 6px;
  }

}

/* ===== END Innerpage Breadcrumb ===== */

/* ===============================
   Utility Classes
=============================== */
.title-s1
{font-weight: 700;color: #ffffff;line-height: 49px;font-size: 39px;}
/* ===== END Utility Classes ===== */



/* ===============================
   Leadership Message Page
=============================== */

.hz-leadership-section {
    padding: 120px 0;
}

/* image */
.hz-leadership-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* content wrapper */
.hz-leadership-content {
    padding-left: 40px;
}

/* page title */
.hz-page-title {
    font-size: 46px;
    line-height: 60px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 40px;
}

/* text */
.hz-leadership-text p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 22px;
}

/* signature */
.hz-leadership-signature {
    margin-top: 40px;
    font-size: 18px;
}

.hz-leadership-signature strong {
    font-size: 20px;
    color: var(--color-primary);
}

.hz-leadership-signature span {
    font-size: 16px;
}

/* responsive */
@media (max-width: 992px) {

    .hz-leadership-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .hz-page-title {
        font-size: 36px;
        line-height: 48px;
    }

}

/* ===== END Leadership Message Page ===== */




/* ===============================
   Why Caldera Section
=============================== */

.hz-section-padding {
    padding: 100px 0;
}

.hz-page-title {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 20px;
}

.mb-60 {
    margin-bottom: 60px;
}

.hz-why-box {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 6px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.hz-why-icon {
    margin-bottom: 20px;
}

.hz-why-icon img {
    width: 78px;
    height: 78px;
}

.hz-why-box h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hz-why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ===== END Why Caldera Section ===== */


/* ===============================
   Vision Mission Values Section
=============================== */

.section-standard {
    padding: 90px 0;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.vmv-block {
    margin-bottom: 80px;
}

.vmv-header {
    margin-bottom: 25px;
}

.vmv-label {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.vmv-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align:justify;
}

/* Mission List */
.mission-list {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

.mission-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
}

.mission-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: 2px;
}

/* Values Grid */
.values-grid {
    margin-top: 20px;
}

.value-card {
    background: var(--color-primary-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* Hover */
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ===== END Vision Mission Values Section ===== */

/* ===============================
   Company Profile Section
=============================== */

.section-company-profile {
    padding: 120px 0;
}

.profile-description {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-profile-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--color-primary-light);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-profile-download:hover {
    background: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pdf-icon {
    width: 22px;
    height: 22px;
}

/* ===== END Company Profile Section ===== */

/* ===============================
   Service Detail Page
=============================== */

.section-service-detail {
    padding: 120px 0;
}

.section-service-detail p{
    text-align: justify;
}

.hz-page-title {
    font-size: 46px;
    line-height: 58px;
    font-weight: 300;
    color: var(--color-primary-dark);
}

.hz-service-feature {
    padding: 35px;
    background: var(--color-primary-light);
    border-radius: 8px;
    transition: all 0.35s ease;
    height: 100%;
}

.hz-service-feature h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.hz-service-feature p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.hz-service-feature:hover {
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}
.hz-service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hz-service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* subtle premium hover */
.hz-service-image:hover img {
    transform: scale(1.04);
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Service Detail Page ===== */


/* ===============================
   Project page
=============================== */
.project-box {
    border: dashed 1px #ffffff59;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
    border-radius: 10px;
}

.project-box:hover {}

.project-box img {
    position: relative;
    transition: all 0.2s ease-in-out;
    ;
    top: 0px;
}

.project-box:hover img {

    top: -5px;
    transition: all 0.2s ease-in-out;
    ;
}

.project-box::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 208px;
    background: var(--color-primary);
    bottom: -110px;
    right: -100px;
    transform: rotate(
180deg);
}

.project-box h3 {
    position: relative;
    z-index: 9;
    color: #FFF;
    font-size: 17px;
    line-height: 24px;
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 23px;
    justify-content: space-between;
    margin: 0 0 10px;
}

.project-box button {
    width: 45px;
    height: 45px;
    position: relative;
    line-height: 38px;
    z-index: 9;
    background: #ffffff82;
    border-radius: 8px;
    display: flex;
    margin-right: -1px;
    transition: all 0.2s ease-in-out;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}

.project-box button svg {
    fill: var(--color-primary);
    width: 18px;
    height: 17px;
    transition: all 0.2s ease-in-out;
}

.project-box:hover button {
    transition: all 0.2s ease-in-out;
    background: #ffffff;

}

.project-box:hover button svg {
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg);
}

/* ===== END Project page ===== */


/* ===============================
   Project Detail Page
=============================== */

.hz-project-detail {
    padding: 120px 0;
}
.hz-project-detail p{
    text-align: justify;
}
/* header */
.hz-project-header {
    margin-bottom: 80px;
}

.hz-project-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.hz-project-image img {
    width: 100%;
    display: block;
}

/* title */
.hz-project-title {
    font-size: 35px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* meta grid */
.hz-project-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
}

.hz-project-meta-item {
    display: flex;
    flex-direction: column;
}

.hz-meta-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.hz-meta-value {
    font-size: 16px;
    font-weight: 300;
}

/* content blocks */
.hz-project-content {
    max-width: 900px;
}

.hz-project-block {
    margin-bottom: 60px;
}

.hz-project-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* list */
.hz-project-list {
    padding-left: 18px;
}

.hz-project-list li {
    margin-bottom: 10px;
    list-style: disc;
}

/* highlight outcomes */
.hz-project-highlight {
    background: var(--color-primary-dark);
    padding: 40px;
    border-radius: 10px;
    color: #ffffff;
}

.hz-project-highlight .hz-project-section-title {
    color: #ffffff;
}

.hz-project-outcomes {
    padding-left: 18px;
}

.hz-project-outcomes li {
    margin-bottom: 12px;
    list-style: disc;
}

/* responsive */
@media (max-width: 992px) {

    .hz-project-title {
        font-size: 32px;
        line-height: 42px;
    }

    .hz-project-meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hz-project-detail {
        padding: 80px 0;
    }

}

/* ===== END Project Detail Page ===== */


/* ===============================
   Next Project Navigation
=============================== */

.hz-project-navigation {
    margin-bottom: 100px;
}

.hz-next-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    padding: 40px 50px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hz-next-project::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(237,107,36,0.15), transparent 60%);
    transition: 0.6s ease;
    transform: scale(0);
}

.hz-next-project:hover::before {
    transform: scale(1);
}

.hz-next-project:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.hz-next-label {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.hz-next-title {
    font-size: 22px;
    font-weight: 600;
    max-width: 70%;
}

.hz-next-arrow svg {
    transition: 0.3s ease;
    fill: var(--color-secondary);
}

.hz-next-project:hover .hz-next-arrow svg {
    transform: translateX(8px);
}

/* Responsive */

@media (max-width: 768px) {

    .hz-next-project {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 30px;
    }

    .hz-next-title {
        max-width: 100%;
        font-size: 18px;
    }

    .hz-next-arrow {
        align-self: flex-end;
    }
}

/* ===============================
   Previous Project Button
=============================== */

.hz-project-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Previous */
.hz-prev-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.hz-prev-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: 0.3s ease;
}

.hz-prev-project:hover {
    color: var(--color-secondary);
}

.hz-prev-project:hover .hz-prev-icon {
    fill: var(--color-secondary);
    transform: translateX(-4px);
}

/* Responsive */

@media (max-width: 992px) {

    .hz-project-nav-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }

    .hz-prev-project {
        order: 1;
    }

    .hz-next-project {
        order: 2;
    }

}

/* ===== END Previous Project Button ===== */


/* ===============================
   Team / Disciplines Section
=============================== */

.hz-team-section {
    padding: 100px 0;
}

/* Card */
.hz-discipline-card {
    background: var(--color-primary-light);
    padding: 35px 30px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* subtle top accent */
.hz-discipline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* title */
.hz-discipline-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

/* text */
.hz-discipline-card p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;
}

/* hover effect */
.hz-discipline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.hz-discipline-card:hover::before {
    transform: scaleX(1);
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Team / Disciplines Section ===== */


/* ===============================
   People / Excellence Section
=============================== */

.hz-people-section {
    padding: 100px 0;
    background: var(--color-primary-dark);
}

/* Small section title */
.hz-section-title-sm {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark);
    color: #FFF;
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* Card */
.hz-people-card {
    background: var(--color-primary-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* subtle gradient glow */
.hz-people-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(237,107,36,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* icon */
.hz-people-icon {
    margin-bottom: 20px;
}

.hz-people-icon img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

/* title */
.hz-people-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* paragraph */
.hz-people-card p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;
}

/* hover effect */
.hz-people-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.hz-people-card:hover::before {
    opacity: 1;
}

.hz-people-card:hover .hz-people-icon img {
    transform: scale(1.1);
}

/* ===== END People Section ===== */

/* ===============================
   Advantage Section
=============================== */

.hz-advantage-section {
    padding: 100px 0;
}

/* Box wrapper */
.hz-advantage-box {
    position: relative;
    padding: 60px 70px;
    background: var(--color-primary-light);
    border-radius: 8px;
    overflow: hidden;
}
.hz-advantage-box ul li{
    list-style:disc;
}

/* left accent line */
.hz-advantage-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--color-secondary);
}

/* title */
.hz-advantage-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* paragraph */
.hz-advantage-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

.hz-advantage-content p:last-child {
    margin-bottom: 0;
}

/* responsive */
@media (max-width: 992px) {
    .hz-advantage-box {
        padding: 40px 30px;
    }

    .hz-advantage-content h2 {
        font-size: 22px;
    }
}

/* ===== END Advantage Section ===== */



/* ===============================
   Consultancy Intro Section
=============================== */

.hz-consultancy-intro {
    padding: 100px 0;
}

.hz-consultancy-image img {
    width: 100%;
    border-radius: 8px;
}

.hz-consultancy-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hz-consultancy-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

/* ===============================
   Consultancy Services Section
=============================== */

.hz-consultancy-services {
    padding: 100px 0;
    background: var(--color-primary-dark);
}

/* service box */
.hz-consultancy-box {
    background: var(--color-primary-light);
    padding: 45px;
    border-radius: 8px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.hz-consultancy-box h5{
    font-size: 18px;
}

.hz-consultancy-box:hover {
    transform: translateY(-8px);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* title */
.hz-consultancy-box h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

/* modern list */
.hz-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-list-modern li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 26px;
}
.hz-list-modern li strong{
    font-size: 16px;
    display: block;
}

.hz-list-modern li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

/* responsive */
@media (max-width: 992px) {

    .hz-consultancy-intro {
        padding: 70px 0;
    }

    .hz-consultancy-services {
        padding: 70px 0;
    }

    .hz-consultancy-box {
        padding: 30px;
    }

    .hz-consultancy-content h2 {
        font-size: 24px;
    }
}

/* ===== END Consultancy Section ===== */


/* ===============================
   Technical Document Review Page
=============================== */

.hz-doc-review {
    padding: 120px 0;
}

.hz-doc-image img {
    width: 100%;
    border-radius: 12px;
}

.hz-section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 20px;
}

.hz-page-title {
    font-size: 42px;
    line-height: 56px;
    font-weight: 300;
    margin-bottom: 25px;
}

.hz-section-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Feature Cards */
.hz-feature-card {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    text-align: justify;
}

.hz-feature-card h5{
    font-size: 20px;
}

.hz-feature-card:hover {
    transform: translateY(-8px);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Service Boxes */
.hz-doc-box {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    height: 100%;
    transition: 0.4s ease;
}
.hz-doc-box h5{
    font-size: 18px;
}
.hz-doc-box ul li {
    list-style: disc;
}
.hz-doc-box:hover {
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    
    
    
/* ===============================
   CSS Reset + Normalization
=============================== */:
    root {
    --color-primary: #000a33;
    --color-primary-dark: #000f44;
    --color-secondary: #ed6b24;
    --color-primary-light: #283671;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
}

*,
*::
    before,
*::after {
    box-sizing: border-box;
}
    html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
    body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 200;
    line-height: 30px;
    background: var(--color-primary);
    color: #FFF;
    overflow: hidden;
}
    html {
    overflow-x: hidden;
}

.swiper-container {
    overflow: hidden;
}

.swiper
    img {
    width: 100%;
}
    a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}
    img {
    max-width: 100%;
}
    
    button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
    svg {
    width: 30px;
    height: 30px;
}


.image-row {
    background-size: cover;
    min-height: 600px;
    background-position: center center;
}

.text-justify
{
    text-align:justify;
}
/* ===== END CSS Reset + Normalization ===== */



/* ===============================
   Sticky Header
=============================== */

#site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background-color: transparent;
}

#site-header.is-hidden {
    transform: translateY(-100%);
}

#site-header.is-visible {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background: #000f44;
}
/* ===== END Sticky Header ===== */



/* ===============================
   Header Items
=============================== */

.nav-menu
{
    display: flex;
    justify-content: space-between;
    /* gap: 38px; */
}
.nav-menu
    li a
{
    padding: 12px 0;
    color: #FFF;
}
.nav-menu
    li a:hover
{
  color: #ffffff;
}
.main-logo
{
    display: flex;
}
.main-logo
    img
{
    width: 260px;
}

.drop-down-list {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9;
    transition: all 0.3s;
    box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
    padding-bottom: 10px;
}

.drop-down-list {
    display: none;
    position: absolute;
    background-color: #000a33;
    z-index: 9;
    transition: all 0.3s;
    box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
    padding-bottom: 0;
    max-width: 340px;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
    @-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
    }

    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
    }

    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
}



.nav-menu>
    li:hover>.drop-down-list {
    display: block;
    transition: all 0.3s;
    animation-name: fadeInDown;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    padding: 10px 0;
}

.nav-menu>
    li>.drop-down-list>li>a {
    display: block;
    padding: 8px 27px;
    font-size: 14px;
    line-height: 21px;
}

.nav-menu>
    li>.drop-down-list>li:last-child>a {border-bottom: none;
    padding-bottom: 16px;}

.nav-menu>
    li>.drop-down-list>li>a:hover {
    background: #48c6b8;
    color: #ffffff;
}



.has-dropdown {
    position: unset;
}
    @media (max-width: 992px) {
.main-logo img {
    width: 250px;
    margin: 7px 0;
}
.menu-toggle svg
{
    width: 24px;
    height: 24px;
    fill: #FFF;
}
    .hz69-menu-v2-container {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: var(--color-primary-dark);
    background: linear-gradient(to top, var(--color-primary-dark) 0%, #2c3689 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    }

   /* 
.hz69-menu-v2-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/mob-menu-bg.svg") no-repeat center;
    background-size: 130%;
    animation: rotateBg 30s linear infinite;
    z-index: 0;
    width: 2200px;
    left: auto;
    right: auto;
    opacity: .5;
}

/* keep content above */
.hz69-menu-v2-container > * {
    position: relative;
    z-index: 1;
}
    @keyframes rotateBg {
    from { transform: rotate(0deg); }
    to   {
    transform: rotate(360deg); }
}

    /* Active state */
    .hz69-menu-v2-container.active {
    opacity: 1;
    visibility: visible;
    }

    /* Close button */
    .hz69-menu-v2-container .close-btn {
    position: absolute;
    top: 9px;
    right: 4px;
    z-index: 99;
    width: 60px;
    height: 60px;
    }

    .hz69-menu-v2-container .close-btn svg {
    width: 26px;
    height: 26px;
    fill: #FFF;
    }

    /* Menu list */
    .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.nav-menu li a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    transition: all 0.35s ease;
}

/* subtle underline animation */
.nav-menu li a::
    after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

/* hover */
.nav-menu li a:
    hover {
    color: var(--color-secondary);
}
.nav-menu>li>.drop-down-list>li>a:
    hover {
    background: #48c6b8;
}
    .nav-menu li a::
    after
    {
        display:none;
    }
.nav-menu li a:
    hover::after {
    width: 60%;
}

/* active page support */
.nav-menu li a.active {
    color: var(--color-secondary);
}

.nav-menu li a.active::
    after {
    width: 60%;
}


    .drop-down-list {
    position: inherit;
    box-shadow: none;
    max-width: inherit;
    border-radius: 9px;
    }
    .nav-menu>li>.drop-down-list>li:
    last-child>a {
    padding-bottom: 18px;
}
    
    .nav-menu>li>.drop-down-list>li:
    first-child>a {
    padding-top: 18px;
}
    .nav-menu>li:
    hover>.drop-down-list {
        display: none;
    animation: none;
    }

        .nav-menu {
    display: flex;
    padding: 30px 0px;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    height: 100vh;
    overflow-y: scroll;
    width: 100%;
    justify-content: flex-start;
    margin-top: 20px;
    }


}

/* ===== END Header Items ===== */



/* ===============================
   Hero Banner Section
=============================== */

.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: #f4f6f8;
}
.hero-banner::
    after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 10 51) 0%, rgba(37, 117, 191, 0) 20%, rgba(41, 137, 216, 0) 50%, rgba(83, 161, 224, 0) 65%, rgb(0 10 51) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.75);
    z-index: 1;
}

/* content */
.hero-content {
    position: relative;
    z-index: 9999;
    text-align: center;
    top: 34%;
    padding: 0 20px;
    opacity: 0;
}

/* subtitle */
.hero-subtitle {
    font-size: 36px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* main title */
.hero-title {
    font-size: 69px;
    font-weight: 900;
    color: #1fb6a6;
    letter-spacing: 2px;
    line-height: 80px;
    text-transform: uppercase;
    margin: 20px 0 0;
}

/* highlight */
.hero-title
    span {
    font-weight: 700;
}

/* animation */
    @keyframes fadeUp {
    from {
        transform: translateY(60%);
    opacity: 0;
    }
    to {
    transform: translateY(-50%);
    opacity: 1;
    }
}

/* ===== END Hero Banner Section ===== */


/* ===============================
   Segment Overlap Section
=============================== */

.hz-segment-section {
    position: relative;
    margin-top: -70px;
    z-index: 5;
}
.hz-segment-wrapper {
    background: #2a3c7e;
    border-radius: 8px;
    padding: 25px 60px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
    position: relative;
    top: -62px; /* keep overlap if needed */
}

.hz-segment-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    cursor: default;
}

.hz-segment-svg {
    width: 38px;
    height: 38px;
    fill: #ffffff;
    transition: all 0.35s ease;
}

/* hover */
.hz-segment-item:
    hover {
    transform: translateY(-6px);
}

.hz-segment-item:
    hover .hz-segment-svg {
    fill: var(--color-secondary);
    transform: scale(1.1);
}

.hz-segment-item:
    hover span {
    color: var(--color-secondary);
}

/* ===== END Segment Overlap Section ===== */

/* ===============================
   Global Primary Large Button
=============================== */

.hz-btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--color-secondary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 200;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.hz-btn-primary-lg .hz-btn-icon {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hover */
.hz-btn-primary-lg:
    hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.hz-btn-primary-lg:
    hover .hz-btn-icon {
    transform: translate(4px, -4px);
}

/* active */
.hz-btn-primary-lg:
    active {
    transform: translateY(-2px);
}

/* ===== END Global Primary Large Button ===== */

/* ===============================
   Button Light Variant
=============================== */

.hz-btn-light {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.hz-btn-light .hz-btn-icon {
    fill: #ffffff;
}

/* hover */
.hz-btn-light:
    hover {
    background: var(--color-secondary);
    color: #ffffff;
    border: 1px solid var(--color-secondary);
}

.hz-btn-light:
    hover svg{
    fill: #ffffff;
}

.hz-btn-light:
    hover .hz-btn-icon {
    fill: #ffffff;
}

/* ===== END Button Light Variant ===== */


/* ===============================
   Glow Zoom + Rotation
=============================== */

.hz-section-primary-dark::
    before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 940px;
    height: 840px;
    background: url("../images/glow-bg1.png") no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform-origin: center;
    animation: hzGlowMotion 18s linear infinite;
    will-change: transform;
    pointer-events: none;
}
    @keyframes hzGlowMotion {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
    transform: translate(-50%, -50%) scale(1.4) rotate(180deg);
    }
    100% {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
}

/* ===== END Glow Zoom + Rotation ===== */



/* ===============================
   Primary Dark Section
=============================== */

.hz-section-primary-dark {
    background: var(--color-primary);
    padding: 70px 0 120px 0;
    position: relative;
}



/* Reusable Section Title */
.hz-section-title {
    font-size: 50px;
    line-height: 64px;
    font-weight: 200;
}

/* spacing helpers */
.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== END Primary Dark Section ===== */


/* ===============================
   Global Section Padding
=============================== */

.hz-section {
    padding: 120px 0 120px 0;
}
.hz-why-doc-review
{
    background: var(--color-primary-dark);
    
}
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Global Section Padding ===== */


/* ===============================
   Services Section
=============================== */

.hz-services-section {
    background: var(--color-primary-dark);
    position: relative;
}

/* Service Box */
.hz-service-box {
    position: relative;
    padding: 50px 40px 40px 40px;
    border-radius: 14px;
    background: linear-gradient(
        to top,
        var(--color-primary-dark) 0%,
        #2c3689 100%
    );
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hz-service-box::
    after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000f4400 50%, #4c5dea 100%);
    left: 0;
    border-radius: 50%;
    bottom: -230px;
    z-index: -1;
    filter: blur(15px);
    -webkit-transition: .5s all;
    opacity: 0;
}

.hz-service-box:
    hover::after {
    bottom: -230px;
    -webkit-transition: .5s all;
    opacity: 1;
}
/* Glow Border */
.hz-service-box::
    before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #10bfae 50%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: 0.4s ease;
}

.hz-service-box:
    hover::before {
    background: linear-gradient(to bottom, transparent 20%, #3dfdea 50%, transparent 70%);
}

/* Icon */
.hz-service-icon
    svg {
    width: 50px;
    height: 50px;
    fill: #ffffff;
    transition: 0.4s ease;
    
}
.hz-service-box:
    hover .hz-service-icon svg {
    width: 50px;
    height: 50px;
    fill: #10bfae;
    transition: 0.4s ease;
}
/* Arrow */
.hz-service-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
}

.hz-service-arrow
    svg {
    width: 20px;
    height: 20px;
    fill: #10bfae;
    transition: all 0.4s ease;
}
.hz-service-box:
    hover .hz-service-arrow svg {
    width: 30px;
    height: 30px;
}
/* Title */
.hz-service-box
    h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 18px;
}

/* Text */
.hz-service-box
    p {
    font-size: 15px;
    font-weight: 300;
    color: #c7d2ff;
    line-height: 26px;
}

/* Hover Effects */
.hz-service-box:
    hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hz-service-box:
    hover::before {
    opacity: 1;
}


/* ===== END Services Section ===== */


/* ===============================
   About + Key Facts Section
=============================== */

.hz-section-padding {
    padding: 120px 0;
}

.hz-about-section {
    position: relative;
    background: #000929;
    /* background-image: url("../images/engineer-bg1.jpg"); */
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    color: #FFF;
}

/* image */
.hz-about-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.hz-about-image {
    border-radius: 16px;
}

/* key facts */
.hz-keyfacts-row {
    margin-top: 100px;
}

.hz-counter {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

/* responsive */
    @media (max-width: 992px) {

    .hz-section-padding {
        padding: 80px 0;
    }

    .hz-about-section {
    background-position: bottom right;
    background-size: 550px;
    }

    .hz-keyfacts-row {
    margin-top: 60px;
    }

    .hz-counter {
    font-size: 36px;
    }

}

/* ===== END About + Key Facts Section ===== */

/* ===============================
   Key Facts Layout
=============================== */

.hz-keyfacts-wrapper {
    margin-top: 120px;
    align-items: center;
}


/* grid */
.hz-keyfacts-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* item */
.hz-keyfact-item {
    text-align: center;
}

.hz-counter {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.hz-keyfact-item
    p {
    margin: 0;
    font-size: 16px;
}

/* separator */
.hz-keyfact-separator {
    width: 2px;
    height: 60px;
    background: #3143aa;
    opacity: 0.7;
}

/* responsive */
    @media (max-width: 992px) {

    .hz-keyfacts-wrapper {
        margin-top: 10px;
    }

    .hz-keyfacts-grid {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    }

    .hz-keyfact-separator {
    display: none;
    }

    .hz-keyfacts-title {
    margin-bottom: 40px;
    text-align: center;
    }

}

/* ===== END Key Facts Layout ===== */


/* =====================================
   Contact + Commitment Section Start
===================================== */

.hz-contact-commitment {
    background: linear-gradient(to bottom, #041456, var(--color-primary-dark));
    padding: 100px 0;
}

/* Small Title */
.hz-section-title-sm {
    font-size: 30px;
    font-weight: 200;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Form Styles */
.hz-contact-form {
    margin-top: 10px;
}

.hz-form-group {
    margin-bottom: 20px;
}

.hz-contact-form
    input,
.hz-contact-form textarea {
    width: 100%;
    padding: 24px 18px;
    border-radius: 4px;
    border: none;
    background: #031353;
    border: 1px solid #2c4195;
    font-size: 15px;
    transition: all 0.3s ease;
    resize: none;
    color: #FFF;
}

.hz-contact-form
    input:focus,
.hz-contact-form textarea:focus {
    outline: none;
}


/* Commitment List */
.hz-commitment-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hz-commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hz-commitment-icon {
    width: 34px;
    height: 34px;
    fill: #ffffff;
    flex-shrink: 0;
    margin-top: 4px;
}

.hz-commitment-item
    p {
    color: #d6dbff;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

/* Responsive */
    @media (max-width: 992px) {

    .hz-section-title-sm {
        font-size: 24px;
    }

    .hz-contact-commitment {
    padding: 70px 0;
    }

}

/* =====================================
   Contact + Commitment Section End
===================================== */

/* ===============================
   Form Validation + Success
=============================== */

.hz-error {
    border: 1px solid #ff3b3b !important;
}

.hz-success-box {
    margin-top: 25px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #0f6b3e, #1a9f5a);
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Disable button style */
#hzSubmitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== END Form Validation + Success ===== */


/* =====================================
   Footer Start
===================================== */

.hz-footer {
    position: relative;
    background: var(--color-primary-dark);
    padding: 100px 0 40px;
    color: #ffffff;
    overflow: hidden;
}

/* Texture Overlay */
.hz-footer-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/footer-bg.png') center/cover no-repeat;
    z-index: 1;
    background-size: cover;
}

/* Big Background Logo */
.hz-footer-big-logo {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hz-footer .container {
    z-index: 2;
}

/* Logo */
.hz-footer-logo {
    width: 320px;
}

/* Social Icons */
.hz-footer-social
    a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 24px;
    transition: all 0.3s ease;
}

.hz-footer-social
    svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

.hz-footer-social
    a:hover svg {
    fill: #f58b23;
    transform: translateY(-3px);
}

/* Headings */
.hz-footer
    h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Contact List */
.hz-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-footer-contact-list
    li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Footer Nav */
.hz-footer-nav
    ul {
    list-style: none;
    padding: 0;
    margin: 160px 0 70px;
}

.hz-footer-nav
    li {
    display: inline-block;
    margin: 0 18px;
}

.hz-footer-nav
    a {
    color: #d4d9ff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.hz-footer-nav
    a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #df3426, #f58b23);
    transition: width 0.3s ease;
}

.hz-footer-nav
    a:hover {
    color: #ffffff;
}

.hz-footer-nav
    a:hover::after {
    width: 100%;
}

/* Copyright */
.hz-footer-bottom
    p {
    font-size: 14px;
    color: #aab2ff;
    margin: 0;
}

/* Responsive */
    @media (max-width: 992px) {

    .hz-footer-big-logo {}

    .hz-footer-social {
    margin-top: 20px;
    text-align: center !important;
    }

    .hz-footer-nav li {
    display: inline-block;
    margin: 8px 14px;
    }

}

/* Contact List  */

.hz-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.hz-footer-icon {
    width: 22px; /* fixed width keeps alignment perfect */
    flex-shrink: 0;
}

.hz-footer-icon
    img {
    width: 18px;
    height: 18px;
    display: block;
}

.hz-footer-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hz-footer-text-group
    a {
    color: #ffffff; /* force white */
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hz-footer-text-group
    a:hover {
    color: #f58b23;
    transform: translateX(4px);
}

/* =====================================
   Footer End
===================================== */


/* ===============================
   Innerpage Header
=============================== */
.innerpage-header {
    padding: 136px 0 60px;
    text-align: center;
   /* adjust if needed */
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    background-color: #000f44;
}

.innerpage-header
    h2 {
  margin-bottom: 0;
    font-size: 55px;
    font-weight: 700;
    margin-top: 0;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 58px;
}

/* ===== END Innerpage Header ===== */


/* ===============================
   Innerpage Breadcrumb
=============================== */

.innerpage-header {
    text-align: center;
}

.innerpage-header .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: transparent;
    font-size: 14px;
    text-align: center;
}

/* items */
.innerpage-header .breadcrumb
    li {
  display: inline-flex;
    align-items: center;
    color: #ffffff;
    white-space: nowrap;
}

/* allow only last item to wrap nicely */
.innerpage-header .breadcrumb
    li:last-child {
  white-space: normal;
    text-align: center;
}

/* links */
.innerpage-header .breadcrumb
    a {
  text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.innerpage-header .breadcrumb
    a:hover {
  /* color: #000; */}

/* separator */
.innerpage-header .breadcrumb
    li + li::before {
  content: "";
    display: inline-block;
    margin: 0 8px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--color-secondary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* mobile refinement */
    @media (max-width: 768px) {

  .innerpage-header .breadcrumb {
    font-size: 13px;
    gap: 6px;
  }

  /* allow wrapping on smaller screens */
  .innerpage-header .breadcrumb li {
    white-space: normal;
  }

  .innerpage-header .breadcrumb li + li::
    before {
    margin: 0 6px;
  }

}

/* ===== END Innerpage Breadcrumb ===== */

/* ===============================
   Utility Classes
=============================== */
.title-s1
{
    font-weight: 700;
    color: #ffffff;
    line-height: 49px;
    font-size: 39px;}
/* ===== END Utility Classes ===== */



/* ===============================
   Leadership Message Page
=============================== */

.hz-leadership-section {
    padding: 120px 0;
}

/* image */
.hz-leadership-image
    img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* content wrapper */
.hz-leadership-content {
    padding-left: 40px;
}

/* page title */
.hz-page-title {
    font-size: 46px;
    line-height: 60px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 40px;
}

/* text */
.hz-leadership-text
    p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 22px;
}

/* signature */
.hz-leadership-signature {
    margin-top: 40px;
    font-size: 18px;
}

.hz-leadership-signature
    strong {
    font-size: 20px;
    color: var(--color-primary);
}

.hz-leadership-signature
    span {
    font-size: 16px;
}

/* responsive */
    @media (max-width: 992px) {

    .hz-leadership-content {
        padding-left: 0;
    margin-top: 50px;
    }

    .hz-page-title {
    font-size: 36px;
    line-height: 48px;
    }

}

/* ===== END Leadership Message Page ===== */




/* ===============================
   Why Caldera Section
=============================== */

.hz-section-padding {
    padding: 100px 0;
}

.hz-page-title {
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 20px;
}

.mb-60 {
    margin-bottom: 60px;
}

.hz-why-box {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 6px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.hz-why-icon {
    margin-bottom: 20px;
}

.hz-why-icon
    img {
    width: 78px;
    height: 78px;
}

.hz-why-box
    h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hz-why-box:
    hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* ===== END Why Caldera Section ===== */


/* ===============================
   Vision Mission Values Section
=============================== */

.section-standard {
    padding: 90px 0;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.vmv-block {
    margin-bottom: 80px;
}

.vmv-header {
    margin-bottom: 25px;
}

.vmv-label {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.vmv-block
    p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mission List */
.mission-list {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

.mission-list
    li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
}

.mission-list
    li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: 2px;
}

/* Values Grid */
.values-grid {
    margin-top: 20px;
}

.value-card {
    background: var(--color-primary-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.value-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card
    p {
    font-size: 15px;
    line-height: 1.7;
}

/* Hover */
.value-card:
    hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== END Vision Mission Values Section ===== */

/* ===============================
   Company Profile Section
=============================== */

.section-company-profile {
    padding: 120px 0;
}

.profile-description {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-profile-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--color-primary-light);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-profile-download:
    hover {
    background: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pdf-icon {
    width: 22px;
    height: 22px;
}

/* ===== END Company Profile Section ===== */

/* ===============================
   Service Detail Page
=============================== */

.section-service-detail {
    padding: 120px 0;
}
.section-service-detail p
{
    text-align:justify;
}
.hz-page-title {
    font-size: 46px;
    line-height: 58px;
    font-weight: 300;
    color: var(--color-primary-dark);
}

.hz-service-feature {
    padding: 35px;
    background: var(--color-primary-light);
    border-radius: 8px;
    transition: all 0.35s ease;
    height: 100%;
}

.hz-service-feature
    h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.hz-service-feature
    p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.hz-service-feature:
    hover {
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}
.hz-service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hz-service-image
    img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* subtle premium hover */
.hz-service-image:
    hover img {
    transform: scale(1.04);
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Service Detail Page ===== */


/* ===============================
   Project page
=============================== */
.project-box {
    border: dashed 1px #ffffff59;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
    border-radius: 10px;
}

.project-box:
    hover {}

.project-box
    img {
    position: relative;
    transition: all 0.2s ease-in-out;
    top: 0px;
}

.project-box:
    hover img {

    top: -5px;
    transition: all 0.2s ease-in-out;
    
}

.project-box::
    after {
    content: '';
    position: absolute;
    width: 150%;
    height: 208px;
    background: var(--color-primary);
    bottom: -110px;
    right: -100px;
    transform: rotate(
180deg);
}

.project-box
    h3 {
    position: relative;
    z-index: 9;
    color: #FFF;
    font-size: 17px;
    line-height: 24px;
    font-weight: 200;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 23px;
    justify-content: space-between;
    margin: 0 0 10px;
}

.project-box
    button {
    width: 45px;
    height: 45px;
    position: relative;
    line-height: 38px;
    z-index: 9;
    background: #ffffff82;
    border-radius: 8px;
    display: flex;
    margin-right: -1px;
    transition: all 0.2s ease-in-out;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}

.project-box
    button svg {
    fill: var(--color-primary);
    width: 18px;
    height: 17px;
    transition: all 0.2s ease-in-out;
}

.project-box:
    hover button {
    transition: all 0.2s ease-in-out;
    background: #ffffff;

}

.project-box:
    hover button svg {
    transition: all 0.2s ease-in-out;
    transform: rotate(45deg);
}

/* ===== END Project page ===== */


/* ===============================
   Project Detail Page
=============================== */

.hz-project-detail {
    padding: 120px 0;
}

/* header */
.hz-project-header {
    margin-bottom: 80px;
}

.hz-project-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.hz-project-image
    img {
    width: 100%;
    display: block;
}

/* title */
.hz-project-title {
    font-size: 35px;
    line-height: 54px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* meta grid */
.hz-project-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
}

.hz-project-meta-item {
    display: flex;
    flex-direction: column;
}

.hz-meta-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.hz-meta-value {
    font-size: 16px;
    font-weight: 300;
}

/* content blocks */
.hz-project-content {
    max-width: 900px;
}

.hz-project-block {
    margin-bottom: 60px;
}

.hz-project-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* list */
.hz-project-list {
    padding-left: 18px;
}

.hz-project-list
    li {
    margin-bottom: 10px;
    list-style: disc;
}

/* highlight outcomes */
.hz-project-highlight {
    background: var(--color-primary-dark);
    padding: 40px;
    border-radius: 10px;
    color: #ffffff;
}

.hz-project-highlight .hz-project-section-title {
    color: #ffffff;
}

.hz-project-outcomes {
    padding-left: 18px;
}

.hz-project-outcomes
    li {
    margin-bottom: 12px;
    list-style: disc;
}

/* responsive */
    @media (max-width: 992px) {

    .hz-project-title {
        font-size: 32px;
    line-height: 42px;
    }

    .hz-project-meta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .hz-project-detail {
    padding: 80px 0;
    }

}

/* ===== END Project Detail Page ===== */


/* ===============================
   Next Project Navigation
=============================== */

.hz-project-navigation {
    margin-bottom: 100px;
}

.hz-next-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    padding: 40px 50px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hz-next-project::
    before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(237,107,36,0.15), transparent 60%);
    transition: 0.6s ease;
    transform: scale(0);
}

.hz-next-project:
    hover::before {
    transform: scale(1);
}

.hz-next-project:
    hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.hz-next-label {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.hz-next-title {
    font-size: 22px;
    font-weight: 600;
    max-width: 70%;
}

.hz-next-arrow
    svg {
    transition: 0.3s ease;
    fill: var(--color-secondary);
}

.hz-next-project:
    hover .hz-next-arrow svg {
    transform: translateX(8px);
}

/* Responsive */
    @media (max-width: 768px) {

    .hz-next-project {
        flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    }

    .hz-next-title {
    max-width: 100%;
    font-size: 18px;
    }

    .hz-next-arrow {
    align-self: flex-end;
    }
}

/* ===============================
   Previous Project Button
=============================== */

.hz-project-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Previous */
.hz-prev-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.hz-prev-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: 0.3s ease;
}

.hz-prev-project:
    hover {
    color: var(--color-secondary);
}

.hz-prev-project:
    hover .hz-prev-icon {
    fill: var(--color-secondary);
    transform: translateX(-4px);
}

/* Responsive */
    @media (max-width: 992px) {

    .hz-project-nav-wrap {
        flex-direction: column;
    align-items: stretch;
    gap: 25px;
    }

    .hz-prev-project {
    order: 1;
    }

    .hz-next-project {
    order: 2;
    }

}

/* ===== END Previous Project Button ===== */


/* ===============================
   Team / Disciplines Section
=============================== */

.hz-team-section {
    padding: 100px 0;
}

/* Card */
.hz-discipline-card {
    background: var(--color-primary-light);
    padding: 35px 30px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* subtle top accent */
.hz-discipline-card::
    before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* title */
.hz-discipline-card
    h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

/* text */
.hz-discipline-card
    p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;
}

/* hover effect */
.hz-discipline-card:
    hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.hz-discipline-card:
    hover::before {
    transform: scaleX(1);
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* ===== END Team / Disciplines Section ===== */


/* ===============================
   People / Excellence Section
=============================== */

.hz-people-section {
    padding: 100px 0;
    background: var(--color-primary-dark);
}

/* Small section title */
.hz-section-title-sm {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark);
    color: #FFF;
}

/* spacing helper */
.mb-60 {
    margin-bottom: 60px;
}

/* Card */
.hz-people-card {
    background: var(--color-primary-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* subtle gradient glow */
.hz-people-card::
    before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(237,107,36,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* icon */
.hz-people-icon {
    margin-bottom: 20px;
}

.hz-people-icon
    img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

/* title */
.hz-people-card
    h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* paragraph */
.hz-people-card
    p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;
}

/* hover effect */
.hz-people-card:
    hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.hz-people-card:
    hover::before {
    opacity: 1;
}

.hz-people-card:
    hover .hz-people-icon img {
    transform: scale(1.1);
}

/* ===== END People Section ===== */

/* ===============================
   Advantage Section
=============================== */

.hz-advantage-section {
    padding: 100px 0;
}

/* Box wrapper */
.hz-advantage-box {
    position: relative;
    padding: 60px 70px;
    background: var(--color-primary-light);
    border-radius: 8px;
    overflow: hidden;
}

/* left accent line */
.hz-advantage-box::
    before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--color-secondary);
}

/* title */
.hz-advantage-content
    h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* paragraph */
.hz-advantage-content
    p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

.hz-advantage-content
    p:last-child {
    margin-bottom: 0;
}

/* responsive */
    @media (max-width: 992px) {
    .hz-advantage-box {
        padding: 40px 30px;
    }

    .hz-advantage-content h2 {
    font-size: 22px;
    }
}

/* ===== END Advantage Section ===== */



/* ===============================
   Consultancy Intro Section
=============================== */

.hz-consultancy-intro {
    padding: 100px 0;
}

.hz-consultancy-image
    img {
    width: 100%;
    border-radius: 8px;
}

.hz-consultancy-content
    h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hz-consultancy-content
    p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

/* ===============================
   Consultancy Services Section
=============================== */

.hz-consultancy-services {
    padding: 100px 0;
    background: var(--color-primary-dark);
}

/* service box */
.hz-consultancy-box {
    background: var(--color-primary-light);
    padding: 45px;
    border-radius: 8px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.hz-consultancy-box:
    hover {
    transform: translateY(-8px);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* title */
.hz-consultancy-box
    h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

/* modern list */
.hz-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hz-list-modern
    li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 26px;
}

.hz-list-modern
    li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

/* responsive */
    @media (max-width: 992px) {

    .hz-consultancy-intro {
        padding: 70px 0;
    }

    .hz-consultancy-services {
    padding: 70px 0;
    }

    .hz-consultancy-box {
    padding: 30px;
    }

    .hz-consultancy-content h2 {
    font-size: 24px;
    }
}

/* ===== END Consultancy Section ===== */


/* ===============================
   Technical Document Review Page
=============================== */

.hz-doc-review {
    padding: 120px 0;
}

.hz-doc-image
    img {
    width: 100%;
    border-radius: 12px;
}

.hz-section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 20px;
}

.hz-page-title {
    font-size: 42px;
    line-height: 56px;
    font-weight: 300;
    margin-bottom: 25px;
}

.hz-section-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Feature Cards */
.hz-feature-card {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.hz-feature-card
    h5{
    font-size: 20px;
}

.hz-feature-card:
    hover {
    transform: translateY(-8px);
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* Service Boxes */
.hz-doc-box {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    height: 100%;
    transition: 0.4s ease;
}
.hz-doc-box
    h5{
    font-size: 18px;
}
.hz-doc-box
    ul li {
    list-style: disc;
}
.hz-doc-box:
    hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.hz-doc-box
    ul {
    padding-left: 18px;
}

.hz-doc-box
    li {
    margin-bottom: 10px;
}

/* Industries & Gains */
.hz-industry-box,
.hz-gain-box {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    height: 100%;
}

.hz-industry-box
    ul,
.hz-gain-box ul {
    padding-left: 20px;
    list-style: d;
}
.hz-industry-box
    ul li, .hz-gain-box ul li{
    list-style:disc;
}
/* CTA */
.hz-doc-cta {
    padding: 120px 0;
    background: var(--color-primary-dark);
    color: #ffffff;
}

.hz-doc-cta
    p {
    max-width: 700px;
    margin: 20px auto 0;
}

/* Responsive */
    @media (max-width: 992px) {
    .hz-page-title {
        font-size: 32px;
    line-height: 44px;
    }
}

/* ===== END Technical Document Review Page ===== */



/* ===============================
   As-Built Services Page
=============================== */

.hz-asbuilt-intro {
    padding: 120px 0;
}

.hz-asbuilt-image
    img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.hz-section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 18px;
}

.hz-page-title {
    font-size: 44px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFF;
}

.hz-section-title {
    font-size: 43px;
    font-weight: 700;
    margin: 0;
}

/* Cards */
.hz-asbuilt-card {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.hz-asbuilt-card:
    hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.hz-asbuilt-card
    h5 {
    margin-bottom: 15px;
    font-weight: 500;
}

.hz-asbuilt-card
    ul {
    padding-left: 18px;
}

.hz-asbuilt-card
    li {
    margin-bottom: 8px;
}

/* Deliverables & Tools */
.hz-asbuilt-deliverables {
    padding: 120px 0;
    background: var(--color-primary-dark);
}

.hz-asbuilt-info {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.05);
    height: 100%;
}

.hz-asbuilt-info
    h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.hz-asbuilt-info
    ul {
    padding-left: 20px;
}
.hz-asbuilt-info
    ul li{
    list-style:disc}

.hz-asbuilt-info
    li {
    margin-bottom: 10px;
}

/* Responsive */
    @media (max-width: 992px) {
    .hz-page-title {
        font-size: 32px;
    line-height: 44px;
    }
}

/* ===== END As-Built Services Page ===== */


/* ===============================
   Careers CTA Section
=============================== */

.hz-career-cta {
    padding: 140px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.hz-career-cta::
    before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(237,107,36,0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hz-career-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
}

.hz-career-text {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    color: #d6d9f5;
    margin-bottom: 20px;
}

.hz-career-email {
    color: var(--color-secondary);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.hz-career-email:
    hover {
    border-bottom: 1px solid var(--color-secondary);
}

/* override button style for dark bg */
.hz-career-cta .hz-btn-primary-lg {
    margin-top: 30px;
}

/* responsive */
    @media (max-width: 992px) {
    .hz-career-title {
        font-size: 34px;
    }

    .hz-career-text {
    font-size: 16px;
    line-height: 28px;
    }
}

/* ===== END Careers CTA Section ===== */


/* =====================================
   CONTACT PAGE STYLING
===================================== */

/* HERO SECTION */
.contact-hero {
    background: linear-gradient(135deg, #031359 0%, #0b1e75 100%);
    color: #ffffff;
    padding: 120px 20px;
}

.contact-hero
    h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-hero
    p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

/* CONTACT MAIN */
.contact-main {
    padding: 50px 0 0;}

/* CONTACT CARDS */
.contact-card {
    background: var(--color-primary-light);
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:
    hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #ed6b24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-icon
    svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.contact-card
    h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card
    p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

.contact-card
    a {
    color: #ffffff;
    text-decoration: none;
}

.contact-card
    a:hover {
    color: #ed6b24;
}

/* FORM BOX */
.contact-form-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-box
    h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #031359;
}

/* INPUTS */
.contact-form-box
    input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-box
    input:focus,
.contact-form-box textarea:focus {
    border-color: #ed6b24;
    outline: none;
}

/* BUTTON */
.btn-contact-submit {
    background: #031359;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact-submit:
    hover {
    background: #ed6b24;
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* RESPONSIVE */
    @media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-form-box {
    padding: 30px;
    }
}

/* ==============================
   TEAM SECTION â€“ MODERN STYLE
============================== */

.team-section {
    padding: 20px 0 60px;}

.team-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-subtitle {
    font-size: 16px;
}

/* CARD */
.team-card {
    background: #10216a;
    padding: 25px 20px;
    border-radius: 26px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.team-card:
    hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* IMAGE WRAP */
.team-img-wrap {
    margin: 0 auto 18px;
    border-radius: 0;
    overflow: hidden;
}

.team-img-wrap
    img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* TEXT */
.team-card
    h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-card
    p {
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
    @media (max-width: 768px) {
    .team-title {
        font-size: 26px;
    }

    .team-img-wrap {
    }
}


/* ===============================
   Segment Swiper
=============================== */

.hz-segment-swiper {
}

.hz-segment-swiper .swiper-wrapper {
    align-items: center;
}

.hz-segment-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* optional smooth slide feel */
.hz-segment-swiper .swiper-slide {
    transition: transform 0.4s ease;
}

/* ===== END Segment Swiper ===== */

/* ===============================
   Custom Cursor
=============================== */

.hz-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-cursor-text {
    font-size: 12px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.hz-cursor.active {
    width: 100px;
    height: 100px;
    background: var(--color-primary-dark);
}

.hz-cursor.active .hz-cursor-text {
    opacity: 1;
}

/* ===== END Custom Cursor ===== */


/* ===============================
   Magnetic Border Effect
=============================== */

.hz-magnetic-border {
    position: relative;
    overflow: hidden;
}

/* border overlay */
.hz-magnetic-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--color-secondary);
    pointer-events: none;

    opacity: 0;
    transition: opacity 0.25s ease;

    mask-image: radial-gradient(
        140px circle at var(--x) var(--y),
        black 25%,
        transparent 70%
    );

    -webkit-mask-image: radial-gradient(
        140px circle at var(--x) var(--y),
        black 25%,
        transparent 70%
    );
}

.hz-magnetic-border.active::before {
    opacity: 1;
}

/* ===== END Magnetic Border Effect ===== */

/* ===============================
   Split Letter Animation
=============================== */

.split-letter {
    display: inline-block;
}

.split-letter .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

/* ===== END Split Letter Animation ===== */


/* ===============================
   Moving Grid Background
=============================== */

.hz-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(to right, #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);
    background-size: 80px 80px;
}
.hz-grid-bg::
    after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(to right, var(--color-secondary) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-secondary) 1px, transparent 1px);
    background-size: 160px 160px;
}
/* Keep content above */
.hz-section-content {
    position: relative;
    z-index: 1;
}

/* ===== END Moving Grid Background ===== */


/* ===============================
   WhatsApp Floating
=============================== */
.hz-whatsapp-chat-box-whatsapp-button {
    width: 45px;
    height: 48px;
    background-color: #25d366;
    position: fixed;
    right: 16px;
    bottom: 16px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-whatsapp-chat-box-whatsapp-button
    svg {
    fill: #FFF;
    width: 24px;
    height: 24px;
}

.hz-whatsapp-chat-box-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 320px;
    z-index: 9;
}

.hz-whatsapp-chat-box {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 9;
    background: #000f4400;
    backdrop-filter: blur(10px);
    display: none;
}

.hz-whatsapp-chat-box-textarea
    button {
    background-color: transparent;
    position: absolute;
    right: 7px;
    background-color: #25d366;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-whatsapp-chat-box-header
    button {
    background-color: transparent;
    position: absolute;
    right: 10px;
}

.hz-whatsapp-chat-box-header
    button svg {
    width: 14px;
    height: 15px;
}

.hz-whatsapp-chat-box-header {
    background-color: #25d366;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 18px 17px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hz-whatsapp-chat-box-header
    h4 {
    color: #FFF;
    margin: 0;
    font-size: 16px;
}

.hz-whatsapp-chat-box-header
    svg {
    fill: #FFF;
    width: 20px;
    height: 20px;
}

.hz-whatsapp-chat-box-body {
    padding: 18px;
    min-height: 256px;
}

.hz-whatsapp-chat-box-mesage {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 16px;
    background-color: #ffffff17;
    border-radius: 7px;
    width: 79%;
}

.hz-whatsapp-chat-box-mesage
    p {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
}

.hz-whatsapp-chat-box-textarea {
    border-top: 1px solid #e2e8f01c;
    display: flex;
    /* background: #FFF; */
    justify-content: space-between;
    padding: 18px;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hz-whatsapp-chat-box-textarea
    svg {
    fill: #ffffff;
    width: 16px;
    height: 16px;
}

.hz-whatsapp-chat-box-textarea
    input[type='text'] {
    resize: none;
    border: navajowhite;
    padding: 10px;
    border-radius: 6px;
    height: 42px;
    width: 86%;
    font-size: 15px;
    background: #5a5a5a6e;
    color: #FFF;
}

.hz-whatsapp-chat-box-textarea
    input[type='text']:focus {

    outline: 1px solid #25d366;
}
/* ===== END WhatsApp Floating ===== */


/* ===============================
   Core Team Compact Grid
=============================== */

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}

/* CARD */
.team-card {
    background: #10216a;
    padding: 11px 4px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    height: 100%;
}

.team-card:
    hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.team-img-wrap {
    margin: 0 auto 12px;
}

.team-img-wrap
    img {
    width: 92%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* TEXT */
.team-card
    h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 18px;
}

.team-card
    p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
    line-height: 18px;
}

/* ===== Responsive ===== */

/* Tablet */
    @media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
    @media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    }

    .team-card {
    padding: 18px 14px;
    }

    .team-img-wrap img {
    width: 85px;
    height: 85px;
    }
}

/* ===== END Core Team Compact Grid ===== */


/* ===============================
   Responsive
=============================== */
    @media (max-width:992px)
{
    .hero-title {
    font-size: 36px;
    line-height: 46px;
}
    .hero-subtitle {
    font-size: 20px;
    line-height: 1px;
    }
    .hero-banner {
    height: 61vh;
}
.hz-section-title {
    font-size: 32px;
    line-height: 47px;
    margin: 0 0 0;
}
.hz-section-primary-dark::
    before {
    width: 100%;
    background-size: cover;
    background-position: center center;
    opacity: .8;
    height: 590px;
    width: 770px;
}
.hz-section-primary-dark {
    overflow: hidden;
    padding: 0px 0 60px 0;
    z-index: 9999;
}
.hz-segment-section {
    margin-top: 0px;
    position: relative;
    z-index: 999;
}
.hz-section, .hz-section-padding {
    padding: 50px 0 50px 0;
}
.mb-md-20
{
    margin-bottom: 20px;
}
.mt-md-20
{
    margin-top: 20px;

}
.hz-about-image-wrapper
{
    margin-top: 40px;
}
.hz-footer {
    padding: 50px 0 40px;
}
.hz-footer-nav ul {
    margin: 30px 0 50px;
}
.hz-footer h3 {
    margin-bottom: 15px;
}
.hz-footer-brand
{
    text-align: center;
}
.hz-footer-logo {
    width: 280px;
}
.hero-video {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    z-index: 0;
    width: 100%;
}

.hero-banner::
    after
{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 10 51) 0%, rgba(37, 117, 191, 0) 20%, rgba(41, 137, 216, 0) 50%, rgba(83, 161, 224, 0) 65%, rgb(0 10 51) 100%);
    z-index: 0;
    top: 0;
}
.hero-content {
    top: 29%;
}
    .innerpage-header {
    padding: 106px 0 40px;
}
.innerpage-header h2 {
    font-size: 32px;
    line-height: 37px;}
.hz-project-header {
    margin-bottom: 0px;
}
.hz-project-image img {
    margin-top: 40px;
}
.hz-segment-swiper .swiper-slide {
    flex-direction: column;
    gap: 0;
}
.hz-segment-wrapper {
    padding: 0px 30px;
    border-radius: 0;
}
.hz-segment-item {
    flex-direction: column;
    font-size: 12px;
}
.vmv-block {
    margin-bottom: 0px;
}
}
/* ===== END Responsive ===== */;
}

.hz-doc-box ul {
    padding-left: 18px;
}

.hz-doc-box li {
    margin-bottom: 10px;
}

/* Industries & Gains */
.hz-industry-box,
.hz-gain-box {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.4s ease;
}
.hz-industry-box:hover,.hz-gain-box:hover
{
        background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}
.hz-industry-box ul,
.hz-gain-box ul {
    padding-left: 20px;
    list-style: d;
}
.hz-industry-box ul li, .hz-gain-box ul li{
    list-style:disc;
}
/* CTA */
.hz-doc-cta {
    padding: 120px 0;
    background: var(--color-primary-dark);
    color: #ffffff;
}

.hz-doc-cta p {
    max-width: 700px;
    margin: 20px auto 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hz-page-title {
        font-size: 32px;
        line-height: 44px;
    }
}

/* ===== END Technical Document Review Page ===== */



/* ===============================
   As-Built Services Page
=============================== */

.hz-asbuilt-intro {
    padding: 120px 0;
}

.hz-asbuilt-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.hz-section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 18px;
}

.hz-page-title {
    font-size: 44px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFF;
}

.hz-section-title {
    font-size: 43px;
    font-weight: 700;
    margin: 0;
}

/* Cards */
.hz-asbuilt-card {
    background: var(--color-primary-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.hz-asbuilt-card:hover {
    background: #1db9b1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.hz-asbuilt-card h5 {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    gap: 12px;
}


.hz-asbuilt-card h5 img{
    height: 43px;
}
.hz-asbuilt-card ul {
    padding-left: 18px;
}

.hz-asbuilt-card li {
    margin-bottom: 8px;
    list-style: disc;
}

/* Deliverables & Tools */
.hz-asbuilt-deliverables {
    padding: 120px 0;
    background: var(--color-primary-dark);
}

.hz-asbuilt-info {
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.05);
    height: 100%;
        transition: all 0.35s ease;
}
.hz-asbuilt-info:hover {
        background: #1db9b1;
    box-shadow: 0 25px 60px rgba
#00000014
(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.hz-asbuilt-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.hz-asbuilt-info ul {
    padding-left: 20px;
}
.hz-asbuilt-info ul li{
    list-style:disc
}

.hz-asbuilt-info li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hz-page-title {
        font-size: 32px;
        line-height: 44px;
    }
}

/* ===== END As-Built Services Page ===== */


/* ===============================
   Careers CTA Section
=============================== */

.hz-career-cta {
    padding: 140px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.hz-career-cta::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(237,107,36,0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hz-career-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
}

.hz-career-text {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    color: #d6d9f5;
    margin-bottom: 20px;
}

.hz-career-email {
    color: var(--color-secondary);
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.hz-career-email:hover {
    border-bottom: 1px solid var(--color-secondary);
}

/* override button style for dark bg */
.hz-career-cta .hz-btn-primary-lg {
    margin-top: 30px;
}

/* responsive */
@media (max-width: 992px) {
    .hz-career-title {
        font-size: 34px;
    }

    .hz-career-text {
        font-size: 16px;
        line-height: 28px;
    }
}

/* ===== END Careers CTA Section ===== */


/* =====================================
   CONTACT PAGE STYLING
===================================== */

/* HERO SECTION */
.contact-hero {
    background: linear-gradient(135deg, #031359 0%, #0b1e75 100%);
    color: #ffffff;
    padding: 120px 20px;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}

/* CONTACT MAIN */
.contact-main {padding: 50px 0 0;}

/* CONTACT CARDS */
.contact-card {
    background: var(--color-primary-light);
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #ed6b24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
}

.contact-card a:hover {
    color: #ed6b24;
}

/* FORM BOX */
.contact-form-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #031359;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #ed6b24;
    outline: none;
}

/* BUTTON */
.btn-contact-submit {
    background: #031359;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #ed6b24;
    transform: translateY(-2px);
}

.btn-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-form-box {
        padding: 30px;
    }
}

/* ==============================
   TEAM SECTION â€“ MODERN STYLE
============================== */

.team-section {padding: 20px 0 60px;}

.team-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-subtitle {
    font-size: 16px;
}

/* CARD */
.team-card {
    background: #10216a;
    padding: 25px 20px;
    border-radius: 26px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* IMAGE WRAP */
.team-img-wrap {
    margin: 0 auto 18px;
    border-radius: 0;
    overflow: hidden;
}

.team-img-wrap img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* TEXT */
.team-card h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .team-title {
        font-size: 26px;
    }

    .team-img-wrap {
    }
}


/* ===============================
   Segment Swiper
=============================== */

.hz-segment-swiper {
}

.hz-segment-swiper .swiper-wrapper {
    align-items: center;
}

.hz-segment-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* optional smooth slide feel */
.hz-segment-swiper .swiper-slide {
    transition: transform 0.4s ease;
}

/* ===== END Segment Swiper ===== */

/* ===============================
   Custom Cursor
=============================== */

.hz-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--color-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-cursor-text {
    font-size: 12px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.hz-cursor.active {
    width: 100px;
    height: 100px;
    background: var(--color-primary-dark);
}

.hz-cursor.active .hz-cursor-text {
    opacity: 1;
}

/* ===== END Custom Cursor ===== */

/* ===============================
   Split Letter Animation
=============================== */

.split-letter {
    display: inline-block;
}

.split-letter .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

/* ===== END Split Letter Animation ===== */


/* ===============================
   Moving Grid Background
=============================== */

.hz-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;

    background-image:
        linear-gradient(to right, #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);

    background-size: 80px 80px;
}
.hz-grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(to right, var(--color-secondary) 1px, transparent 1px),
        linear-gradient(to bottom, var(--color-secondary) 1px, transparent 1px);
    background-size: 160px 160px;
}
/* Keep content above */
.hz-section-content {
    position: relative;
    z-index: 1;
}

/* ===== END Moving Grid Background ===== */


/* ===============================
   WhatsApp Floating
=============================== */
.hz-whatsapp-chat-box-whatsapp-button {
    width: 45px;
    height: 48px;
    background-color: #25d366;
    position: fixed;
    right: 16px;
    bottom: 16px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-whatsapp-chat-box-whatsapp-button svg {
    fill: #FFF;
    width: 24px;
    height: 24px;
}

.hz-whatsapp-chat-box-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 320px;
    z-index: 999999;
}

.hz-whatsapp-chat-box {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 9;
    background: #000f4400;
    backdrop-filter: blur(10px);
    display: none;
}

.hz-whatsapp-chat-box-textarea button {
    background-color: transparent;
    position: absolute;
    right: 7px;
    background-color: #25d366;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hz-whatsapp-chat-box-header button {
    background-color: transparent;
    position: absolute;
    right: 10px;
}

.hz-whatsapp-chat-box-header button svg {
    width: 14px;
    height: 15px;
}

.hz-whatsapp-chat-box-header {
    background-color: #25d366;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 18px 17px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hz-whatsapp-chat-box-header h4 {
    color: #FFF;
    margin: 0;
    font-size: 16px;
}

.hz-whatsapp-chat-box-header svg {
    fill: #FFF;
    width: 20px;
    height: 20px;
}

.hz-whatsapp-chat-box-body {
    padding: 18px;
    min-height: 256px;
}

.hz-whatsapp-chat-box-mesage {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 16px;
    background-color: #ffffff17;
    border-radius: 7px;
    width: 79%;
}

.hz-whatsapp-chat-box-mesage p {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
}

.hz-whatsapp-chat-box-textarea {
    border-top: 1px solid #e2e8f01c;
    display: flex;
    /* background: #FFF; */
    justify-content: space-between;
    padding: 18px;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.hz-whatsapp-chat-box-textarea svg {
    fill: #ffffff;
    width: 16px;
    height: 16px;
}

.hz-whatsapp-chat-box-textarea input[type='text'] {
    resize: none;
    border: navajowhite;
    padding: 10px;
    border-radius: 6px;
    height: 42px;
    width: 86%;
    font-size: 15px;
    background: #5a5a5a6e;
    color: #FFF;
}

.hz-whatsapp-chat-box-textarea input[type='text']:focus {

    outline: 1px solid #25d366;
}
/* ===== END WhatsApp Floating ===== */


/* ===============================
   Core Team Compact Grid
=============================== */

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}

/* CARD */
.team-card {
    background: #10216a;
    padding: 11px 4px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.team-img-wrap {
    margin: 0 auto 12px;
}

.team-img-wrap img {
    width: 92%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* TEXT */
.team-card h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 18px;
}

.team-card p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
    line-height: 18px;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-card {
        padding: 18px 14px;
    }

    .team-img-wrap img {
        width: 85px;
        height: 85px;
    }
}

/* ===== END Core Team Compact Grid ===== */



/*Privacy Policy*/
.privacy-policy-section {
    padding: 60px 20px;
    color: #333;
}

.privacy-policy-section .container {
    max-width: 960px;
    margin: auto;
    background: var(--color-primary-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: #FFF;
}

.policy-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.policy-heading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-policy-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-policy-section a {
    color: #ffffff;
    text-decoration: underline;
}

.privacy-policy-section a:hover {
    text-decoration: none;
}

/*Privacy Policy ends*/


/* ===============================
   Responsive
=============================== */
@media (max-width:992px)
{
    .hero-title {
    font-size: 36px;
    line-height: 46px;
}
    .hero-subtitle {
        font-size: 20px;
        line-height: 1px;
    }
    .hero-banner {
    height: 61vh;
}
.hz-section-title {
    font-size: 32px;
    line-height: 47px;
    margin: 0 0 0;
}
.hz-section-primary-dark::before {
    width: 100%;
    background-size: cover;
    background-position: center center;
    opacity: .8;
    height: 590px;
    width: 770px;
}
.hz-section-primary-dark {
    overflow: hidden;
    padding: 0px 0 60px 0;
    z-index: 9999;
}
.hz-segment-section {
    margin-top: 0px;
    position: relative;
    z-index: 999;
}
.hz-section, .hz-section-padding {
    padding: 50px 0 50px 0;
}
.mb-md-20
{
    margin-bottom: 20px;
}
.mt-md-20
{
    margin-top: 20px;

}
.hz-about-image-wrapper
{
    margin-top: 40px;
}
.hz-footer {
    padding: 50px 0 40px;
}
.hz-footer-nav ul {
    margin: 30px 0 50px;
}
.hz-footer h3 {
    margin-bottom: 15px;
}
.hz-footer-brand
{
    text-align: center;
}
.hz-footer-logo {
    width: 280px;
}
.hero-video {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    z-index: 0;
    width: 100%;
}

.hero-banner::after
{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 10 51) 0%, rgba(37, 117, 191, 0) 20%, rgba(41, 137, 216, 0) 50%, rgba(83, 161, 224, 0) 65%, rgb(0 10 51) 100%);
    z-index: 0;
    top: 0;
}
.hero-content {
    top: 29%;
}
    .innerpage-header {
    padding: 106px 0 40px;
}
.innerpage-header h2, .innerpage-header h1 {font-size: 32px;line-height: 37px;}
.hz-project-header {
    margin-bottom: 0px;
}
.hz-project-image img {
    margin-top: 40px;
}
.hz-segment-swiper .swiper-slide {
    flex-direction: column;
    gap: 0;
}
.hz-segment-wrapper {
    padding: 0px 30px;
    border-radius: 0;
}
.hz-segment-item {
    flex-direction: column;
        font-size: 12px;
}
.vmv-block {
    margin-bottom: 0px;
}
}
/* ===== END Responsive ===== */

