:root {
    --orange: #C85600;
    --blue: #05409A;
    --dark-blue: #00173d;
    --gray: #f3f3f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-blue);
}

a:hover {
    color: var(--orange) !important;
}

#topNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#topNav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo:hover {
    color: #3498db;
    transform: scale(1.05);
}

.nav-main ul {
    list-style: none;
    gap: 3rem;
    margin: 0px 0 0px 0 !important;
}

.nav-main ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-size: 1.7em !important;
}

.nav-main ul li.dropdown {
    position: relative;
}

.nav-main ul li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    min-width: 220px;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
    z-index: 1000;
}

.nav-main ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-main ul li.dropdown .dropdown-menu li {
    margin: 0;
}

.nav-main ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem !important;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-main ul li.dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-main ul li.dropdown .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.nav-main ul li.dropdown a i.fa-caret-down {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-main ul li.dropdown:hover a i.fa-caret-down {
    transform: rotate(180deg);
}

.nav-main ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.3s ease;
}

.nav-main ul li a:hover {
    color: #fff;
}

.nav-main ul li a:hover::after {
    width: 100%;
}

.btn-mobile {
    display: none;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.btn-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.05);
}

#sidebar-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    padding-top: 80px;
}

#sidebar-wrapper .sidebar-nav {
    list-style: none;
    padding: 0;
}

#sidebar-wrapper .sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar-wrapper .sidebar-nav li a {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

#sidebar-wrapper .sidebar-nav li a i {
    margin-right: 1rem;
    width: 20px;
    font-size: 1.1rem;
}

#sidebar-wrapper .sidebar-nav li a:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #fff;
    padding-left: 2rem;
}

#sidebar-wrapper .sidebar-nav li {
    position: relative;
}

#sidebar-wrapper .sidebar-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease;
}

#sidebar-wrapper .sidebar-nav li:hover .sidebar-dropdown,
#sidebar-wrapper .sidebar-nav li.active .sidebar-dropdown {
    max-height: 300px;
}

#sidebar-wrapper .sidebar-dropdown li a {
    padding-left: 3rem;
    font-size: 0.95rem;
    border-bottom: none;
    font-weight: 400;
}

#sidebar-wrapper .sidebar-dropdown li a:hover {
    padding-left: 3.5rem;
}

#sidebar-wrapper .sidebar-nav li a i.fa-caret-down {
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

#sidebar-wrapper .sidebar-nav li:hover a i.fa-caret-down {
    transform: rotate(180deg);
}

.btn-mobile .fa-bars {
    position: relative;
}

.btn-mobile {
    background: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    position: relative;
    width: 45px !important;
    height: 45px !important;
}

.btn-mobile::before,
.btn-mobile::after,
.btn-mobile span {
    content: '';
    position: absolute;
    left: 12px;
    height: 3px;
    width: 20px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-mobile::before {
    top: 12px;
}

.btn-mobile span {
    top: 22px;
}

.btn-mobile::after {
    bottom: 12px;
}

.btn-mobile:hover {
    border-color: #fff !important;
    transform: scale(1.05);
}

.btn-mobile:hover::before {
    transform: translateX(3px);
}

.btn-mobile:hover span {
    width: 15px;
    left: 15px;
}

.btn-mobile:hover::after {
    transform: translateX(-3px);
}

.btn-mobile i {
    opacity: 0 !important;
    visibility: hidden !important;
}

.btn-mobile .fa-bars::before {
    display: none !important;
}

.toggled #sidebar-wrapper {
    left: 0;
}

.toggled::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.toggled #page-content-wrapper {
    transform: translateX(280px);
    transition: transform 0.4s ease;
}

@media (max-width: 990px) {
    .nav-main ul {
        display: none;
    }

    .btn-mobile {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    #sidebar-wrapper {
        width: 260px;
    }

    .toggled #page-content-wrapper {
        transform: translateX(260px);
    }
}

#page-content-wrapper {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    transition: transform 0.4s ease;
}

.nav-main ul li a.active,
.nav-main ul li a {
    color: #3498db;
}


/* ================================= HEADER ==================================== */

.header-logo {
    height: 57px;
}



.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: #ffffff;
    border-bottom: 1px solid rgb(161 43 46 / 61%);
    box-shadow: 0 0 18px rgb(161 43 46 / 52%);
}

.navbar-container {
    max-width: 90%;
    margin: auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    padding-top: 16px;
}

.navbar-menu a {
    color: #00a0e3;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-menu a:active {
    color: #00a0e3 !important;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00a0e3;
    transition: 0.3s;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 22px;
}

.navbar-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.navbar-dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 200px;
    background: rgb(255 255 255);
    border: 1px solid #00a0e3;
    border-radius: 6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.navbar-dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    font-size: 20px;
}

.navbar-dropdown-menu li a:hover {
    color: orange;
}


.logo-nav {
    height: 70px;
}

