* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 !important;
    font-style: normal;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo/Arimo-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 !important;

    font-style: italic;
}

html,
body {
    overflow-x: clip !important;
}

body {
    width: 100%;
    height: auto;
    font-size: 18px;
    font-family: 'Arimo', sans-serif !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif !important;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px !important;
}

h3 {
    font-size: 28px !important;
}

h4 {
    font-size: 26px !important;
}

h5 {
    font-size: 25px !important;
}

h6 {
    font-size: 20px !important;
}

@media (max-width: 991px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

    h6 {
        font-size: 16px !important;
    }
}



p {
    font-size: 18px;
    text-align: justify;
}

.text-justify {
    text-align: justify !important;
}

:root {
    --color-navy: #21355a;
    --color-blue: #156fdf;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-yellow: #FFD700;

}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    background-color: rgba(255, 255, 255, 1);
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.gif);
}

/* return to top */
.paginacontainer {
    position: relative;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
}

.progress-wrap::after {
    content: "\f062";
    font-family: "FontAwesome";
    font-size: 15px;
    color: var(--color-navy);
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    content: "\f062";
    font-family: "FontAwesome";
    font-size: 15px;
    color: var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap:hover {
    background-color: var(--color-navy);
}


.progress-wrap svg path {
    fill: none;
    stroke: var(--color-navy);
    stroke-width: 6;
    transition: all 200ms linear;
}

.progress-wrap:hover svg path {
    stroke: var(--color-yellow);
    stroke-width: 6;
    /* border: 2px solid var(--color-navy); */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--color-navy);
    color: var(--color-white);
}


.navbar.scrolled .logo a {
    color: white !important;
}

.navbar.scrolled .logo .tagline {
    color: var(--color-yellow) !important;
}

.navbar.scrolled a {
    color: white !important;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: white !important;
}

.navbar.scrolled .nav-links a::before,
.navbar.scrolled .nav-links a::after {
    background-color: var(--color-yellow) !important;
}

.navbar.scrolled .nav-links a span.decor {
    background-color: var(--color-yellow) !important;
}

.logo {
    display: inline-block;
    text-align: left;
    color: var(--color-navy);
    text-decoration: none;
    font-family: 'Anton', sans-serif;

}

.logo .company-name {
    font-size: 28px;
    margin-right: 6px;
}

.logo .company-number {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arimo', sans-serif !important;
    vertical-align: middle;
    text-align: center;
    align-items: center;

}

.logo .tagline {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--color-navy);
    font-family: 'Arimo', sans-serif !important;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-navy) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a::before,
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.nav-links a::before {
    bottom: 3px;
}

.nav-links a::after {
    bottom: -5px;
}

.nav-links a span.decor {
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}


.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover span.decor,
.nav-links a.active span.decor {
    width: 60% !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 30% !important;
}


.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-blue);
    transition: all 0.3s ease;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .logo .company-name {
        font-size: 22px;
    }

    .logo .tagline {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .nav-links li {
        margin-left: 1rem;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        background: transparent;
        box-shadow: none;
    }
}

/* --- Mobile (≤991px) --- */
@media only screen and (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .logo .company-name {
        font-size: 17px;
    }

    .logo .tagline {
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 8px;
        text-align: left;
        margin-bottom: -2px;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-navy);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        color: var(--color-white) !important;
    }

    .nav-links a::before,
    .nav-links a::after {
        background-color: var(--color-yellow);
    }

    .nav-links a span.decor {
        background-color: var(--color-yellow);
    }
}

/* .slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
} */

svg {
    width: 100%;
    height: 100%;
    display: block;
}