@media (min-width: 769px) {
    .navbar-dropdown:hover .navbar-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-dropdown:hover .navbar-arrow {
        transform: rotate(180deg);
    }
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.navbar-toggle span {
    width: 26px;
    height: 3px;
    background: #00a0e3;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 2px;
}

.navbar-toggle span:nth-child(1) {
    top: 0;
}

.navbar-toggle span:nth-child(2) {
    top: 10px;
}

.navbar-toggle span:nth-child(3) {
    top: 20px;
}

.navbar-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    background: #ec691f;
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    background: #ec691f;
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        backdrop-filter: blur(12px);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .new-vt-slider {
        height: 400px !important;
    }

    .new-vt-slider .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .navbar-menu.active {
        max-height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        width: 64vw;
        position: fixed;
        top: 100%;
        left: 36%;
        text-align: center;
        padding: 20px 20px;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        gap: 0px;
    }

    .navbar-menu li {
        text-align: center;
        padding: 14px 0;
    }

    .navbar-dropdown-menu {
        position: static;
        border: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
        padding-left: 0px;
    }

    .navbar-dropdown.active .navbar-dropdown-menu {
        max-height: fit-content;
        background: #ffffff;
        border: 1px solid #00a0e3;
        margin-top: 6%;
    }

    .navbar-dropdown.active .navbar-arrow {
        transform: rotate(180deg);
    }

    .navbar-dropdown-toggle {
        cursor: pointer;
        display: block;
        align-items: center;
        gap: 6px;
        color: #fff;
        font-size: 22px;
        font-size: 16px;
        text-align: -webkit-center;
    }

    .navbar-dropdown-menu li a {
        display: block;
        padding: 0px;
        font-size: 15px;
    }

    .breadcumb-wrapper {
        background-size: 167px !important;
    }
}


.slider-small-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    font-family: "Anton", sans-serif;
    padding-left: 37%;
    width: 143%;
    color: #fff;
}



/* ----------------- ABOUT US SECTION STYLING ----------------- */




/* ====================================== DYNAMIC FOOTER ====================================== */

.dynamic-footer-main {
    color: #fff;
    background-size: cover !important;
    background-position: bottom !important;
    position: relative;
    padding: 20px 0px 0px 0px;
    background-color: var(--dark-blue);
    margin-bottom: -18%;
}

.footer-img {
    position: relative;

}

.footer-img img {
    width: 100vw;
}

.footer-title {
    background: var(--dark-blue);
    margin-bottom: 0px;
    color: #dadada;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
}

.widget-area {
    padding-top: 90px;
}

.footer-colour {
    color: var(--orange);
}

.dynamic-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: bottom;
    z-index: 0;
}

.dynamic-footer-main>* {
    position: relative;
    z-index: 1;
}

.dynamic-footer-widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: 2rem;
}

.dynamic-footer-main .widget_title {
    color: var(--orange);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    display: flex;
}

.dynamic-footer-main .widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--dark-blue), var(--orange));
}

.dynamic-footer-widget-about img {
    max-width: 180px;
    height: auto;
    background: #fff;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.dynamic-footer-widget-about .footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-top: 25px;
    flex-wrap: wrap;
}

.dynamic-footer-widget-about .footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dynamic-footer-widget-about .footer-social-icons a:hover {
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.4);
}

.dynamic-footer-widget-about .footer-social-icons a:nth-child(2):hover {
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.4);
}

.dynamic-footer-widget-about .footer-social-icons a:nth-child(3):hover {
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.4);
}

.dynamic-footer-widget-about .footer-social-icons a:nth-child(4):hover {
    box-shadow: 0 8px 25px rgba(0, 160, 227, 0.4);
}

.video-box {
    height: 100vh;
    text-align: right;
    margin-left: 15%;
}

.video-box video {
    height: 100%;
}

.about-us-para-media {
    padding-top: 17%;
}

@media (max-width: 768px) {
    .dynamic-footer-widget-about .footer-social-icons {
        gap: 12px;
        margin-bottom: 10%;
    }

    .dynamic-footer-widget-about .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


.dynamic-footer-widget-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.dynamic-footer-widget-nav .menu li {
    margin-bottom: 0.8rem;
}

.dynamic-footer-widget-nav .menu li a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-size: 1.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
    font-family: 'Roboto';
}

.dynamic-footer-widget-nav .menu li a:hover {
    color: #00a0e3;
    padding-left: 0.5rem;
}

.dynamic-footer-widget-nav .menu li a:hover::before {
    opacity: 1;
    left: 0;
}

.dynamic-footer-widget-contact .footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dynamic-footer-widget-contact .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.7rem;
    line-height: 1.6;
}

.dynamic-footer-widget-contact .footer-contact-item i {
    color: #00a0e3;
    font-size: 1.7rem;
    width: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dynamic-footer-widget-contact .footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto';
        font-size: 1.9rem;
}