.left-text {
    position: absolute;
    top: 42%;
    right: 710px;
    color: #FFD700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.747);
    font-size: 60px;
    font-weight: 500;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-family: 'Anton', sans-serif;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.left-text.active {
    animation: fadeSlideIn 1s ease forwards;
}

text {
    font-family: 'Anton', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 80px;

}

.left-text.active {
    opacity: 1;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 4px;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(33, 53, 90, 0.8);
}

.nav-arrow.prev {
    left: 30px;
}

.nav-arrow.next {
    right: 30px;
}

@media only screen and (max-width: 320px) {
    .slider {
        height: 230px !important;
    }
}

@media (min-width: 320px) and (max-width: 375px) {
    .slider {
        height: 230px !important;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .slider {
        height: 250px !important;
    }
}

@media (min-width: 426px) and (max-width: 500px) {
    .slider {
        height: 320px !important;
    }
}

@media (min-width: 501px) and (max-width: 600px) {
    .slider {
        height: 300px !important;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .slider {
        height: 220px !important;
    }
}

@media (min-width: 769px) and (max-width: 800px) {
    .slider {
        height: 220px !important;
    }
}

@media (min-width: 801px) and (max-width: 1024px) {
    .slider {
        height: 220px !important;
    }
}

@media only screen and (min-width: 1024px) {
    .slider {
        height: 90vh !important;
    }
}

@media only screen and (max-width: 768px) {

    .left-text {
        right: 160px;
        font-size: 20px;
        top: 40%;

    }

    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 15px;
        position: absolute;
        top: 45%;
    }

    .nav-arrow.prev {
        left: 5px;
    }

    .nav-arrow.next {
        right: 5px;
    }

    svg text {
        font-size: 35px !important;
    }

}


.sec-title {
    text-align: center;
}

.sec-title h1 {
    color: var(--color-blue);
    font-weight: 500;
}

.sec-title h2 {
    color: var(--color-blue);
    font-weight: 500;
    font-size: 35px !important;
}

.sec-title .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.two-lines {
    position: relative;
    width: 60px;
    height: 3px;
}

.two-lines::before,
.two-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-navy);
}

.two-lines::before {
    top: 0;
    left: 10px;
}

.two-lines::after {
    bottom: 0;

}

.sec-title i {
    font-size: 16px;
    color: var(--color-yellow);
    padding-left: 10px;
}

.main-img {
    display: block;
    height: auto;
    position: relative;
    z-index: 2;
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #535353;
    border: 1px solid gray;
}

.image-with-pattern {
    position: relative;
    display: inline-block;
}

.pattern-img {
    position: absolute;
    top: -20px;
    left: 190px;
    width: 150px;
    z-index: 1;
    animation: Topmove 3s ease-in-out infinite;
}

.pattern {
    position: absolute;
    width: 200px;
    left: -40px;
    top: -50px;
    rotate: 180deg;
    animation: floatPattern 5s ease-in-out infinite;
}

@keyframes Topmove {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes floatPattern {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .pattern {
        display: none;
    }

    .pattern-img {
        display: none;
    }
}

.sinergi-service-card .service-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 15px;
    border: 0.2px solid rgba(168, 168, 168, 0.452);
    border-radius: 10px;
}

.sinergi-service-card .service-card h5 {
    padding: 0 10px;
}

.sinergi-service-card .service-card p {
    padding: 0 10px;
}

.bulb-wrapper {
    position: relative;
    width: 142px;
    height: 221px;
    margin: auto;
    overflow: hidden;
}

.bulb-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.bulb-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.664);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.bulb-wrapper:hover::after {
    opacity: 0;
}

.bulb-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bulb-wrapper i {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: #FFD700;
    font-size: 25px;
}

.bulb-wrapper:hover i {
    color: var(--color-yellow)
}

.bulb-wrapper h5 {
    text-align: left !important;
}

.engineering-services-section {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.engineering-services-section::before,
.engineering-services-section::after {
    content: '';
    position: absolute;
    top: 230px;
    width: 50%;
    height: 70%;
    background-repeat: no-repeat;
    /* background-size: cover; */
    opacity: 0.1;
    z-index: 0;
}

.engineering-services-section::before {
    left: 0;
    background-image: url('../images/pattern-img-left.png');
    background-position: left bottom;
    transform: scaleX(-1);
}

.engineering-services-section::after {
    right: 0;
    background-image: url('../images/pattern-img-left.png');
}

@media (max-width: 768px) {

    .engineering-services-section::before,
    .engineering-services-section::after {
        display: none;
    }
}

.engineering-services-section .container {
    position: relative;
    z-index: -1;
}

.engineering-services-section .service-box {
    text-align: center;
    margin-bottom: 10px;
}

.engineering-services-section .icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 25px;
    color: var(--color-navy);
    background-color: var(--color-yellow);
}

.engineering-services-section .icon::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 68px;
    height: 68px;
    border: 1.8px dashed var(--color-navy);
    border-radius: 50%;
    animation: rotateBorder 5s linear infinite;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.engineering-services-section h4 {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-blue);
}

.equipment-image {
    display: inline-block;
    perspective: 1000px;
}

.equipment-image img {
    max-width: 100%;
    transform-style: preserve-3d;
    animation: rotate3D 6s infinite linear;
    /* transition: all 0.4s ease-in-out; */
    filter: drop-shadow(8px 9px 8px rgba(0, 0, 0, 0.151));
}