.dynamic-footer-widget-contact .footer-contact-item a:hover {
    color: #ec691f;
}

.dynamic-footer-copyright-wrap {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.dynamic-footer-copyright-wrap .copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;

    margin: 0;
}

.dynamic-footer-copyright-wrap a {
    color: #00a0e3;
    text-decoration: none;
}

.dynamic-footer-copyright-wrap a:hover {
    color: #ec691f;
}


@media (min-width: 1400px) {
    .dynamic-footer-main .container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .dynamic-footer-main .container {
        max-width: 1140px;
    }

    /* 
    .dynamic-footer-widget-nav .menu {
        grid-template-columns: repeat(2, 1fr);
    } */
}


@media (min-width: 992px) and (max-width: 1199px) {
    .dynamic-footer-main .container {
        max-width: 960px;
    }

    .dynamic-footer-widget-about img {
        max-width: 160px;
    }

    .dynamic-footer-widget-nav .menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dynamic-footer-main .container {
        max-width: 720px;
    }



    .dynamic-footer-widget-contact,
    .dynamic-footer-widget-nav {
        text-align: center;
        margin-bottom: 2rem;
    }

    .dynamic-footer-widget-about {
        text-align: left;
    }

    .dynamic-footer-widget-nav .menu {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dynamic-footer-widget-nav .menu li {
        text-align: left;
    }

    .dynamic-footer-widget-contact .footer-text {
        font-size: 1rem;
    }


}

@media (min-width: 576px) and (max-width: 767px) {
    .dynamic-footer-main {
        padding: 3rem 1rem;
    }

    .dynamic-footer-main .container {
        padding: 0 1rem;
    }

    .dynamic-footer-widget {
        margin-bottom: 2.5rem;
    }

    .dynamic-footer-widget-nav .menu li {
        text-align: center;
    }

    .dynamic-footer-copyright-wrap {
        padding: 1.5rem 0;
    }
}

@media (max-width: 575px) {
    .dynamic-footer-main {
        padding: 2rem 1rem;
    }

    .dynamic-footer-main .container {
        padding: 0 0.75rem;
    }

    .dynamic-footer-widget-title {
        font-size: 1.2rem;
    }

    .dynamic-footer-widget-about img {
        max-width: 140px;
        margin-top: 9%;

    }

    .dynamic-footer-widget-contact .footer-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .dynamic-footer-widget-contact i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }

    .dynamic-footer-copyright-wrap {
        padding: 1.5rem 0;
        text-align: center;
    }

    .dynamic-footer-copyright-wrap .row {
        gap: 1rem;
    }

    .widget-area {
        padding-top: 0px;
    }
}

@media (max-width: 480px) {
    .dynamic-footer-main {
        padding: 1.5rem 0.5rem;
    }

    .dynamic-footer-widget-title {
        font-size: 1.1rem;
    }

    .dynamic-footer-widget-nav .menu li a {
        font-size: 1.9rem;
        display: block;
        padding: 0.5rem 0;
    }

    .dynamic-footer-widget-contact .footer-text {
        font-size: 0.85rem;
    }

    .dynamic-footer-copyright-wrap .copyright-text {
        font-size: 1rem;
    }

    .dynamic-footer-main .widget_title {
        font-size: 3rem;
        margin-top: 12%;
    }
}

@media (max-width: 360px) {
    .dynamic-footer-widget-about img {
        max-width: 120px;
    }

    .dynamic-footer-widget-nav .menu {
        gap: 1rem;
    }

    .dynamic-footer-widget-contact i {
        width: 18px;
    }
}

/* ================= ABOUT SECTION & SLIDER STYLES ================= */

.fix-padding {
    padding: 150px 0px 0px 0px;
    background-color: var(--dark-blue);
}

.slider-container {
    max-width: 90% !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    margin-top: 55%;
    margin-right: 15%;
}

.slider-hero {
    min-height: 100vh;
    position: relative;
}

.slider-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slider-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: -1;
}

.slider-text h1 {
    font-size: clamp(2.5rem, 7vw, 20rem);
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    font-family: "Anton", sans-serif;
    padding-left: 37%;
    width: 143%;
    font-weight: 400 !important;
}

.slider-text p {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 400;

}

.slider-text .btn {
    background: linear-gradient(135deg, #00a0e3, #ec691f);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(0, 160, 227, 0.4);
    transition: all 0.3s ease;
}

.slider-text .btn-primary {
    background: linear-gradient(135deg, #00a0e3, #ec691f);
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
}

.slider-text .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 160, 227, 0.6);
}

.bottle-container {
    height: 80vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
}

.animated-bottle {
    max-height: 80%;
    width: auto;
    transform-origin: center bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    will-change: transform;
}

.about-section {
    background-color: var(--dark-blue);
}

.about-bottle-placeholder {
    position: relative;
    height: auto;
    min-height: 400px;
    max-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.about-btn {
    border: 1px solid var(--blue) !important;
    color: var(--blue) !important;
    font-size: 17px !important;
    font-family: "Roboto", sans-serif;
    padding: 5px 20px !important;
}

.about-line-art {
    margin-top: -45%;
    opacity: 0.3;
    position: relative;
    height: 431px;
    margin-left: -24%;

}

.about-img {
    height: 500px;
    width: auto;
    float: right;
    justify-content: right;
    text-align: right;
    position: relative;
    margin-right: -40%;
    margin-top: 90%;
    z-index: 55;
}

#about-bottle-target .bottle-container {
    height: 80vh;
    min-height: 500px;
    position: relative;
    z-index: 100;
}

.about-bottle {
    border-radius: 20px;
    transition: transform 0.3s ease;

}

#bottle-final {
    position: absolute !important;
    bottom: 20px;
    right: 20px;
    max-height: 300px !important;
    max-width: 200px !important;
    transform-origin: center bottom;
    z-index: 5;
}

.about-bottle:hover {
    transform: scale(1.05) rotate(2deg);
}

.main-title {
    color: var(--gray) !important;
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 10rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.main-title span {
    color: var(--orange) !important;
}

.main-para {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    max-width: 700px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    color: var(--gray);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .slider-text {
        text-align: center;
        margin-bottom: 3rem;
    }

    .bottle-container {
        height: 400px;
        justify-content: center;
    }

    .slider-hero::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    }
}

@media (max-width: 768px) {
    .slider-hero {
        overflow: visible !important;
    }

    .bottle-container {
        height: 50vh !important;
        max-height: 300px !important;
        min-height: 250px;
        justify-content: center !important;
    }

    .img-fluid {
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-height: 70vh;
    }

    .animated-bottle {
        max-height: 75% !important;
        object-fit: contain;
    }

    .slider-text .btn {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 576px) {
    .slider-text h1 {
        font-size: 2.5rem;
    }

    .about-bottle {
        max-height: 350px;
    }
}



/* ------------- map section --------------- */

.map-section {
    text-align: center;
    z-index: 15;
    position: relative;
    background: var(--dark-blue);
}

.map-section img {
    width: 50%;
    transform-origin: left center;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-section img.door-closed {
    transform: scaleX(0) rotateY(-85deg);
    transform-origin: left center;
}

.map-section img.door-open {
    transform: scaleX(1) rotateY(0deg);
}


/* ===================== COUNTERS SECTION ===================== */

.counters-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00a0e3, #ec691f, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.section-title {
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #00a0e3, #ec691f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00a0e3, #ec691f);
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 160, 227, 0.4);
}

.counter-item {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    perspective: 1000px;
}

.dotted-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    z-index: 1;
}

.border-circle {
    width: 100%;
    height: 100%;
    stroke: url(#dottedGradient);
    stroke-dasharray: 10 10;
    stroke-linecap: round;
    filter: drop-shadow(0 0 20px rgba(0, 160, 227, 0.5));
    transform-origin: center;
}

.border-circle {
    stroke-dasharray: 534 534;
}

.counter-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transform: scale(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.counter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.counter-image.zoomed img {
    transform: scale(1.1);
}

.count {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 0 10px 30px rgba(0, 160, 227, 0.5);
    margin-bottom: 1rem;
    min-height: 4rem;
}

.label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= IMAGE SCROLL SECTION ================= */
.keyhole-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.keyhole {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: #ffffff;
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
    z-index: 1;
}

.arrow {
    position: absolute;
    top: calc(72.5vh - 50%);
    left: 50%;
    z-index: 2;
    animation: float 1s ease-in-out infinite alternate both;
}

.arrow svg {
    transform: rotate(90deg);
    stroke: #2d3436;
    width: 2rem;
    margin-left: -1rem;
    height: auto;
}


.section--primary figure {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    margin: 0 0 1em 0;
}

.section--primary figure img {
    width: 100%;
    object-fit: cover;
    min-height: 100vh;
}

.section--primary .section__content {
    padding-top: 0;
}

.section__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

@keyframes float {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(50%);
    }
}



/* ------------------ */

.key_facts_statistics {
    position: relative;
    overflow: hidden;
    padding: 85px 0 100px;
}

.slider_circle_bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.8s ease;
}

.key_fact_circle_wrap {
    position: relative;
    z-index: 9;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.key_fact_circle_wrap_inner {
    position: absolute;
    z-index: 9;
    width: 545px;
    height: 545px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.key_fact_circle_wrap_inner::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(125.86% 57.73% at 48.33% 50%, rgba(15, 53, 87, 0.55) 0%, rgba(15, 53, 87, 0.00) 100%), linear-gradient(0deg, rgba(15, 53, 87, 0.45) 0%, rgba(15, 53, 87, 0.45) 100%);
    background-blend-mode: multiply, normal, normal;
}

.key_fact_circle_wrap_inner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.4);
    transition: all 0.8s ease;
}