.fade-img {
    transition: opacity 1s ease;
    opacity: 1;
}

.fade-in-animated {
    animation: fadeInSmooth 1s ease-out forwards;
}

@keyframes fadeInSmooth {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.loading {
    opacity: 0.3;
    filter: blur(2px);
}

@keyframes fade-In {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@keyframes rotate3D {
    0% {
        transform: rotateX(8deg) rotateY(-8deg);
    }

    25% {
        transform: rotateX(8deg) rotateY(8deg);
    }

    50% {
        transform: rotateX(-8deg) rotateY(8deg);
    }

    75% {
        transform: rotateX(-8deg) rotateY(-8deg);
    }

    100% {
        transform: rotateX(8deg) rotateY(-8deg);
    }
}

.footer {
    position: relative;
    color: var(--color-navy);
    background-image: url(../images/sinergi-footer-bg.png);
    background-position: center;
    background-repeat: repeat;
    border: 0.5px solid rgba(128, 128, 128, 0.11);

}

.footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
}

@media (max-width: 574px) {
    .footer-col {
        align-items: center;
    }
}

.footer-col h4 {
    color: var(--color-blue);
    text-transform: uppercase;
    position: relative;
    text-align: left;
    margin: 0;
    padding-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    font-size: 24px !important;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 1.5em;
    height: 2px;
    background-color: var(--color-yellow);
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: calc(1.5em + 5px);
    bottom: 1px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--color-navy);
    border-radius: 50%;
}

.footer-col h4 span.decor-line {
    position: absolute;
    left: calc(1.3em + 5px + 0.6em + 5px);
    bottom: 5px;
    width: 1.5em;
    height: 2px;
    background-color: var(--color-yellow);
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: start;
        justify-content: start;
    }

    .footer-col h4::before {
        width: 1.8em;
        left: 15px;
    }

    .footer-col h4::after {
        left: calc(1.7em + 4px);
    }

    .footer-col h4 span.decor-line {
        left: calc(1.5em + 4px + 0.6em + 4px);
        width: 1.8em;
    }
}

.footer-col ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0px !important;
    margin-top: 20px;
    text-align: left;
    align-self: flex-start;

}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col li {
    color: var(--color-black);
}

.footer-col ul li a:hover {
    padding-left: 8px;
}

.footer-col i {
    color: var(--color-navy);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    text-align: left;
    line-height: 2.2;
}

.footer-address span {
    margin-top: -10px !important;
}

.footer-bottom {
    border-top: 2px solid var(--color-black) !important;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 16px !important;
    color: var(--color-black);
}

@media (max-width: 991px) {
    .footer-col {
        width: 50%;
    }
}

@media (max-width: 574px) {
    .footer-col .social-links {
        justify-content: center;
        align-self: flex-start;
        text-align: left;
    }

    .sub-col {
        padding-left: 20px;
    }

    .footer-col h4 {
        text-align: left !important;
        margin-top: 20px;
    }

    .footer-col h4::before {
        transform: translateX(-50%);
    }
}

.copyright {
    border-top: 1px solid #adadad !important;
    z-index: 1;
}

.copyright p {
    font-size: 14px !important;
    color: var(--color-black) !important;
}

.copyright p a {
    font-size: 14px !important;
    color: var(--color-black) !important;
}

.footer-col .social-links a i {
    height: 30px;
    width: 30px;
    background-color: var(--color-navy);
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--color-white);
    transition: all 0.5s ease;
}

.footer-col .social-links a i:hover {
    color: var(--color-white);
    background-color: var(--color-navy);
    border: 1.5px solid var(--color-white)
}

.strength-box {
    padding-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.strength-box .icon {
    color: var(--color-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border-radius: 50px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-navy);
    transition: all 0.5s ease;
}

.strength-box .icon:hover {
    background-color: var(--color-yellow);
    color: var(--color-navy);
}

.strength-box p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}



/* about page start */
.about-banner {
    position: relative;
    background-image: linear-gradient(rgba(2, 12, 71, 0.308)), url("../images/banner/about-banner-img.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}



.about-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 50px !important;
    margin: 0;
    text-transform: uppercase;
    line-height: 2.8px;
    font-weight: 500;
    color: var(--color-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.904);
}

@media (max-width: 768px) {
    .about-banner h1 {
        font-size: 35px !important;
    }
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--color-navy);
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;

}

.tab-btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.tab-btn.active {
    background: var(--color-navy);
    color: #fff;
}

.tab-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    font-size: 18px;

}

#about-img {
    width: 600px;
    height: 300px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
}

.about-list li i {
    color: #21355a;
    margin-right: 8px;
}

@media (max-width: 768px) {
    #about-img {
        width: 100%;
        height: 100%;
    }

}

.why-choose-us {
    color: #fff;
}

.choose-box {
    border: 1px solid rgba(12, 12, 12, 0.24);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.choose-box:hover i {
    transform: rotateX(180deg);

}

.choose-box h4 {
    color: var(--color-blue);
}

.choose-box .icon i {
    font-size: 36px;
    color: var(--color-yellow);
    text-align: left;
    transition: transform 0.5s ease-in-out;
}

/* contact page start */
.contact-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.icon-wrapper i {
    font-size: 18px;
    color: var(--color-navy);
    position: relative;
    z-index: 2;
}

.icon-wrapper::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    border: 1px dashed var(--color-navy);
    animation: rotateOutline 4s linear infinite;
}

@keyframes rotateOutline {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-info h4 {
    color: var(--color-blue);
}

.contact-info .info-text p {
    margin: 0;
    font-size: 18px;
}

.contact-info .info-text p a {
    margin: 0;
    color: #353535;
    font-size: 18px;
}

.contact-box {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: #000;
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
}

.contact-button {
    background-color: white;
    border-radius: 30px;
    border: 2px solid var(--color-blue);
    padding: 10px 20px;
    color: var(--color-blue);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    cursor: pointer;
}

.contact-button::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    border-radius: 180px;
    z-index: -1;
    transition: all 0.4s ease;
    border: 2px solid var(--color-blue);
}

.contact-button:hover::before {
    bottom: 0;
}

.contact-button:hover {
    color: #fff;
}


@media (max-width: 767px) {

    .contact-info,
    .contact-box {
        text-align: center;

    }

    .contact-info .info-text {
        margin-left: 8px;
    }

    .contact-info .info-item {
        text-align: left;
    }

    .icon-wrapper {
        margin: 5px 10px 10px 0;
    }
}

#lg-components-1 {
    margin-bottom: 3% !important;
}

.lg-object {
    width: 500px !important;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #727272;
    display: block;
    transition: transform .4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    transition: opacity .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    color: #fff;
    text-align: center;
    padding: 10px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #75757583;
    padding: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #808080;
    min-height: 280px;
}

.service-card img {
    width: 100%;
    height: 250px;
    border: 1px solid #bebebe;
    border-radius: 10px;
}

.service-card:hover {
    transform: scale(1.04);
}

/* banner */
.slider-container {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: var(--color-navy);
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.people-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.right-section {
    color: #fff;
    margin-bottom: 8%;
    background-color: var(--color-navy);
}

h1.head-for-banner {
    font-family: "Playball", serif !important;
    color: var(--color-yellow);
    font-size: 40px !important;
    text-shadow: 3px 3px 6px #000000e5;
}

.slider-container .right-section h1.sub_head {
    font-size: 45px;
    font-weight: 700;
    text-shadow: 3px 3px 6px #000000e5;
    font-family: "Averia Serif Libre", serif !important;
}


.bottle-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.bottle-image {
    max-height: 80vh;
    width: auto;
    filter: drop-shadow(2px 10px 10px #000000e1);
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}


.left-section {
    padding: 0 !important;
}

.nav_logo {
    width: 55px;
}

@media (max-width: 992px) {
    .slider-container {
        height: 80vh;
    }

    .people-image {
        height: 60vh;
    }

    .sub_head {
        font-size: 40px;
    }

    h1.head-for-banner {
        font-size: 32px;
    }

    .bottle-image {
        max-height: 50vh;
        max-width: 150px;
    }

    .nav_logo {
        width: 40px;
    }

    .bottle-section {
        top: 50%;
        left: 85%;
    }

    .right-section {
        color: #fff;

        padding-top: 30px !important;
    }

    .slide {
        display: inline-table !important;
    }
}

@media (max-width: 576px) {
    .people-image {
        height: 40vh;
        object-fit: contain;
    }

    .slider-container {
        height: 80vh;
    }

    .sub_head {
        font-size: 25px !important;
    }

    h1.head-for-banner {
        font-size: 20px !important;
    }

    .bottle-image {
        max-height: 30vh;
        max-width: 100px;
    }

    .right-section {
        padding: 1rem;
    }

    .nav_logo {
        width: 30px;
    }

    .bottle-section {
        top: 50%;
        left: 85%;
    }
}

.sitemap-btn a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 0px 10px 10px 0px;
    overflow: hidden;
    background: var(--color-navy);
    justify-content: center;
    width: 230px;
    height: 50px;
}

.site-icon {
    background: var(--color-yellow);
    padding: 25px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 30px;
    height: 100%;
    background: var(--color-yellow);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.site-icon i {
    font-size: 18px;
    color: var(--color-navy);
}

.site-content {
    flex: 1;
    background: var(--color-navy);
    font-weight: 600;
    align-items: center;
    justify-content: center;
    display: flex;
}

.site-content p {
    color: white;
    padding-top: 13px;
}

.sitemap-btn:hover .site-icon {
    background-color: var(--color-navy);
}

.sitemap-btn:hover .site-icon:after {
    background-color: var(--color-navy);
}

.sitemap-btn:hover .site-icon i {
    color: var(--color-yellow);
}

.sitemap-btn:hover .site-content {
    background-color: var(--color-yellow);
}

.sitemap-btn:hover .site-content p {
    color: var(--color-navy);
}

@media (max-width: 576px) {
    .sitemap-btn {
        display: flex;
        justify-content: center;
    }
}

/* management page */
.org-chart {
    text-align: center;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.org-chart ul {
    padding-top: 20px;
    position: relative;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.org-chart li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    display: inline-block;
    vertical-align: top;
}

.org-chart li::before,
.org-chart li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid var(--color-navy);
    width: 50%;
    height: 20px;
}

.org-chart ul.no-lines>li::before,
.org-chart ul.no-lines>li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid var(--color-navy);
    width: 0%;
    height: 20px;
}

.org-chart li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid var(--color-navy);
}