.circle_text_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle_progress_wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.circle_text_content ul {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 50%;
}

.circle_text_content ul li {
    position: absolute;
    cursor: pointer;
    transition: all 400ms ease-in-out;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.circle_text_content ul li.completed .mdot {
    background-color: orange;
}

.circle_text_content ul li.completed span {
    color: blue;
}

.inner_content_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    inset: 0;
}

.content_main_text {
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 100%;
    max-width: calc(100% - 100px);
}


.content_main_text h3 {
    margin-bottom: 10px;
    color: #fff;
}

.inner_content_wrap .numbers {
    color: orange;
    text-align: center;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ===================== SCROLL ANIMATED STATS CIRCLE ===================== */
.scroll-section {
    height: 200vh;
    /* enough scroll space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-wrapper {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
}

.center-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter {
    position: absolute;
    color: white;
    font-size: 28px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Progress ring */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 690;
    stroke-dashoffset: 690;
    transition: stroke-dashoffset 0.5s;
}

/* Text points */
.point {
    position: absolute;
    font-size: 14px;
}

/* Position around circle */
.p1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.p2 {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.p3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.p4 {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.center-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);

    opacity: 0;
    transition: all 0.5s ease;
}

.center-circle.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
}

.center-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counter {
    position: absolute;
    color: white;
    font-size: 28px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* ----------- WHY US -------------- */

.home-why-section {
    position: relative;
    height: 400vh;
    background: #f4f4f4;
    padding: 50px 0px;
}

.home-why-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.home-why-left {
    width: 350px;
    position: relative;
}

.home-why-content {
    position: relative;
    height: 200px;
}

.home-why-item {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.home-why-item.active {
    opacity: 1;
    transform: translateY(0);
}

.home-why-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid #ddd;
    overflow: hidden;
    position: relative;
}

.home-why-rotator {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-why-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home-why-image.active {
    opacity: 1;
}

.home-why-section {
    height: 100vh;
    background: #f4f4f4;
}

.home-why-container {
    position: sticky;
    top: 0;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.home-why-left {
    width: 350px;
    position: relative;
}

.home-why-content {
    position: relative;
    height: 200px;
}

.home-why-item {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.home-why-item.active {
    opacity: 1;
    transform: translateY(0);
}

.home-why-right {
    width: 350px;
    position: relative;
}

.home-why-circle-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
}

.home-why-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 10px;
}

.home-why-rotator {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-why-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: 0.4s ease;
}

.home-why-image.active {
    opacity: 1;
}

.home-why-numbers {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.home-why-number {
    position: absolute;
    font-weight: 700;
    font-size: 24px;
    font-family: 'Ubuntu', sans-serif;
    color: #666;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.home-why-number.active {
    color: #fff !important;
    font-size: 32px;
    background: linear-gradient(135deg, #ff5a1f, #ec691f) !important;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(255, 90, 31, 0.5);
    transform: scale(1.1);
}

.home-why-number:nth-child(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.home-why-number:nth-child(2) {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.home-why-number:nth-child(3) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.home-why-number:nth-child(4) {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.why-us-heading-box {
    text-align: center;
    margin-top: 6%;
}

.home-why-item h3 {
    color: #000000;
    font-weight: bold;
    font-family: 'Roboto Slab';
    font-size: 30px;
}

.home-why-item p {
    color: #515151;
    width: 86%;
    margin-top: 4%;
    font-size: 20px;
    line-height: 28px;
    font-family: math;
}

.why-us-box {
    margin-top: -7%;
}

.why-us-title {
    padding-top: 80px;
}

.new-why-us-section {
    max-width: 80%;
    margin: 0% auto 10% auto;
}

.new-why-us-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}

.new-why-us-content-box {
    text-align: center;
    border: 1px solid #fff;
}

.new-why-us-both-box {
    padding: 50px 20px;
    height: 214px;

}

.new-why-us-text-box {
    color: var(--gray);
    padding-top: 15px;
    font-family: 'Roboto';
}

.new-why-us-only-img-box img {
    height: 214px;
    width: 100%;
}

.new-why-us-content-box.new-why-us-empty-box {
    border: none;
}

.new-why-us-para-box {
    display: none;
}


.new-why-us-content-box:hover .new-why-us-para-box {
    display: block;
    color: #fff;
    position: absolute;
    font-size: 19px;
    width: 200px;
    transform: translate(2%, -7%);
    transition: 0.5s all ease-in-out;
    font-family: "Roboto", sans-serif;
}


.new-why-us-content-box:hover .new-why-us-img-box {
    display: none;
}


.new-why-us-content-box:hover .new-why-us-text-box {
    display: none;
}


/* ----------------- PROCESS ------------- */

.counter-img {
    width: 100vw;
    max-width: 90vw;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}


/* -------------- Why Choose Us --------------- */

.why-us-details {
    display: flex;
    justify-content: center;
    margin-bottom: 6%;
}

.why-us-content-box {
    background: var(--gray);
    border-radius: 50px;
    padding: 20px 30px;
    color: #000000;
    border: 2px dashed var(--orange);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: anchor-center;
    gap: 11px;
    justify-content: center;
    width: 27%;
}

.why-us-container {
    padding: 100px 0px 0px 0px;
}

.why-us-content-box h1 {
    font-family: 'Roboto';
    font-weight: 500;
    color: #c85600;
}

.wucb-1 {
    transform: rotate(5deg);
}

.wucb-2 {
    transform: rotate(-7deg);
}

.wucb-3 {
    transform: rotate(10deg);
}

.wucb-4 {
    transform: rotate(-5deg);
}

.wucb-5 {
    transform: rotate(8deg);
}

.wucb-6 {
    transform: rotate(-16deg);
}


/* --------------- COUNTER ---------------- */

.home-counter-section {
    background: var(--blue);
    padding: 50px 20px;
}

.home-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 40px;
    max-width: 90%;
    margin: auto;
}

.home-counter-item {
    position: relative;
    text-align: center;
}

.home-counter-number {
    font-size: 22rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
}

.home-counter-label {
    /* position: absolute;
    top: 54%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: var(--dark-blue);
    color: var(--orange);
    padding: 0px 20px;
    font-size: 33px;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-weight: bold;
    width: 100%; */
        position: absolute;
    top: 54%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: var(--dark-blue);
    color: var(--orange);
    /* padding: 0px 94px 0px 0px; */
    font-size: 33px;
    letter-spacing: 1px;
    font-weight: bold;
    width: 100%;
}

@media (max-width: 900px) {
    .home-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .home-counter-wrapper {
        grid-template-columns: 1fr;
    }

    .home-counter-number {
        font-size: 180px;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.dynamic-new-header-container {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100% !important;
    height: auto;
    background: #ffffff;
    color: #000000;
    z-index: 2147483647 !important;
    display: flex;
    align-items: center;
    padding: 11px;
    border-bottom: 1px solid var(--orange);
    transform: translateZ(0);
}

.dynamic-new-header-inner {
    width: 100%;
    max-width: 90%;

    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.dynamic-new-header-logo {
    font-size: 20px;
    font-weight: bold;
}

.dynamic-new-header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dynamic-new-header-nav a,
.dynamic-new-header-dropbtn {
    color: var(--dark-blue);
    margin-left: 20px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    font-family: "Ubuntu", sans-serif;
}

.dynamic-new-header-dropdown {
    position: relative;
}

.dynamic-new-header-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    display: none;
    border: 1px solid var(--dark-blue);
    border-radius: 10px;
    width: 189px;
    padding: 10px 0px;
}

.dynamic-new-header-dropdown-content a {
    display: block;
    padding: 5px 10px;
    text-align: center;
    margin-left: 0px !important;
}

.dynamic-new-header-dropdown:hover .dynamic-new-header-dropdown-content {
    display: block;
}

.dynamic-new-header-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.dynamic-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-blue), #00173d);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.dynamic-loader-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.dynamic-loader-image {
    position: absolute;
    width: clamp(300px, 40vw, 500px);
    height: clamp(450px, 60vw, 750px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

.dynamic-loader-image.zoom-in {
    opacity: 1;
    transform: scale(1.15);
}

.dynamic-loader-image.zoom-out {
    transform: scale(0.3);
    opacity: 0;
}

.dynamic-loader-image-1 {
    background-image: url('assets/images/slider/bottle.png');
}

.dynamic-loader-image-2 {
    background-image: url('assets/images/slider/bottle - Copy.png');
}

body.dynamic-loader-hidden {
    overflow: hidden;
    visibility: hidden;
}

@media (max-width: 768px) {
    .dynamic-loader-image {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .dynamic-loader-image {
        width: 250px;
        height: 375px;
    }
}

.dynamic-new-header-hamburger span {
    height: 3px;
    width: 25px;
    background: var(--dark-blue);
    margin: 4px 0;
}

/* ----- MOBILE MENU ---- */
.dynamic-new-header-mobile-menu {
    position: fixed;
    top: 70px;
    left: 28%;
    width: fit-content;
    height: fit-content;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 10000;
    text-align: center;
    width: 250px;
}

.dynamic-new-header-mobile-menu a,
.dynamic-new-header-mobile-menu button {
    padding: 10px 0;
    text-decoration: none;
    background: none;
    border: none;
    text-align: center;
    font-size: 20px;
    font-family: 'Ubuntu';
    color: var(--dark-blue);
}

.dynamic-new-header-mobile-dropdown-content {
    display: none;
    padding-left: 15px;
}

.dynamic-new-header-spacer {
    height: 70px;
}

.dynamic-new-header-mobile-menu a {
    display: block;
}

@media (max-width: 768px) {
    .dynamic-new-header-nav {
        display: none;
    }

    .dynamic-new-header-hamburger {
        display: flex;
    }
}

.animation-infinite {
    animation: ShapeAnim 80s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top left 2000px;
    }
}


@media(max-width:900px) {

    .fix-padding {
        padding: 70px 0px 0px 0px;
        background-color: var(--dark-blue);
    }

    .about-line-art {
        display: none;
    }


    .home-counter-wrapper {
        gap: 0px;
        justify-content: center;
    }
}

@media(max-width:800px) {
    .home-counter-number {
        font-size: 16rem;
    }

    .home-counter-section {
        padding: 0px;
    }

    .dynamic-footer-main .widget_title {
        text-align: left;
    }

    .dynamic-new-header-mobile-menu {
        left: 62%;
    }
}

@media(max-width:500px) {
    .logo-nav {
        height: 45px;
    }

    .slider-text h1 {
        padding-left: 0%;
        width: 100%;
        font-size: clamp(5rem, 7vw, 20rem);
    }

    .slider-small-title {
        padding-left: 0%;
        width: 100%;
        font-size: clamp(2rem, 7vw, 20rem);
    }

    .slider-text {
        text-align: center;
        margin-bottom: 3rem;
        justify-content: center;
        align-items: center;
        padding-top: 30%;
    }

    .slider-hero {
        overflow: visible !important;
    }

    .img-fluid {
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-height: 60vh;
        width: auto;
        height: auto;
    }

    .bottle-container {
        height: 40vh !important;
        max-height: 250px !important;
        min-height: 200px;
        margin-top: 0 !important;
        margin-left: 0 !important;
        justify-content: center !important;
        padding: 20px;
    }

    .bottle-margin {
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding: 10px;
    }

    .animated-bottle {
        max-height: 70% !important;
        width: auto !important;
        object-fit: contain;
    }

    .about-img {
        margin-top: 0%;
    }

    .about-img {
        height: auto;
        width: 100vw;
        margin-right: 0%;
    }

    .about-us-para-media {
        background: var(--dark-blue);
        z-index: 50;
    }


    .fix-padding {
        padding: 0px 0px 0px 0px;
        background-color: var(--dark-blue);
    }
}

@media(max-width:400px) {
    .footer-title {
        font-size: clamp(2.2rem, 7vw, 5rem);
    }

    .home-counter-number {
        font-size: 150px;
    }

    .home-counter-label {
        font-size: 26px;
    }
}

@media(max-width:1024px) {
    .dynamic-new-header-inner {

        max-width: 100%;
    }

    .dynamic-new-header-nav a,
    .dynamic-new-header-dropbtn {
        font-size: 19px;
    }

    .home-counter-number {
        font-size: 15rem;
    }

    .home-counter-label {
        font-size: 19px;
        width: 100%;
    }

    .dynamic-footer-widget-about .footer-social-icons {
        margin-bottom: 10%;
    }
}

@media(max-width:1300px) {
    .home-counter-number {
        font-size: 20rem;
    }
}

@media(max-width:1200px) {
    .dynamic-new-header-inner {
        max-width: 100%;
    }

    .home-counter-number {
        font-size: 15rem !important;
    }

    .home-counter-label {
        font-size: 20px !important;
        width: 100%;
    }

    .fix-padding {
        padding: 70px 0px 0px 0px;
    }

    .dynamic-footer-widget-about .footer-social-icons {
        margin-bottom: 7%;
    }

    .new-why-us-section {
        max-width: 92%;
    }

    .dynamic-new-header-nav a,
    .dynamic-new-header-dropbtn {
        font-size: 20px;
    }
}


/* =============== LOADER ===================== */

.new-dynamic-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 999999;
    transition: opacity 0.5s ease-out;
    background-color: var(--dark-blue);
}

.new-dynamic-loader-wrapper.fade-out {
    opacity: 0 !important;
}

.new-dynamic-loader-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.new-dynamic-loader-slide.active {
    opacity: 1;
}

.new-dynamic-loader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.loader-img-1,
.loader-img-2 {
    animation: none;
}

.new-dynamic-loader-slide.active .loader-img-1 {
    animation: new-dynamic-loader-zoom-2 3s ease-in-out forwards;
}

.new-dynamic-loader-slide.active .loader-img-2 {
    animation: new-dynamic-loader-zoom-2 4s ease-in-out forwards;
}

@keyframes new-dynamic-loader-zoom-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes new-dynamic-loader-zoom-2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.new-dynamic-loader-text {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    max-width: 80%;
}

.new-dynamic-loader-text h1 {
    font-family: "Anton", sans-serif;
    color: var(--gray);
    font-size: 7.5rem;
}

.new-dynamic-loader-text h1 span {
    color: var(--orange);
}

.new-dynamic-loader-text h2 {
    font-family: "Anton", sans-serif;
    color: var(--gray);
    font-size: clamp(4rem, 7vw, 3.5rem);
}

.new-dynamic-loader-text h2 span {
    color: var(--orange);
}


.clients-section {
    padding: 0px 0px 100px 0px;
}

.clients {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.clients-border>li {
    position: relative;
}

.clients li {
    height: 100px;
    margin: 0 35px;
    width: 185px;
    display: inline-block;
    cursor: pointer;
}

.clients>li img {
    filter: gray;
    position: relative;
    z-index: 9;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.clients li img {
    max-width: 90%;
    -webkit-transition: all .35s ease-in-out;
    -o-transition: .35s all ease-in-out;
    transition: all .35s ease-in-out;
}


.dynamic-clienttel-item:hover {
    transform: scale(1.1);
}


.dynamic-clienttel-track {
    width: max-content;
    animation: dynamic-clienttel-scroll 70s linear infinite;
}


@keyframes dynamic-clienttel-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-container {
    padding-top: 100px;
    /* padding-bottom: 50px; */
}


/* ---------------------------- PROCESS --------------------------- */

.home-new-process {
    padding: 100px 0px 150px;
}

.home-new-process-img {
    height: 400px;
}

.home-new-process-img img {
    height: 100%;
}


.row {
    justify-content: center;
    align-items: center;
}

.home-new-process-box {
    max-width: 80%;
    margin: 0 auto;
    padding: 70px 0px;
}

.border-bottomm {
    border-bottom: 1px solid #dee2e630 !important;
}

.home-new-process-text {
    text-align: left;
}

.home-new-process-text h1 {
    font-family: 'Ubuntu';
    color: #c85600;
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 3%;
}

.home-new-process-text p {
    color: #fff;
    font-family: 'Roboto';
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    hyphens: auto;
}

@media(max-width:1500px) {
    .clients-section {
        padding: 0px 0px 0px 0px;
    }

    .home-new-process {
        padding: 100px 0px 130px;
    }

    .video-box {
        margin-left: 0%;
    }
    .home-counter-number {
    font-size: 19rem;
    }

    .home-counter-label{
        font-size: 23px;
    }
}


@media(max-width:1200px) {
    .home-new-process-img {
        height: 250px;
    }

    .home-new-process-text h1 {
        font-size: 4rem;
    }

    .home-new-process-box {
        max-width: 94%;
    }

    .main-para {
        font-size: clamp(1.6rem, 2.5vw, 1.5rem);
    }

    .about-us-para-media {
        padding-top: 9%;
    }

    .video-box {
        margin-left: 0%;
    }

    .video-box video {
        height: 85%;
    }
}


@media(max-width:800px) {

    .col-md-6.about-us-para-media {
        width: 100%;
    }

    .col-md-6.about-us-para-media-video {
        width: 100%;
    }

    .appl1-hdvd-xx {
               width: 100vw;
        height: 100% !important;
        object-fit: cover;
        /* margin-left: -23%; */
    }

        .video-box video {
        margin-left: -20%;
    }

    .clients-section {
        padding: 0px 0px 1px 0px;
    }

    .clients-container {
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .home-new-process-box {
        max-width: 100%;
        padding: 50px 0px;
    }

    .home-new-process-box .row .col-md-6 {
        width: 90%;
    }

    .about-section-row {
        flex-direction: column-reverse;
    }

    .home-new-process-text h1 {
        font-size: 3rem;
    }

    .media-reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .new-dynamic-loader-text h1 {
        font-size: 5.5rem;
    }

}


@media(max-width:500px) {

    .new-dynamic-loader-text h1 {
        font-size: 3.5rem;
    }

    .clients-section {
        padding: 70px 0px 0px 0px;
    }

    .home-new-process-img {
        height: 200px;
        text-align: center;
    }

    .home-new-process-text h1 {
        font-size: 3rem;
        margin-bottom: 3%;
        margin-top: 11%;
    }

    .home-new-process-text p {
        text-align: justify;
    }

    .home-new-process-box {
        padding: 10px 0px;
    }

    .home-new-process {
        padding: 70px 0px 100px;
    }

    .dynamic-new-header-mobile-menu {
        left: 29%;
    }

    .why-us-container {
        padding: 10px 0px 0px 0px;
    }

    .clients-container {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .clients li img {
        max-width: 60%;
    }

    .clients li {
        margin: 0px;
    }

    .home-new-process-box {
        max-width: 94%;
    }
    .new-why-us-content-box:hover .new-why-us-para-box{
        width: 300px;
    }
        .map-video{
        width: 100vw;
        }
}

@media(max-width:400px) {

    .new-dynamic-loader-text h1 {
        font-size: 3.3rem;
    }
}