.org-chart li:only-child::after,
.org-chart li:only-child::before {
    display: none;
}

.org-chart li:only-child {
    padding-top: 0;
}

.org-chart li:first-child::before,
.org-chart li:last-child::after {
    border: 0 none;
}

.org-chart li:last-child::before {
    border-right: 2px solid var(--color-navy);
    border-radius: 0 5px 0 0;
}

.org-chart li:first-child::after {
    border-radius: 5px 0 0 0;
}

.org-chart ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid var(--color-navy);
    width: 0;
    height: 20px;
}

.org-chart li .org-box {
    background: var(--color-navy);
    color: white;
    border-radius: 8px;
    display: inline-block;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    min-width: 120px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 5px;
}

.org-chart li .org-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.org-chart li .ceo-box {
    background: var(--color-navy);
    font-size: 18px;
    font-weight: 700;
    color: white;
    min-width: 200px;
}

.org-chart li .director-box {
    background: var(--color-yellow);
    color: var(--color-navy);
    min-width: 150px;
}

.org-chart li .manager-box {
    background: var(--color-navy);
    color: white;
    min-width: 140px;
}

.org-chart li .department-box {
    background: var(--color-yellow);
    color: var(--color-navy);
    min-width: 130px;
}

.org-chart li .admin-box {
    background: var(--color-yellow);
    color: var(--color-navy);
    min-width: 140px;
}

.chart-title {
    text-align: center;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 40px;
}

.org-chart>ul>li>ul>li {
    vertical-align: top;
    display: inline-block;
    float: none;
}

.org-chart>ul>li>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.org-chart>ul>li>ul>li:last-child>ul {
    display: block;
    text-align: center;
}

.org-chart>ul>li>ul>li:last-child>ul>li {
    float: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.org-chart li:after {
    content: "";
    display: table;
    clear: both;
}

.desktop-chart {
    display: flex;
    justify-content: center;
}

.mobile-chart {
    display: none;
}

@media (max-width: 768px) {
    .desktop-chart {
        display: none;
    }

    .mobile-chart {
        display: block;
        text-align: left;
        padding: 15px;
        position: relative;
    }

    .org-box {
        background: var(--color-yellow);
        border-radius: 8px;
        padding: 10px;
        margin: 10px 0;
        width: 85%;
        font-weight: 600;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        position: relative;
        color: var(--color-navy);
    }

    .org-box.ceo {
        background: var(--color-navy);
        color: #fff;
        text-align: center;
        width: 90%;
        margin: 0 auto 20px auto;
    }

    .branch {
        margin-left: 45px;
        position: relative;
    }

    .mobile-chart::before {
        content: "";
        position: absolute;
        top: 81px;
        left: 36px;
        width: 2px;
        height: 262px;
        background: #333;
        z-index: 1;
    }

    .branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -22px;
        width: 20px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .sub-branch {
        margin-left: 20px;
        position: relative;
        padding-left: 15px;
    }

    .sub-branch::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -4px;
        width: 2px;
        height: 55%;
        background: #333;
        z-index: 1;
    }

    .finance-branch::before {
        content: "";
        position: absolute;
        top: -9px;
        left: -4px;
        width: 2px;
        height: 74%;
        background: #333;
        z-index: 1;
    }

    .sub-branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -17px;
        width: 15px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .sub-branch .sub-branch {
        border-left: none;
    }

    .sub-branch .sub-branch::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -2px;
        width: 2px;
        height: 88px;
        background: #333;
        z-index: 1;
    }

    .sub-branch .sub-branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -17px;
        width: 15px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .box1::after,
    .box2::after {
        display: none;
    }

    .branch::before {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 370px) {
    .desktop-chart {
        display: none;
    }

    .mobile-chart {
        display: block;
        text-align: left;
        padding: 15px;
        position: relative;
    }

    .org-box {
        background: var(--color-yellow);
        border-radius: 8px;
        padding: 10px;
        margin: 8px 0;
        width: 90%;
        font-weight: 600;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        position: relative;
        color: var(--color-navy);
        font-size: 14px;
    }

    .org-box.ceo {
        background: var(--color-navy);
        color: #fff;
        text-align: center;
        width: 95%;
        margin: 0 auto 15px auto;
    }

    .branch {
        margin-left: 35px;
        position: relative;
    }

    .mobile-chart::before {
        content: "";
        position: absolute;
        top: 85px;
        left: 30px;
        width: 2px;
        height: 226px;
        background: #333;
        z-index: 1;
    }

    .branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -18px;
        width: 16px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .sub-branch {
        margin-left: 18px;
        position: relative;
        padding-left: 12px;
    }

    .sub-branch::before {
        content: "";
        position: absolute;
        top: -6px;
        left: -4px;
        width: 2px;
        height: 53%;
        background: #333;
        z-index: 1;
    }

    .finance-branch::before {
        content: "";
        position: absolute;
        top: -9px;
        left: -4px;
        width: 2px;
        height: 70%;
        background: #333;
        z-index: 1;
    }

    .sub-branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -14px;
        width: 12px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .sub-branch .sub-branch {
        border-left: none;
    }

    .sub-branch .sub-branch::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -2px;
        width: 2px;
        height: 80px;
        background: #333;
        z-index: 1;
    }

    .sub-branch .sub-branch>.org-box::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -14px;
        width: 12px;
        height: 2px;
        background: #333;
        z-index: 2;
    }

    .box1::after,
    .box2::after {
        display: none;
    }

    .branch::before {
        display: none;
    }
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.error-page {
    background-color: white;
    width: 100%;
}

.error-container {
    animation: fadeInUp 0.8s ease-out;
}

.error-content {
    text-align: center;
}

.error-content img {
    object-fit: cover;
    width: 350px;
    height: 350px;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-navy);
    animation: slideInRight 0.8s ease-out 0.4s both;
    text-align: center;
}

.error-description {
    font-size: 18px;
    color: var(--color-black);
    animation: fadeIn 0.8s ease-out 0.6s both;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .error-title {
        font-size: 25px;
    }

    .error-description {
        font-size: 16px;
    }

    .error-content img {
        object-fit: cover;
        width: 280px;
        height: 280px;
    }
}
/* news page */
   .timeline-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.timeline-date {
  color: var(--color-white);
 font-size: 20px;
 background-color: var(--color-navy);
 width:150px;
 text-align: center;
 border-radius: 3px;
}

.timeline-date .day {
  color: var(--color-yellow) !important;
  font-weight: 500;

}

.timeline-date .month,
.timeline-date .year {
  font-weight: 500;
}

.news_img {
  width: 150px;
  height: 150px;
  border-radius: 5px !important;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .news_img {
    width: 100%;
    height: auto;
  }
}


.timeline-left{
border-right: 1px solid #ddd;
}
.timeline-right{
border-left: 1px solid #ddd;
}
.timeline h4{
    color:var(--color-blue) !important;
}
 .timeline-item:hover {
    border:1px solid var(--color-navy);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }
 .timeline-item:hover .timeline-right {
    border-left: 1px solid var(--color-navy);
 }

.timeline-item:hover .timeline-left {
    border-right: 1px solid var(--color-navy);
 }
@media (max-width: 768px) {
    .timeline-left{
       border:none;
    }
     .timeline-right{
        border:none;
    }
}
