:root {
    /* --orange: #fd5d14; */
    /* --orange: #c04c00; */
    /* --orange: #ff6500; */
    /* --orange: #ef6f1d; before change */
    --orange: #C85600;
    --blue: #05409A;
    --dark-blue: #00173d;
    --gray: #f3f3f3;
    --black: #000;
    --newblue: #030f27;
    /* --newblue: #06326d; final*/
    --white: #fff;
    --lightblack: #303030;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    background: var(--newblue);
}

.row {
    align-items: center;
}

@font-face {
    font-family: 'australia_custom';
    font-style: normal;
    font-weight: normal;
    src: local('australia_custom'), url('../font/australia_custom/AustraliaCustom.woff2') format('woff2');
}



a {
    text-decoration: none !important;
}

a:focus {
    outline: thin dotted #333;
    outline: none;
    outline-offset: -2px;
}

#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: var(--orange);
}


.logo-nav {
    height: 70px;
}

.dynamic-new-header-mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    padding: 20px;
}

.dynamic-new-header-hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.dynamic-new-header-hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
}

.dynamic-new-header-mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

.dynamic-new-header-mobile-dropdown-content a {
    display: block;
    padding: 10px 0;
}

.mobileDropBtn {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 12px 0;
    cursor: pointer;
}

@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: var(--newblue);
    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: var(--orange);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    background: var(--orange);
}

@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 var(--dark-blue);
        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(--newblue);
    margin-bottom: -18%;
}

.footer-img {
    position: relative;

}

.footer-img img {
    width: 100vw;
}

.footer-title {
    background: var(--newblue);
    margin-bottom: 0px;
    color: #dadada;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    padding-top: 72px;
    z-index: 100000;
    position: relative;
}

.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(--newblue), 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: var(--orange);
    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: #ffffff;
    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: var(--orange);
}

.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: #ffffff;
    text-decoration: none;
}

.dynamic-footer-copyright-wrap a:hover {
    color: var(--orange);
}


@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(1, 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(--newblue);
}

.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(--newblue);
}

.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(--newblue) !important;
    color: var(--newblue) !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(--newblue);
}

/* .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;
    }
}


.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: var(--orange);
}

.circle_text_content ul li.completed span {
    color: var(--newblue);
}

.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: var(--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;
}


/* ---------- MAP ------------ */

.map-img-box {
    text-align: center;
    width: auto;
}

/* .map-box-new {
    margin-left: -15%;
} */

.map-img-box img {
    text-align: left;
    width: 100%;

}

.map-para-container .about-para {
    max-width: 99%;
}

.map-para-container {
    padding: 50px 100px;
}

@media(max-width:1400px) {
    .map-para-container {
        padding: 50px;
    }
}

@media(max-width:767px) {
    .map-para-container {
        padding: 0px 10px 50px 10px;
    }
}

/* -------------- 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 100px 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(--newblue);
    padding: 140px 20px !important;
}

.home-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 40px;
    max-width: 68%;
    margin: auto;
}

.home-counter-item {
    /* position: relative;
    text-align: center;
    border: 2px solid var(--orange);
        padding: 36px 20px;
            background: #001433; */
    position: relative;
    text-align: center;
    border: 2px solid var(--orange);
    padding: 36px 20px;
    background: #ffffff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.home-counter-number {
    /* font-size: 9rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9; */
    font-size: 7rem;
    font-weight: 700;
    color: var(--newblue);
    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(--newblue);
    color: var(--orange);
    /* padding: 0px 94px 0px 0px; */
    font-size: 33px;
    letter-spacing: 1px;
    font-weight: bold;
    width: 100%;
}

.home-counter-title {
    /* font-size: 2rem;
    font-weight: 500;
    font-family: 'Ubuntu';
    color: var(--gray); */
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Ubuntu';
    color: var(--orange);
}

@media (max-width: 900px) {
    .home-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .home-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-width: 94% !important;
        gap: 5px !important;
    }

    .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(--newblue);
    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(--newblue);
    border-radius: 0px;
    width: 500px;
    padding: 10px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dynamic-new-header-dropdown-content a {
    display: block;
    padding: 15px 15px 5px 30px;
    text-align: center;
    margin-left: 0px !important;
    text-align: left;
    /* border-bottom: 1px solid var(--orange); */
    font-size: 20px;
}

.dynamic-new-header-dropdown-content a:hover {
    color: var(--orange);
}

.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(--newblue), #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(--newblue);
    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; */
    position: fixed;
    top: 70px;
    left: 28%;
    width: fit-content;
    height: fit-content;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 50000000;
    text-align: center;
    width: 227px;
}

.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(--newblue);
}

.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(--newblue);
    }

    .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(--newblue);
        z-index: 50;
    }


    .fix-padding {
        padding: 0px 0px 0px 0px;
        background-color: var(--newblue);
    }

    .dynamic-new-header-mobile-menu {
        left: 32%;
    }
}

@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;
    position: relative;
    z-index: 20;
    overflow: hidden;
    z-index: 999999;
    transition: opacity 0.5s ease-out;
    /* background-color: #000; */
}

.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 {
    height: 100vh;
    width: 100vw;
    object-fit: contain;
}

.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.05);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes new-dynamic-loader-zoom-2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



.new-dynamic-loader-text {
    position: absolute;
    left: 5%;
    top: 20%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    max-width: 80%;
}

.new-dynamic-loader-text {

    top: 100%;
}

.new-dynamic-loader-text h1 {
    font-family: "Anton", sans-serif;
    color: #fff;
    /* color: var(--newblue); */
    font-size: 7.5rem;
    margin-top: -16%;
}

.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);
}

.dynamic-title {
    color: #ffffff;
    font-family: 'Ubuntu';
    /* color: #fff; */
    font-size: 54px;
    /* background: #010d1b; */
    margin-bottom: 0%;
    text-align: right;
    margin-top: -17%;
    max-width: 50%;
    margin-left: 44%;
}

.dynamic-title-2 {
    text-align: left;
    margin-top: -40%;
    margin-left: 5%;
}

.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: 300px;
}

.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: 20px 0px;
}

.border-bottomm {
    border-bottom: 1px solid #72727230 !important;
}

.home-new-process-text {
    text-align: left;
}

.home-new-process-text h1 {
    font-family: 'Ubuntu';
    color: var(--orange);
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 3%;
}

.home-new-process-text p {
    color: var(--black);
    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;
    }

    .new-dynamic-loader-text h1 {
        font-size: 5rem;
    }
}


@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%;
    }

    .new-dynamic-loader-text h1 {
        font-size: 5rem;
    }
}


@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;
    }

    .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: 3.5rem;
        margin-top: 5%;
    }

    .fix-container {
        padding: 7% 5%;
    }

}

@media(max-width:900px) {
    .new-dynamic-loader-text h1 {
        font-size: 2.5rem;
        margin-top: 3%;
    }
}

@media(max-width:500px) {


    .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: 100px 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: 2.3rem;
    }
} */


@media(max-width:1500px) {


    .new-dynamic-loader-text h1 {
        font-size: 5rem;
    }

    .dynamic-title {
        font-size: 5rem;
    }
}


@media(max-width:1200px) {

    .new-dynamic-loader-text h1 {
        font-size: 5rem;
    }

    .dynamic-title {
        font-size: 5rem;
    }
}

@media(max-width:900px) {
    .new-dynamic-loader-text h1 {
        font-size: 2.5rem;
        margin-top: 3%;
    }

    .dynamic-title {
        font-size: 2.5rem;
    }
}

@media(max-width:400px) {

    .new-dynamic-loader-text h1 {
        font-size: 2.3rem;
    }

    .dynamic-title {
        font-size: 2.3rem;
    }
}

/* ============================= NEW SECTIONS STYLING ======================== */

/* ------------ COMMON STYLING ------------- */


.fix-container {
    padding: 7% 7%;
}


.about-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(--lightblack);
}


.section-title {
    color: var(--orange) !important;
    /* color: var(--newblue) !important; */
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
}


/* -------------------- KEY POINTS CONTAINER -------------------- */

.key-points-container {
    background: rgb(1, 10, 27);
    padding: 0.5%;
    margin: 6% 9% 1% 9%;
    border-radius: 5px;
    border: 5px solid #010a1b;
    /* padding: 2px; */
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 25px 15px;
}

.key-pointer-box-container {
    border: 2px solid #c3c3c35e;
    /* border: 2px solid #c3c3c3; */
    border-radius: 20px;
    padding: 3%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 25px 15px;
    border-radius: 5px;
}

.key-points-title h1 {
    color: var(--white);
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 10rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.key-points-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--gray);
    padding: 20px;
}

.new-blue-bottom {
    margin-top: 5%;
}

.key-points-details-box h3 {
    color: var(--newblue);
    font-family: 'Ubuntu';
    font-size: 3.2rem;
}

.key-points-details-box p {
    color: var(--black);
    font-family: 'Roboto';
    font-size: 1.5rem;
}


/* --------------- ABOUT BOX ------------- */

.about-img-box {
    position: relative;
    display: inline-block;
    height: 100%;
    padding-right: 116px;
    padding-bottom: 50px;
}

.about-img-box .about-img-1 {
    position: relative;
    z-index: 1;
    padding-right: 45px;

}

.about-img-box .about-img-1 img {

    height: 500px;
}

.about-img-box .about-img-1::after {
    content: "";
    position: absolute;
    height: 150px;
    width: 15px;
    background: var(--newblue);
    z-index: -1;
    right: 0;
    top: 0;
    border-radius: 0px;
    animation: aboutlinejump 7s linear infinite;
}

@keyframes aboutlinejump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(60px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-img-lines {
    /* position: absolute;
    display: inline-block;
    background: var(--orange);
    right: 0;
    bottom: 0;
    border: 4px solid var(--white);
    z-index: 1;
    padding: 40px;
    animation: jumpAni 7s linear infinite;
    max-width: 50%; */
    position: absolute;
    display: inline-block;
    background: var(--newblue);
    right: 25%;
    bottom: -18%;
    border: 4px solid var(--white);
    z-index: 1;
    padding: 24px;
    animation: jumpAni 7s linear infinite;
    max-width: 50%;
    text-align: center;
}

@keyframes jumpAni {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-img-lines h1 {
    color: var(--white);
    font-family: 'Ubuntu';
    font-weight: bold;
    font-size: 8rem;
}

.about-img-lines p {
    color: var(--white);
    font-family: 'Ubuntu';
    font-weight: 700;
    font-size: 2rem;
}


.about-pointer {
    margin-top: 5%;

}

.about-pointer-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-pointer-img-box {
    background: var(--gray);
    padding: 15px;
}

.about-pointer-text-box h1 {
    font-family: 'Ubuntu';
    font-size: 2.7rem;
    color: var(--orange);
    /* color: var(--newblue); */
}

.about-pointer-text-box p {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    color: var(--lightblack);
}

.home-founder-img img {
    height: 500px;
}

.home-founder-container {
    text-align: center;
}

.quote-img {
    position: relative;
    justify-content: right;
    text-align: right;
    /* display: flex; */
    height: 214px;
    margin-left: 59.2%;
    /* transform: rotate(14deg); */
    margin-bottom: -7%;
    z-index: -2;
}

.home-founder-top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* gap: 80px; */
}

.home-founder-para {
    max-width: 44%;
    background: #030f27;
    padding: 50px 100px 30px 150px;
    height: 100%;
    /* border-radius: 100px 0px 0px 100px; */
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    margin-left: -4%;
    position: relative;
    z-index: -1;
    /* border: 2px solid var(--newblue); */
    border-right: none;
    border-bottom: none;
    padding: 0px;
    position: relative;
    width: 100%;
    text-align: center;
    /* margin-bottom: -1%; */
    padding: 50px 100px 30px 100px;
    border-radius: 69px;
}

/* 
.home-founder-para {
    max-width: 51%;
    padding: 50px 100px 30px 150px;
    height: 100%;
    margin-left: -8%;
    position: relative;
    z-index: -1;
    border-right: none;
    border-bottom: none;
    padding: 0px;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: -1%;
} */


.home-founder-para img {
    width: 106px;
    height: auto;
    position: absolute;
    left: 90%;
    top: -11%;
}

/* .centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 72%;
} */

.centered-text .section-title {
    font-size: 61px;
}

.home-founder-para h6 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.home-founder-para h3 {
    text-align: center;
    font-size: 19px;
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 18px;
    padding-top: 20px;
    line-height: 28px;

}

.home-founder-para p {
    text-align: center;
    font-size: 23px;
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
    /* padding-top: 15px; */
    text-align: right;
    margin-bottom: 0px;
}

.home-founder-flex img {
    height: 300px;
    /* animation: rotate 7s linear infinite; */
    animation: rotate 50s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.home-clients-section {
    max-width: 82%;
    margin: 0 auto;
    box-shadow: 0px 0px 25px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    padding: 50px;
}

.home-clients-box {
    width: 150px;
    height: 100px;
}

.home-clients-section {
    max-width: 82%;
    margin: 0 auto;
    box-shadow: 0px 0px 25px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 30px;
}

.home-clients-track {
    display: flex;
    gap: 77px;
    width: max-content;
    animation: home-clients-slide 40s linear infinite;
}

@keyframes home-clients-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.home-clients-box {
    flex: 0 0 150px;
}

.home-clients-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ------------------ COUNTER ------------------ */

/* 
.cta-box {
    padding: 5%;
}

.cta-details-box {
    width: fit-content;
    margin-left: 20%;
    background: var(--gray);
    padding: 50px;
    max-width: 37%;
    margin-top: 2%;
}

.cta-details-box h1 {
    font-family: 'Ubuntu';
    color: var(--orange);
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 3%;
}

.cta-details-box p {
    color: var(--black);
    font-size: 2rem;
}

.cta-btn p {
    text-decoration: none;
    background: #001433;
    color: var(--white);
    font-size: 2rem;
    margin-top: 6%;
    font-family: 'Ubuntu';
    padding: 5px 15px;
    width: fit-content;
    border: 1px solid var(--newblue);
}

.cta-btn:hover p {
    background: var(--orange);
    color: var(--white);
} */


/* --------------------- WHY US SECTION STYLING ---------------- */

.why-us-top {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: baseline;
}

.wud-content-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--newblue);
    width: fit-content;
    padding: 24px;
    max-width: 91%;
}

.wud-icon-box {
    border: 1px solid #dddddd;
    padding: 14px;
    border-radius: 2px;
}

.why-us-details-box {
    padding: 5% 5% 0% 10%;
}

.wud-details-box h1 {
    font-family: 'Ubuntu';
    color: var(--white);
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 3%;
}

.wud-details-box p {
    font-size: 1.7rem;
    color: var(--white);
}


.wud-content-box-bottom {
    margin-top: 30%;
}

.wud-center-img img {
    height: 370px;
}

.wud-content-box-1 {
    animation: whyusjump1 3s linear infinite;
}

.wud-content-box-bottom {
    animation: whyusjump2 4s linear infinite;
}

.wud-content-box-right {
    animation: whyusjump2 4s linear infinite;
}

@keyframes whyusjump1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes whyusjump2 {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes whyusjump4 {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(30px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wud-center-img img {
    height: 600px;
}

.wud-center-img {
    text-align: center;
}

/* ===================== NEW MEDIA QUERY ================= */
@media(max-width:2700px) {
    .home-counter-section {
        padding: 350px;
    }
}

@media(max-width:1600px) {
    .home-clients-section {
        max-width: 100%;
    }

    .fix-container {
        padding: 7% 3%;
    }

    .about-img-box .about-img-1 img {
        height: 400px;
    }

    .about-img-lines h1 {
        font-size: 7rem;
    }

    .home-counter-wrapper {
        max-width: 90%
    }

    .home-counter-number {
        font-size: 8rem;
    }

    .cta-details-box {
        max-width: 44%;
    }

    .cta-box {
        padding: 7%;
    }

    .why-us-details-box {
        padding: 5% 2%;
    }

    .why-us-container {
        padding: 100px 0px 0px 0px;
    }

    .key-points-container {
        padding: 0.5%;
        margin: 6% 3% 1% 3%;
    }

    .key-points-title h1 {
        font-size: clamp(4rem, 7vw, 8rem);
    }

    .key-points-details-box h3 {
        font-size: 2rem;
    }

    .wud-details-box h1 {
        font-size: 2.5rem;
    }

    .wud-details-box p {
        font-size: 1.5rem;
    }
}

@media(max-width:1200px) {
    .key-points-container {
        padding: 1.5%;
        margin: 6% 1% 1% 1%;
    }

    .home-founder-img img {
        height: auto;
        width: 350px;
    }

    .home-founder-para h6 {
        font-size: 3.5rem;
    }

    .home-founder-para p {
        font-size: 2rem;
    }

    .home-clients-section {
        max-width: 100%;
    }

    .home-founder-flex img {
        height: 246px;
    }

    .fix-container {
        padding: 7% 1%;
    }

    .about-img-box .about-img-1 img {
        height: 350px;
    }

    .about-img-lines h1 {
        font-size: 5rem;
    }

    .about-img-lines p {
        font-size: 1.5rem;
    }

    .about-img-lines {
        position: absolute;
        right: 36%;
        padding: 13px;
    }

    .about-img-box .about-img-1::after {
        height: 100px;
        width: 5px;
        right: 5%;
    }

    .about-para {
        font-size: clamp(1.7rem, 2.5vw, 1.7rem) !important;
    }

    .section-title {
        font-size: clamp(4rem, 5.2vw, 10rem);
    }

    .about-pointer-text-box h1 {
        font-size: 2.5rem;
    }

    .about-pointer-text-box p {
        font-size: 1.5rem;
    }

    .home-counter-number {
        font-size: 7rem !important;
    }

    .home-counter-wrapper {
        max-width: 90%;
    }

    .home-counter-item {
        padding: 13px 9px;
    }

    .section-title {
        font-size: clamp(4rem, 5.7vw, 10rem);
    }

    .cta-details-box {
        padding: 32px;
        max-width: 53%;
    }

    .cta-box {
        padding: 13% 0%;
    }

    .why-us-details-box .row {
        flex-direction: column;
    }

    .why-us-details-box .row .col-md-4 {
        width: 100%;
    }

    .wud-content-box-bottom {
        margin-top: 5%;
    }

    .why-us-details-box {
        padding: 5% 0% 5% 20%;
    }

    .wud-center-img {
        text-align: center;
        margin-left: -25%;
        padding: 50px;
    }

    .home-new-process {
        padding: 100px 0px 100px;
    }

}

@media(max-width:800px) {
    .key-points-container {
        padding: 2% 2%;
    }

    .key-points-box {
        gap: 14px;
        padding: 14px;
        margin-top: 2%;
    }

    .key-points-details-box h3 {
        font-size: 3rem;
    }

    .key-points-details-box p {
        font-size: 1.3rem;
    }

    .key-points-icon-box img {
        height: 51px;
    }

    .home-founder-img img {
        height: auto;
        width: 283px;
        margin-top: 10%;
    }

    .home-founder-para h6 {
        font-size: 2.5rem;
    }

    .home-founder-para p {
        font-size: 1.2rem;
    }

    .home-clients-section {
        max-width: 100%;
    }

    .home-clients-box {
        flex: 0 0 100px;
    }

    .home-clients-section {
        padding: 20px;
    }

    .home-founder-flex img {
        height: 150px;
    }

    .about-box .row {
        display: block;
        margin-left: 10%;
    }

    .about-img-lines {
        padding: 4px;
    }

    .about-img-lines h1 {
        font-size: 4rem;
    }

    .about-img-lines p {
        font-size: 1.5rem;
    }

    .about-img-lines {
        right: 34%;
        bottom: -5%;
        max-width: 41%;
    }

    .about-box .col-md-6 {
        width: 90%;
    }

    .home-counter-wrapper {
        max-width: 90%;
        gap: 9px;
    }

    .home-counter-number {
        font-size: 6rem !important;
    }

    .cta-details-box {
        max-width: 90%;
        padding: 30px;
        margin-left: 0%;
    }

    .cta-box {
        padding: 14%;
    }

    .home-new-process {
        padding: 100px 0px 30px;
    }

    .why-us-details-box .row {
        flex-direction: column;
    }

    .why-us-details-box .row .col-md-4 {
        width: 100%;
    }

    .wud-content-box-bottom {
        margin-top: 7%;
    }

    .wud-center-img img {
        padding: 30px;
    }

    .why-us-container {
        padding: 100px 0px 50px 0px;
    }

    .why-us-details-box {
        padding: 5% 0% 5% 14%;
    }

}

@media(max-width:950px) {

    .about-img-box .about-img-1 img {
        height: 268px;
    }
}


@media(max-width:400px) {
    .cta-details-box {
        width: fit-content;
        padding: 32px;
        max-width: 100%;
        margin-top: 29%;
        margin-left: 0%;
    }

    .cta-box {
        height: 527px;
        padding: 5%;
    }

    .home-counter-number {
        font-size: 6rem !important;
    }

    .home-counter-item {
        margin-bottom: 4%;
        padding: 9px 16px;
    }

    .about-pointer-box {
        display: block;
    }

    .about-pointer-img-box {
        background: var(--gray);
        padding: 15px;
        width: fit-content;
        margin-bottom: 5%;
    }

    .about-img-box .about-img-1 img {
        height: 194px;
    }

    .about-img-lines {
        right: 29%;
        bottom: -13%;
        padding: 14px;
        margin-bottom: 7%;
    }

    .about-img-lines h1 {
        font-size: 2rem;
    }

    .about-img-lines p {
        color: var(--white);
        font-family: 'Ubuntu';
        font-weight: 700;
        font-size: 1rem;
    }

    .about-img-box .about-img-1::after {
        content: "";
        position: absolute;
        height: 50px;
        width: 7px;
        background: var(--orange);
        z-index: -1;
        right: 6%;
        top: 0;
        border-radius: 0px;
        animation: aboutlinejump 7s linear infinite;
    }

    .home-clients-box {
        flex: 0 0 70px;
    }

    .home-clients-section {
        max-width: 100%;
        padding: 24px;
    }

    .home-founder-top {
        flex-direction: column-reverse;
    }

    .home-founder-para {
        max-width: 90%;
    }

    .wud-content-box {
        max-width: 100%;
    }

    .wud-details-box p {
        font-size: 1.5rem;
    }

    .why-us-details-box {
        padding: 5% 3%;
    }

    .wud-center-img img {
        width: 100vw;
        height: auto;
        padding: 23px;
    }

    .wud-content-box-bottom {
        margin-top: 12%;
    }

    .home-counter-section {
        padding: 140px 10px;
    }

    .home-founder-img img {
        height: auto;
        width: 100vw;
    }

    .home-founder-para h6 {
        font-size: 3rem;
    }

    .key-points-container {
        padding: 2%;
    }

    .key-points-box {
        margin-top: 5%;
    }

    .cta-details-box h1 {
        font-size: 3.5rem;
    }

    .cta-details-box p {
        font-size: 1.7rem;
    }

    .wud-details-box h1 {
        font-size: 2rem;
    }

    .wud-details-box p {
        font-size: 1rem;
    }

    .wud-content-box {
        gap: 23px;
    }

    .wud-center-img img {
        height: auto !important;
        margin-left: 10%;
    }
}

@media(max-width:500px) {
    .key-points-details-box h3 {
        font-size: 2rem !important;
    }

    .home-founder-img img {
        height: auto;
        width: 400px;
        margin-top: 14%;
    }

    .home-founder-top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-direction: column-reverse;
    }

    .home-founder-para {
        max-width: 96%;
    }

    .about-img-lines {
        right: 39%;
        bottom: -5%;
        max-width: 53%;
    }

    .cta-details-box h1 {
        font-size: 3.5rem;
    }

    .cta-details-box p {
        font-size: 1.5rem;
    }

    .wud-center-img img {
        height: 531px;
    }

    .home-counter-number {
        font-size: 4rem !important;
    }

    .home-counter-title {
        font-size: 1.7rem;
    }
}

@media(max-width :1200px) {
    .new-dynamic-loader-wrapper {
        height: 900px;
    }

    .new-dynamic-loader-img {
        height: 612px;
    }
}

@media(max-width:900px) {
    .new-dynamic-loader-img {
        height: 502px;
    }
}

@media(max-width :768px) {
    .new-dynamic-loader-wrapper {
        height: 532px;
    }

    .new-dynamic-loader-img {
        height: 434px;
    }
}

@media(max-width :500px) {
    .new-dynamic-loader-wrapper {
        height: 437px;
    }

    .new-dynamic-loader-img {
        height: 358px;
    }

    .new-dynamic-loader-text h1 {
        font-size: 2rem;
        margin-top: 3%;
    }

    .dynamic-title {
        font-size: 2rem;
    }
}

@media(max-width:400px) {
    .new-dynamic-loader-wrapper {
        height: 378px;
    }

    .new-dynamic-loader-img {
        height: 304px;
    }
}

@media(max-width:800px) {
    .home-founder-img img {
        height: auto;
        width: 213px;
        margin-top: 32%;
    }

    .home-founder-para h6 {
        font-size: 2rem;
    }

    .home-founder-top {
        gap: 0px;
    }
}


/* ------------- Process Section Designs ------------ */

.home-product-section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0 5%;
    box-sizing: border-box;
    overflow: visible;
}

.home-product-left {
    width: 40%;
    position: sticky;
    top: 0;
    height: fit-content;
    padding-top: 80px;
}

.home-product-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.home-product-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
}

.home-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #eaeaea;
    padding: 10px 50px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.home-product-content {
    width: 50%;
}

.home-product-content h3 {
    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(--lightblack);
}

.home-product-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #515151;
    width: 86%;
    margin-top: 4%;
    line-height: 28px;
    font-family: math;
    text-align: justify;
}

.home-product-image {
    width: 50%;
    height: 340px;
}

.home-product-image img {
    /* width: 100%; */
    height: 100%;
    display: block;
    border-radius: 12px;
    float: right;
}

.home-product-right {
    -ms-overflow-style: none;

    scrollbar-width: none;

    &::-webkit-scrollbar {
        display: none;
    }
}

.wheel {
    -webkit-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
    margin-top: 10%;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#wheel {
    text-align: center;
    height: 350px;
    padding-top: 20px;
    margin-left: -109%;
    opacity: 0.4;
}


/* =============== sustainability ====================== */

.sustainability-three {
    margin-top: 30%;
}

.sustainability-two {
    margin-top: 90%;
}

.sustainability-one {
    margin-top: 120%;
}

.sustainability-one::before {
    content: "";
    color: #000000;
    width: 393px;
    height: 100%;
    background-image: url(../images/home/sustainability-bg-line.png);
    position: absolute;
    top: 11%;
    left: 61%;
    /* background-color: #000; */
    transform: rotate(20deg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.sustainability-two::before {
    content: "";
    color: #000000;
    width: 393px;
    height: 100%;
    background-image: url(../images/home/sustainability-bg-line.png);
    position: absolute;
    top: 0%;
    left: 61%;
    /* background-color: #000; */
    transform: rotate(20deg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.sustainability-three::before {
    content: "";
    color: #000000;
    width: 393px;
    height: 100%;
    background-image: url(../images/home/sustainability-bg-line.png);
    position: absolute;
    top: -19%;
    left: 61%;
    /* background-color: #000; */
    transform: rotate(20deg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.sustainability-img-box {
    height: 225px;
}

.sustainability-img-box img {
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: #f1f1f1;
    height: 100%;
}

.sustainability-process-box {

    margin: 0 auto !important;
    text-align: center;
    margin-top: -15% !important;
}

.sustainability-content-box h1 {
    font-size: 25px;
    font-weight: 500;
    font-family: 'Ubuntu';
    color: var(--orange);
    text-align: center;
    padding-top: 20px;
}

.sustainability-content-box p {
    font-size: 16px;
}

.sustainability-box {
    padding: 7% 5%;
}

.sustainability-title-box p {
    font-size: 18px;
    max-width: 60%;
    padding: 5px 0px 20px;
}

.story-details-box {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: var(--lightblack);
    text-align: justify;
    hyphens: auto;
}

.solutions-para {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: var(--lightblack);
    text-align: justify;
    hyphens: auto;
    padding-left: 50px;
    padding-right: 48px;
}

.story-content-para {
    width: 100vw;
    height: auto;
    padding: 50px 50px 200px;
}

@media(max-width:1500px) {

    .sustainability-content-box h1 {
        font-size: 20px;
    }

    .sustainability-content-box p {
        font-size: 13px;
    }

    .sustainability-box {
        padding: 7% 2%;
    }
}

@media(max-width:1200px) {
    .sustainability-img-box {
        height: 200px;
    }

    .sustainability-one::before {
        top: 9%;
        left: 54%;
    }

    .sustainability-two::before {
        top: 0%;
        left: 54%;
    }

    .sustainability-three::before {
        top: -15%;
        left: 54%;
    }
}

@media(max-width:1000px) {
    .sustainability-img-box {
        height: 170px;
    }

    .sustainability-content-box h1 {
        font-size: 17px;
    }

    .sustainability-content-box p {
        font-size: 10px;
    }

    .sustainability-one::before {
        top: 18%;
        left: 54%;
        width: 200px;
    }


    .sustainability-two::before {
        top: 11%;
        left: 54%;
        width: 150px;
    }

    .sustainability-three::before {
        top: 1%;
        left: 54%;
        width: 200px;
    }

    .sustainability-title-box p {
        font-size: 14px;
    }
}

@media(max-width:767px) {
    .sustainability-one::before {
        display: none;
    }

    .sustainability-two::before {
        display: none;
    }

    .sustainability-three::before {
        display: none;
    }

    .sustainability-one {
        margin-top: 22%;
    }

    .sustainability-two {
        margin-top: 11%;
    }

    .sustainability-three {
        margin-top: 11%;
    }

    .sustainability-title-box p {
        max-width: 100%;
    }
}


/* ======================= ABOUT US PAGE STYLING ==================== */

.all-page-header {
    width: 100vw;
    margin-top: 90px;
    background: #020c1b;
}

.all-page-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    /* gap: 50px; */
    max-width: 80%;
    margin: 0 auto;
}

.all-page-header-content-box h1 {
    color: #fff;
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.all-page-header-img-box {
    width: 600px;
    height: auto;
}

.all-page-header-img-box img {
    width: auto;
    height: 433px;
}

.all-page-header-img-box video {
    width: auto;
    height: 490px;
}


@media(max-width:1500px) {
    .all-page-header-content-box h1 {
        font-size: clamp(4rem, 7vw, 6rem);
    }

    .all-page-header-img-box {
        width: 400px;
    }

    .all-page-header-img-box video {
        width: 450px;
        height: auto;
    }
}


@media(max-width:1100px) {
    .all-page-header-content-box h1 {
        font-size: clamp(4rem, 7vw, 3rem);
    }

    .all-page-header-box {
        max-width: 86%;
    }

    .all-page-header-img-box {
        width: 350px;
    }

    .all-page-header-img-box video {
        width: 230px;
        height: auto;
    }

}

@media(max-width:767px) {
    .all-page-header-content-box h1 {
        font-size: 20px;
    }

    .all-page-header-img-box {
        width: 250px;
    }

    .all-page-header-img-box video {
        width: 170px;
        height: auto;
    }

    /* .all-page-header {
        margin-top: 69px;
    } */
}


@media(max-width:400px) {
    /* .all-page-header {
        margin-top: 67px;
    } */

    .all-page-header-content-box h1 {
        font-size: 19px;
    }

    .all-page-header-img-box {
        width: 150px;
    }

    .all-page-header-box {
        max-width: 90%;
    }
}

/* ----------- About -------------- */

.about-page-about-box {
    padding: 70px 150px;
}

.about-page-about-img-container {
    display: flex;
    gap: 20px;
}

.about-page-about-img-container {
    width: 650px;
    height: 600px;
    border-radius: 20px;
}

.about-page-about-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    height: 100%;
    border: 4px solid #dddddd;
    padding: 5px;
    object-fit: cover;
    box-shadow: rgb(0 0 0 / 11%) 0px 3px 8px;
}

.about-page-about-img-container-2 {
    margin-top: 12%;
}

.about-page-left-bottle-img {
    display: block;
    margin-left: auto;
    margin-right: 0;
    height: 300px;
    opacity: 0.6;
    margin-top: -10%;

}

.about-bottom-line-art {
    text-align: right;
    align-items: revert;
    position: relative;
    /* margin-left: 51%; */
    opacity: 0.2;
    margin-top: -5%;
    /* height: 223px; */
    width: 100vw;
}

.about-page-about-img-container::after {
    content: "";
    position: absolute;
    height: 192px;
    width: 9px;
    background: var(--newblue);
    z-index: -1;
    left: 13%;
    top: 89%;
    transform: rotate(45deg);
    border-radius: 0px;
    /* animation: aboutlinejump 7s linear infinite !important; */
    transform: rotate(90deg) !important;
}

/* ====================== VM SECTION ================ */

.vm-details-lr {
    display: flex;
    align-items: center;
}


.vm-img-box {
    height: 300px;
    width: 400px;
}


.vm-img-box img {
    height: 100%;
    width: 100%;
    align-items: center;
    border-radius: 50%;
    background: #030f27;
    position: relative;
    object-fit: cover;
    border: 3px solid #f3f3f3;
    padding: 22px;
}

.vm-content-box {
    background: #f3f3f3;
    padding: 50px 50px 50px 140px;
    margin-left: -100px;
    width: 100%;
}

.vm-text-box h1 {
    font-family: 'Ubuntu';
    font-size: 4rem;
    color: var(--orange);
}

.vm-text-box p {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: var(--lightblack);
}

.vm-content-box.vm-content-box-2 {
    margin-right: -100px;
    padding-right: 100px;
}

.vm-container {
    padding: 7% 0px;
    background: #010d1d;
    /* margin: 5% 0%; */
}


/* ========== Story =============== */

.stroy-box-container {
    padding: 20px 0px 50px 0px;
}

.story-details-box {
    text-align: center;
    /* padding-bottom: 70px; */
}

.story-img-box {
    width: 300px;
    height: 300px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0 100%);
}

.story-img-box img {
    width: 100%;
    height: 100%;
}

.story-text-box {
    padding-top: 30px;
    text-align: center;
    height: 100%;
}

.story-text-box h1 {
    font-family: 'Ubuntu';
    font-size: 4rem;
    color: var(--orange);
}

.story-text-box p {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: var(--lightblack);
    hyphens: auto;
}

.story-text-left {
    text-align: left;
}

.story-text-right {
    text-align: right;
}

/* =============== SOLUTIONS SECTION =============== */

.solutions-container {
    padding: 5% 0%;
    background: #f3f3f3;
}

.solutions-text-box {
    padding: 0px 0px 50px 0px;
    height: 350px;
}

.solution-count-box {
    /* position: relative;
    margin-bottom: -8%;
    font-weight: 900;
    font-size: 66px;
    font-family: 'Ubuntu';
    color: #000000;
    padding-left: 20px; */
    position: relative;
    margin-bottom: -8%;
    font-weight: 900;
    font-size: 47px;
    font-family: 'Ubuntu';
    color: #ffffff;
    margin-left: 20px;
    background: #000000;
    width: fit-content;
    padding: 10px 10px;
    border-radius: 50%;
    border: 2px solid #ef6f1d;
    font-style: italic;
}

.solutions-text-box h1 {
    font-family: 'Ubuntu';
    font-size: 2.5rem;
    color: var(--dark-blue);
    padding-bottom: 10px;
    position: relative;
    top: 84%;
    background: #000;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
}

.solutions-text-box p {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    color: var(--lightblack);
    text-align: justify;
    hyphens: auto;
}


/* ============= NEW VM ================= */

.new-vm-box {
    background-color: #020c1b;
    padding: 20px 0px 50px 0px;
}

.new-vm-container {
    max-width: 80%;
    margin: 0 auto;
}

.new-vm-img-box {
    height: 300px;
    text-align: center;
}

.new-vm-img-box img {
    height: 100%;
    padding: 35px;
}

.new-vm-img-text h1 {
    text-align: center;
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 52px;
    padding-bottom: 15px;
}

.new-vm-img-text p {
    text-align: center;
    color: #fff !important;
    font-size: 17px;
    max-width: 75%;
    margin: 0 auto;
}

@media(max-width:1300px) {
    .new-vm-container {
        max-width: 100%;
    }
}

@media(max-width:400px) {
    .new-vm-img-box {
        height: 235px;
        text-align: center;
    }

    .new-vm-container {
        max-width: 100%;
    }
}

/* ============== SOLUTIONS ================= */

.new-solutions {
    background: #f3f3f3;
    max-width: 87%;
    margin: 0 auto;
    margin-bottom: 4%;
    border-radius: 6px;
}

.solutions-details-box {
    text-align: center;
    padding-bottom: 30px;
}

.solution-count {
    font-size: 59px;
    font-weight: bold;
    margin-bottom: -5%;
    margin-left: 21px;
    position: relative;
}

.new-solution-details-box {
    border-left: 2px solid #e1e1e1;
    padding: 70px 20px 30px 30px;
    border-top: 2px solid #e1e1e1;
    box-shadow: 0px 0px 25px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 274px;
}

.new-solutions-text-box h1 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 1rem;
}

.new-solutions-text-box p {
    font-size: 17px;
}

.solution-count {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: -9%;
    margin-left: 23px;
    position: relative;
    box-shadow: 0px 0px 25px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--newblue);
    padding-bottom: 0px;
}

.new-solutions-box {
    max-width: 91%;
    margin: 0 auto;
    padding: 4% 0%;
}


/* ==================== ABOUT US PAGE MEDIA QUERY ======================= */

@media(max-width:1600px) {
    .about-page-about-box {
        padding: 70px 70px;
    }

    .about-page-about-img-container {
        width: 550px;
        height: 500px;
    }

    .new-solutions {
        max-width: 92%;
    }
}

@media(max-width:1300px) {
    .about-page-about-box {
        padding: 50px 50px;
    }

    .about-page-about-img-container {
        width: 450px;
        height: 400px;
    }

    .new-solutions-text-box h1 {
        font-size: 30px;
    }

    .new-solution-details-box {
        height: 353px;
    }
}

@media(max-width:1000px) {
    .about-page-about-box {
        padding: 40px 40px;
    }

    .about-page-about-img-container {
        width: 350px;
        height: 300px;
    }

    .about-page-about-img-container::after {
        content: "";
        position: absolute;
        height: 105px;
        width: 2px;
        background: var(--orange);
        z-index: -1;
        left: 15%;
        top: 89%;
        transform: rotate(45deg);
        border-radius: 0px;
        /* animation: aboutlinejump 7s linear infinite !important; */
        transform: rotate(90deg) !important;
    }

    .about-page-about-text-container {
        margin-top: 14%;
    }

    .new-solution-details-box {
        height: 360px;
        padding: 30px 10px;
    }
}

@media(max-width:767px) {
    .about-page-about-img-container {
        margin: 0 auto;
    }

    .about-page-about-img-container::after {
        display: none;
    }

    .about-page-about-box {
        padding: 20px 20px;
    }

    .new-solution-details-box {
        margin-bottom: 28px;

    }

    .new-solution-details-box {
        height: auto;
        padding: 82px 20px 20px 20px;
    }

    .new-solutions-text-box h1 {
        font-size: 25px;
    }
}

@media(max-width:500px) {
    .about-page-about-img-container {
        gap: 10px;
    }

    .about-page-about-img-container {
        width: 288px;
        height: 266px;
    }

}



/* ================ SUSTAINABILITY PAGE DESIGN ================= */

.sus-bottom-counter-box {
    padding: 0% 0% 5% 0%;
}

.sus-top-box {
    padding: 5% 0% 0%;
}

.sus-container {
    max-width: 85%;
    margin: 0 auto;
}

.sus-left-para {
    max-width: 75%;
}

.sus-left-para h1 {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: 21px;
    margin-bottom: 2rem;
    max-width: 700px;
    font-weight: 400;
    line-height: 29px;
    padding-right: 32px;
    text-align: justify;
    hyphens: auto;
}

.sus-left-para p {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    max-width: 700px;
    font-weight: 400;
    color: var(--lightblack);
}

.sus-top-points {
    border-bottom: 5px solid var(--orange);
    margin-right: 35px;
    background: #dfdfdf4a;
    padding: 25px;
}

.sus-top-img {
    height: 190px;
    margin-left: 3%;
    position: relative;
}

.sus-top-img img {
    opacity: 0.2;
    height: 100%;
}

.sus-bottom-img {
    height: 300px;
    margin-left: 89%;
    position: relative;
    margin-top: -8%;
}

.sus-bottom-img img {
    opacity: 0.3;
    height: 100%;
    /* transform: rotate(19deg); */
}

.sus-top-text-box h3 {
    font-family: 'Ubuntu';
    font-size: 2.7rem;
    color: var(--orange);
    padding-top: 20px;
}

.sus-top-text-box p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    max-width: 700px;
    font-weight: 400;
    color: var(--lightblack);
    padding-right: 32px;
}

.sus-left-text-box-container {
    margin-right: -7%;
}

.sus-center-img-cntainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
}

.sus-images-text-box {
    height: 650px;
    position: relative;
    top: 52%;
    padding: 50px;
}

.sus-images-text-box h3 {
    color: #fff;
    font-family: 'Ubuntu';
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 2rem;
}

.sus-images-text-box p {
    font-family: "Roboto", sans-serif;
    hyphens: auto;
    color: #fff;
    font-size: 15px;
}

.sus-counter-left-top-box {
    background: var(--orange);
}

.sus-couter-number {
    color: #fff;
    font-weight: bold;
    font-size: 83px;
    font-family: 'Ubuntu';
}

.sus-couter-text {
    font-family: "Roboto", sans-serif;
    hyphens: auto;
    color: #fff;
    font-size: 15px;
}

.left-center-img {
    height: 150px;
    width: auto;

}

.left-center-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sus-margin-top {
    margin-top: 10%;
}

.sus-counter-left-bottom-box {
    background: var(--newblue);
}

.sus-counter-count-box {
    padding: 50px 20px 30px 20px;
}

.center-center-img {
    height: 600px;
    width: auto;
}

.center-center-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sus-counter-center-bottom-box {
    background: #000;
}

.sus-counter-bottom-top-box {
    background: #000;
}

.sus-counter-bottom-bottom-box {
    background: #000;
}

.bottom-center-img {
    height: 300px;
}

.bottom-center-img img {
    height: 100%;
}

.sus-counter-right-top-box {
    background: var(--newblue);
}

.sus-counter-right-bottom-box {
    background: var(--orange);
}

.left-top-div {
    margin-top: 85%;
}

.sus-counter-left-img img {
    height: 700px;
}

@media(max-width:1550px) {
    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .sus-couter-number {
        font-size: 64px;
    }
}

@media(max-width:1340px) {
    .sus-images-text-box {
        padding: 20px;
    }

    .sus-images-text-box h3 {
        font-size: 36px;
    }

    .sus-images-text-box p {
        font-size: 14px;
    }

    .sus-images-text-box {
        height: 570px;
    }

    .sus-images-text-box p {
        font-size: 13px;
    }

    .sus-images-text-box h3 {
        font-size: 41px;
    }

    .sus-images-text-box {
        padding: 27px;
    }

    .sus-counter-left-img {
        width: 400px;
    }

    .sus-couter-number {
        font-size: 57px;
    }

    .sus-counter-count-box {
        padding: 40px 20px 10px 20px;
    }
}

@media(max-width:1200px) {
    .sus-container {
        max-width: 94%;
    }

    .sus-left-para h1 {
        font-size: 15px;
    }

    .sus-top-points {
        margin-right: 15px;
    }

    .sus-top-points {
        padding: 20px 10px 20px 20px;
    }

    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .sus-counter-left-img img {
        width: 350px;
        height: auto;
    }
}


@media(max-width:1000px) {
    .sus-bottom-img {
        height: 190px;
    }

    .sus-left-para h1 {
        font-size: 15px;
    }

    .sus-left-text-box-container {
        margin-right: -11%;
    }

    .sus-top-text-box p {
        font-size: 13px;
        padding-right: 0px;
    }

    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .sus-couter-number {
        font-size: 46px;
    }

    .sus-counter-count-box {
        padding: 40px 20px 20px 20px;
    }

}


@media(max-width:1101px) {

    .sus-counter-img-box {
        width: 112%;
    }
}

@media(max-width:1142px) {
    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(381px, 1fr));
    }
}

@media(max-width:1030px) {
    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(354px, 1fr));
    }

    .sus-couter-text {
        text-align: center;
        font-size: 13px;
    }

    .sus-couter-number {
        text-align: center;
        font-size: 40px;
    }

    .sus-counter-count-box {
        padding: 40px 10px 10px 10px;
    }
}

@media(max-width:767px) {
    .sus-top-points {
        padding: 20px 10px 20px 20px;
        margin-bottom: 6%;
    }

    .sus-left-para {
        max-width: 100%;
    }

    .sus-counter-left-img img {
        width: 100vw;
        height: 600px;
        object-fit: contain;
    }

    .left-top-div {
        margin-top: 0%;
    }

    .sus-counter-img-box {
        padding: 20px;
    }

    .center-center-img {
        margin: 3% 0%;
    }

    .sus-counter-img-box {
        width: 100%;
    }

    .sus-margin-top {
        margin-top: 3%;
    }
}

@media(max-width:400px) {
    .sus-center-img-cntainer {
        grid-template-columns: repeat(auto-fit, minmax(100vw, 1fr));
    }

    .sus-images-text-box {
        padding: 10px;
    }

    .sus-images-text-box p {
        font-size: 13px;
    }

    .sus-images-text-box h3 {
        font-size: 37px;
    }

    .sus-images-text-box {
        height: 500px;
    }

    .sus-bottom-img {
        margin-left: 72%;
    }
}


/* ================== QUALITY STANDARDS =============== */


.qp-box {
    padding: 100px 200px;
}

.quality-process-section {
    padding: 100px 0px 20px 0px;
    /* background: #f5f5f5; */
    /* margin: 50px 0px; */
    border-radius: 20px;
}

.quality-process-container {
    max-width: 100%;
    margin: auto;
    position: relative;
}

.about-two_text {
    max-width: 100%;
    padding-top: 0px;
}

.quality-process-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    z-index: 0;
}

.quality-process-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.quality-process-row>div {
    width: 31%;
    background: #f5f5f5;
    padding: 30px 20px 30px 50px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--orange);
}

.quality-process-row>div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    font-weight: bold;
    font-size: 23px;
    font-family: 'Ubuntu';
}

.process-icon {
    font-size: 40px;
    color: var(--newblue);
    margin-bottom: 15px;
    margin-top: 20px;
    text-align: left;
    background: #ffffff;
    width: fit-content;
    padding: 5px 10px;

}

.quality-process-row h4 {
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    padding: 20px 0px 0px 0px;
    text-align: left;
    color: var(--orange);
    font-family: "Roboto", sans-serif;
}

.quality-process-row p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    color: var(--newblue);
    font-family: "Roboto", sans-serif;
}

/* 
.arrow-right::after {
    color: var(--orange);
    content: '\2192';
    font-size: 49px;
    position: absolute;
    left: 100%;
    top: 50%;
    font-weight: bold;
    transform: translateY(-50%);
    font-family: fantasy;
}

.arrow-down::after {
    color: var(--orange);
    content: '↓';
    font-size: 49px;
    position: absolute;
    left: 50%;
    top: 94%;
    transform: translateX(-50%);
    font-family: fantasy;
}

.arrow-left::after {
    color: var(--orange);
    content: '←';
    font-size: 49px;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-family: fantasy;
} */

.sec-title_two-heading {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 2rem;
    padding: 30px 0px 20px 0px;
}

.qcp-details-box h6 {
    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(--lightblack);
    padding-bottom: 20px;
}

.qcp-details-box ul {
    list-style-type: disclosure-closed;
    margin-left: 24px;
}

.qcp-details-box ul li {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    max-width: 700px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    color: var(--lightblack);
    padding-bottom: 11px;
}

.quality-image-box {
    width: fit-content;
    padding: 40px;
}

.quality-image-box img {
    width: 100%;
    border: 1px solid #e2e2e2;
    /* padding: 6px; */
    border-radius: 20px;
}

.qq-bottom-box {
    padding-top: 60px;
}

.qq-pointer-box {
    border: 1px solid rgb(239, 111, 29);
    padding: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: left;
    border-radius: 7px;
    flex-direction: column;
    align-items: flex-start;
    height: 275px;
}

.qq-pointer-text-box h1 {
    font-family: 'Ubuntu';
    font-size: 32px;
    color: #ef6f1d;
}

.qq-pointer-text-box p {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    padding-top: 11px;
}

.qq-pointer-img-box img {
    background: #f5f5f5;
    padding: 10px;
}

.qq-bottom-pointer .row {
    padding-top: 50px;
}

@media(max-width:1700px) {
    .qp-box {
        padding: 100px 150px;
    }
}

@media(max-width:1600px) {
    .qp-box {
        padding: 100px 30px;
    }
}

@media(max-width:1500px) {
    .qp-box {
        padding: 100px 50px;
    }

    /* 
    .arrow-right::after {
        font-size: 40px;
    }

    .arrow-down::after {
        font-size: 40px;
    }

    .arrow-left::after {
        font-size: 40px;
    } */

}

@media(max-width:1400px) {
    .qq-pointer-box {
        height: 324px;
    }
}

@media(max-width:1200px) {
    .quality-process-row>div {
        padding: 30px 10px 20px 20px;
    }

    /* .arrow-right::after {
        font-size: 33px;
    }

    .arrow-down::after {
        font-size: 40px;
    }

    .arrow-left::after {
        font-size: 33px;
    } */
}


@media(max-width:1024px) {
    .process-icon {
        padding: 10px;
    }

    .about-two_text {
        padding-top: 0px;
    }

    .sec-title_two-heading {
        padding: 10px 0px 20px 0px;
        font-size: 30px;
    }
}

@media(max-width:984px) {

    /* .arrow-right::after {
        display: none;
    }

    .arrow-down::after {
        display: none;
    }

    .arrow-left::after {
        display: none;
    } */
    .qq-pointer-box {
        height: 377px;
    }

    .qq-pointer-text-box h1 {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .quality-process-row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .quality-process-row>div {
        width: 80%;
        margin-bottom: 40px;
    }

    .quality-process-container::before {
        display: none;
    }
}

@media(max-width:767px) {
    .qp-box {
        padding: 50px 20px;
    }

    .quality-process-section {
        padding: 50px 0px 0px 0px;
    }

    .quality-process-row>div {
        width: 90%;
    }

    .qcp-details-box ul li {
        font-size: 15px;
    }

    .qcp-details-box ul {
        margin-left: 10px;
    }

    .qq-pointer-box {
        height: auto;
        margin-bottom: 10px;
    }
}

/* ============= CONTACT US PAGE DESIGN IDEAS =========== */


.contact-container {
    padding: 150px 0px 30px 0px;
}

.contact-us-box {
    max-width: 80%;
    margin: 0 auto;
}

.contact-details-info {
    display: flex;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
}

.contact-details-box {
    border: 1px solid var(--newblue);
    border-radius: 5px;
    background: linear-gradient(0deg, rgb(97 155 182 / 19%) 0% 0%, rgb(97 155 182 / 0%) 100%);
    width: 100%;
    text-align: center;
    margin: 10px 0px;
    padding: 50px 10px;
}

.icon-box img {
    height: 89px;
    margin-bottom: 21px;
    background: var(--newblue);
    /* background: #619bb6; */
    padding: 20px;
    border-radius: 7px;
}

.icon-box {
    padding-bottom: 20px;
}

.info-box {
    font-family: var(--para-font);
    font-size: 18px;
    font-weight: 500;
}

.form2 {
    /* background: #f4f8fa; */
    border: 1px solid rgb(239 111 29 / 30%);
    border-radius: 6px;
    padding: 50px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
    margin: 50px;
}

.form2 .messages {
    min-height: 20px;
}

.form2 .form-group {
    width: 100%;
}

.form2 input,
.form2 select,
.form2 textarea {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    border: 1px solid rgb(3 15 39 / 39%);
    background: #dbdbdb29;
    padding: 0 16px;
    font-family: var(--para-font);
    color: #222;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 15px;
    margin-top: 10px;
}

.form2 textarea {
    height: auto;
    padding: 14px 16px;
}

.form2 input:focus,
.form2 select:focus,
.form2 textarea:focus {
    outline: none;
    border-color: var(--newblue);
    box-shadow: 0 0 0 4px rgb(241 246 249);
}

.form2 select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--newblue)50%),
        linear-gradient(135deg, var(--newblue) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.lable {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 21px;
    margin-bottom: 22px;
}

.butn {
    /* border: 1px solid var(--newblue) !important; */
    /* background: #ababab1c !important; */
    /* color: var(--newblue) !important; */
    /* border-radius: 30px !important; */
    /* padding: 14px 26px !important; */
    /* font-family: var(--sub-title-font); */
    /* font-size: 23px; */
    /* transition: 0.25s ease; */
    /* width: 100%; */
    /* font-weight: 600; */
    /* font-family: var(--banner-font); */
    text-decoration: none;
    background: #001433;
    color: var(--white);
    font-size: 2rem;
    /* margin-top: 6%; */
    /* font-weight: bold; */
    font-family: 'Ubuntu';
    padding: 5px 15px;
    width: fit-content;
    border: 1px solid var(--newblue);
}

.butn:hover {
    background: var(--orange) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.contact-form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    border: 1px solid;
}

.contact-form-message.success {
    color: #0d6efd;
}

.contact-form-message.error {
    color: #dc3545;
}

.form2 h1 {
    font-family: var(--banner-font);
    font-size: 37px;
    font-weight: 600;
    color: var(--newblue);
    padding-bottom: 15px;
    padding-top: 29px;
}

.contact-details-container {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
}


.contact-icon-details {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 20px;
    border: 1px solid #cfcfcf;
    margin-bottom: 19px;
    border-radius: 4px;
}

.contact-icon-box {
    background: var(--newblue);
    border-radius: 10px;
}

.contact-icon-box img {
    height: 60px;
    padding: 12px;
}

.contact-icon-text h2 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 27px;
}

.contact-icon-text:hover a {
    color: var(--orange) !important;
}

.contact-icon-text a {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: 21px;
}

@media(max-width:1600px) {
    .contact-us-box {
        max-width: 90%;
    }

    .info-box {
        font-size: 16px;
    }
}

@media(max-width:1300px) {
    .info-box {
        font-size: 15px;
    }
}

@media(max-width:1300px) {
    .contact-details-info {
        grid-template-columns: repeat(auto-fit, minmax(193px, 1fr));
    }

    .icon-box img {
        height: 72px;
    }

    .form2 {
        padding: 40px;
        margin: 30px 30px 0px 30px;
    }

    .contact-us-box {
        max-width: 97%;
    }

    .form2 {
        padding: 40px;
        margin: 30px 0px 0px 30px;
    }
}


@media(max-width:1030px) {
    .contact-details-box {
        margin: 10px 0px;
        padding: 30px 10px;
    }

    .form2 h1 {
        font-size: 30px;
    }
}

@media(max-width:800px) {
    .contact-us-box .row {
        flex-direction: column;
    }

    .contact-us-box .row .col-md-5 {
        width: 100%;
    }

    .contact-us-box .row .col-md-7 {
        width: 100%;
    }

    .form2 {
        padding: 40px;
        margin: 0px;
    }

    .form2 h1 {
        font-size: 31px;
        font-weight: 600;
        padding-bottom: 15px;
        padding-top: 20px;
    }

    .form2 {
        padding: 16px;
    }
}


/* ============= SOLUTION PAGE DESIGN IDEAS =============== */

.solutions-box-container {
    padding: 100px 0px 70px;
}

.solution-details-img-box {
    width: 500px;
    height: 500px;
    margin-left: 50px;
}

.solution-box {
    max-width: 70%;
    margin: 0 auto;
}

.solution-details-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    text-align: center;
    /* border-radius: 50%; */
    box-shadow: rgb(239 111 29 / 41%) 0px 50px 36px -41px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border: 7px solid #fff;
}

.solution-details-text-box h1 {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 2rem;
}

.pointer-details-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 14px;
    background: #030f27;
    border-radius: 14px;
    box-shadow: rgb(100 100 111 / 8%) 0px 7px 29px 0px;
    border: 1px solid #d9d9d9;
}

.solution-pointer-icon-box {
    border-radius: 50%;
}

.solution-pointer-icon-box img {
    padding: 14px;
    height: 70px;
}

.solution-pointer-text-box h2 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    color: #fff;
}


.solution-details-text-box h3 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 2rem;
    border-bottom: 1px solid;
    width: fit-content;
}

.solution-box-bottom {
    margin: 100px auto;

}

.solution-box-bottom .solution-details-img-box {
    margin-left: 20px;
}


.solution-top-img-box .solution-top-img-1 {
    width: 100vw;
}


.solution-top-img-box .line {
    width: 100vw;
}

.solution-top-para-box {
    margin: 0 auto;
    padding: 50px 250px 100px;
}

.solution-top-text h1 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 47px;
    font-weight: 900;
    margin-bottom: 2rem;
}

.solution-top-text p {
    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(--lightblack);
    max-width: 90%;
}

.solution-top-pointers {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
    background: #f3f3f3;
    box-shadow: rgb(100 100 111 / 8%) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 10px;
}

.solution-top-pointer-details p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    max-width: 700px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    color: var(--lightblack);
    hyphens: auto;
}

.solution-top-pointer-details h1 {
    color: var(--newblue) !important;
    font-family: 'Ubuntu';
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.solution-top-bg-title {
    position: relative;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.solution-top-img-box {
    height: 100vh;
    object-fit: contain;
    text-align: center;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100vw;
    /* margin-left: -10px; */
    margin-top: -5px;
    background-size: cover;
}

.solution-top-bg-title h1 {
    color: #fff !important;
    font-family: 'Ubuntu';
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
}

.solution-top-bg-title p {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    font-weight: 400;
    /* hyphens: auto; */
    max-width: 50%;
    margin: 0 auto;
}

@media(max-width:1800px) {
    .solution-box {
        max-width: 84%;
    }
}

@media(max-width:1600px) {
    .solution-top-para-box {
        margin: 0 auto;
        padding: 10px 100px 70px;
    }

    .solution-box {
        max-width: 85%;
    }

    .solution-details-img-box {
        width: 450px;
        height: 450px;
    }

    .solution-details-text-box h1 {
        font-size: 37px;
    }
}


@media(max-width:1300px) {
    .solution-details-img-box {
        width: 400px;
        height: 400px;
    }
}

@media(max-width:1200px) {
    .solution-top-para-box {
        margin: 0 auto;
        padding: 50px 50px 100px;
    }

    .solution-top-pointer-details h1 {
        font-size: 25px;
    }

    .solution-top-pointer-details p {
        font-size: 14px;
    }

    .solution-top-pointers {
        gap: 20px;
    }

    .solution-box {
        max-width: 94%;
    }

    .solution-details-img-box {
        width: 400px;
        height: 400px;
    }

    .solutions-box-container {
        padding: 100px 0px 0px;
    }

    .pointer-details-container {
        padding: 5px;
    }

    .solution-top-bg-title p {
        max-width: 80%;
    }

    .solution-top-bg-title h1 {
        font-size: 61px;
    }
}

@media(max-width:1000px) {
    .solution-details-img-box {
        width: 350px;
        height: 350px;
    }

    .solution-details-text-box h1 {
        font-size: 31px;
    }

    .pointer-details-container {
        margin: 8px 0px;
        gap: 0px;
    }

    .solution-details-text-box h3 {
        font-size: 20px;
    }

    .solution-pointer-text-box h2 {
        font-size: 15px;
    }

    .solution-top-text p {
        font-size: 17px;
    }
}

@media(max-width:900px) {
    .solutions-box-container {
        padding: 50px 0px 0px;
    }

    .solution-top-img-box .solution-top-img-1 {
        height: 350px;
    }

    .solution-top-text h1 {
        font-size: 40px;
    }

    .solution-top-pointers {
        gap: 15px;
    }

    .solution-box-bottom .solution-details-img-box {
        margin-left: 18px;
    }

    .solution-details-img-box {
        width: 300px;
        height: 300px;
    }

    .solution-top-bg-title p {
        max-width: 82%;
        font-size: 17px;
    }

    .solution-top-bg-title h1 {
        font-size: 50px;
    }

}

@media(max-width:767px) {
    .solution-top-img-box .solution-top-img-1 {
        height: 250px;
    }

    .solution-top-text p {
        max-width: 100%;
        margin-bottom: 25px;
        font-size: 16px;
    }

    .solution-top-para-box {
        padding: 50px 20px 70px;
    }

    .solution-top-pointer-details h1 {
        font-size: 22px;
    }

    .solution-top-pointer-details p {
        font-size: 13px;
    }

    .solution-top-text h1 {
        font-size: 31px;
    }

    .solution-details-img-box {
        margin: 0 auto 70px auto;
        width: 400px;
        height: 400px;
    }

    .solution-pointer .row .col-md-6 {
        width: 50%;
    }

    .solution-box-bottom .solution-details-img-box {
        margin-left: auto;
        margin: 70px auto 0px auto;
    }

    /* .solution-box-bottom .row {
        flex-direction: column-reverse;
    } */

    .solution-top-img-box {
        background-position: bottom;
    }

    .story-content-para {
        width: 100vw;
        height: auto;
        padding: 0px 0px 70px;
    }

    .contact-icon-text a {
        color: var(--newblue) !important;
        font-family: 'Ubuntu';
        font-size: 17px;
    }

    .contact-icon-details {
        gap: 20px;
    }

    .contact-container {
        padding: 50px 0px 30px 0px;
    }
}

@media(max-width:400px) {
    .solution-details-img-box {
        margin: 0 auto 70px auto;
        width: 300px;
        height: 300px;
    }

    .solution-details-text-box h1 {
        font-size: 26px;
    }

    .solution-details-text-box h3 {
        font-size: 16px;
    }

    .solution-pointer .row .col-md-6 {
        width: 100%;
    }

    .solution-box-bottom .row {
        flex-direction: column-reverse;
    }

    .solution-box-bottom .solution-details-img-box {
        margin: 0px auto 70px auto;
    }

    .solution-top-bg-title p {
        max-width: 95%;
        font-size: 12px;
    }

    .solution-top-bg-title h1 {
        font-size: 35px;
    }

    .solution-top-img-box {
        height: 450px;
        background-position: bottom;
    }
}


/* ========== Home - Solutions ==============  */

.home-solution-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 40px;
    margin: auto;
    padding: 0px 100px;
}

.h-solution-text-box {
    background: #fff;
    padding: 20px;
    border: 2px solid var(--orange);
}



.hs-img-box {
    height: 300px;
    width: 100%;
    padding-bottom: 23px;
}

.hs-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hs-text-box {
    color: #fff;
    text-align: center;
}

.hs-text-box h6 {
    color: var(--newblue);
    font-family: 'Ubuntu';
    font-size: 17px;
}

.hs-text-box h2 {
    color: var(--orange);
    padding: 7px 0px;
    font-size: 32px;
    font-family: 'Ubuntu';
    font-weight: bold;
}

.hs-text-box p {
    color: #000;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
}

.home-solution-container {
    padding: 50px 0px 0px 0px;
    /* margin-bottom: 100px; */
    background-color: var(--newblue);
}

@media(max-width:1700px) {
    .home-solution-details {
        gap: 20px;
        padding: 50px 60px;
    }
}

@media(max-width:1400px) {
    .home-solution-details {
        gap: 20px;
        padding: 50px 20px;
    }
}

@media(max-width:1300px) {
    .hs-text-box p {
        font-size: 15px;
    }

    .h-solution-text-box {
        padding: 12px;
    }
}

@media(max-width:1250px) {
    .hs-img-box {
        height: 250px;
    }

    .hs-text-box h6 {
        font-size: 15px;
    }
}


@media(max-width:900px) {
    .home-solution-details {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:600px) {
    .home-solution-details {
        grid-template-columns: repeat(1, 1fr);
    }

    /* 
    .home-solution-container {
        margin-bottom: 50px;
    } */

}

/* ------------------- TEstimonial - home ------------------ */

.testimonials-wrap {
    padding: 40px 0;
}

.heading-section {
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: var(--newblue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 28px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 15px;
}

.testimonial-box {
    display: block;
    position: relative;
    padding: 43px 20px;
    background: var(--newblue);
    border: 1px solid var(--orange);
    border-radius: 5px;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 250px;
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

.quote {
    position: absolute;
    top: -23px;
    color: var(--newblue);
    font-size: 27px;
}

.name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}

.position {
    color: #adadad;
    font-size: 14px;
}

.carousel-testimonial .owl-nav {
    text-align: center;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
    padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
    outline: none;
    padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
    display: block;
    font-size: 40px;
    width: 25px;
    height: 25px;
    vertical-align: 0px;
    line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}

.testimonial-box p {
    color: #fff;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.testimonial-box h5 {
    color: var(--orange);
    font-size: 26px;
    font-family: Ubuntu;
    padding-bottom: 16px;
}

.quote i {
    color: var(--orange);
}

.owl-nav {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 30px;
}

.owl-prev {
    font-size: 27px;
    color: #ef6f1d;
}

.owl-next {
    font-size: 27px;
    color: #ef6f1d;
}

.owl-nav i {
    font-weight: bold;
    font-size: 40px;
}

.testi-padding {
    padding: 50px 0px;
}

@media(max-width:990px) {
    .testimonial-box {
        flex-direction: column;
    }
}

@media(max-width:600px) {
    .testi-padding {
        padding: 0px 0px;
    }
}

/* -------------- Solution-new-styling ------------ */

.solution-main-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
    align-items: center;
    gap: 70px;
    padding: 50px 0px 150px;
}

.solution-main-image-box {
    width: 100%;
    height: 700px;
}

.solution-main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.main-points-title {
    background: #efefef;
    padding: 30px;
    border: 5px solid #ffffff;
    box-shadow: rgb(239 111 29 / 41%) 0px 50px 36px -41px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.solution-main-types {
    margin-left: -29% !important;
    padding: 50px 50px 50px 0px;
}

.main-points-title h1 {
    color: var(--orange) !important;
    font-size: 30px;
}

.main-points-title p {
    color: #000000 !important;
    font-size: 15px;
}

@media(max-width:1500px) {
    .solution-main-box {
        padding: 50px 20px 150px 0px;
    }
}

@media(max-width:800px) {
    .solution-main-types {
        margin-left: 0% !important;
        padding: 50px 0px 50px 0px;
    }

    .solution-main-box {
        padding: 50px 20px 50px 0px;
    }
}


/* ===================== NEW CTA SECTION ===================== */

.cta-image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-details-box {
    width: fit-content;
    margin-left: -23%;
    background: #001433;
    padding: 50px;
    max-width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgb(0 0 0 / 12%) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.cta-details-box h1 {
    font-family: 'Ubuntu';
    color: var(--orange);
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 3%;
}

.cta-details-box p {
    color: #fff;
    font-size: 2rem;
}

.cta-box {
    padding: 5%;
}


.cta-details-box h1 {
    font-family: 'Ubuntu';
    color: var(--orange);
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 3%;
}

.cta-btn p {
    text-decoration: none;
    background: var(--orange);
    color: var(--white);
    font-size: 2rem;
    margin-top: 6%;
    font-family: 'Ubuntu';
    padding: 5px 15px;
    width: fit-content;
    border: 1px solid var(--newblue);
}

.cta-btn:hover p {
    background: var(--newblue);
    color: var(--white);
}

@media(max-width:1200px) {
    .cta-details-box {
        max-width: 416px;
    }
}

@media(max-width:900px) {
    .cta-image-box img {
        height: 500px;
    }

    .cta-details-box {
        margin-left: -57%;
    }
}

@media(max-width:767px) {
    .new-cta-details-box .col-md-8 {
        width: 70%;
    }

    .new-cta-details-box .col-md-4 {
        width: 30%;
    }

    .cta-details-box {
        padding: 30px;
    }

    .cta-details-box {
        margin-left: -122%;
    }

    .cta-details-box h1 {
        font-size: 43px;
    }

    .cta-details-box p {
        font-size: 15px;
    }
}

@media(max-width:600px) {
    .cta-details-box h1 {
        font-size: 29px;
    }

    .cta-details-box p {
        font-size: 12px;
    }
}

/* -------------- NEW COUNTER SECTION ------------- */

.animation-infinite {
    animation: ShapeAnim 80s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

.moving {
    animation: moving 8s linear infinite;
}


@keyframes moving {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0);
    }
}

.home-process-shape-1-1 {
    width: 375px;
    height: 64px;
    background: var(--orange);
    top: 0;
    right: 30%;
    clip-path: polygon(0 0, 100% 0%, calc(100% - 75px) 100%, 0% 100%);
    z-index: 1;
}

.home-process-card-wrap {
    margin-top: -82px;
    /* padding-bottom: 130px; */
    transform: translate(0, 130px);
    position: relative;
    z-index: 2;
}

.home-process-area-1 {
    margin-bottom: 150px;
}

@media(max-width:1193px) {
    .home-process-area-1 {
        margin-bottom: 42%;
    }

    .home-counter-item {
        padding: 13px 9px;
        margin-bottom: 20px;
    }
}

@media(max-width:767px) {
    .home-process-card-wrap .row .col-md-6 {
        width: 50%;
    }

    .home-process-shape-1-1 {
        width: 162px;
        height: 56px;
    }
}

@media(max-width:600px) {
    .home-process-area-1 {
        margin-bottom: 60%;
    }
}

@media(max-width:400px) {
    .home-process-area-1 {
        margin-bottom: 60%;
    }

}


/* ================ Solutions Inner page design  ================ */

.sol-inner-details-box {
    padding: 100px 150px;

}


.sol-inner-title-box {
    border-bottom: 1px solid #030f27;
    padding-bottom: 33px;
    /* margin-bottom: 26px; */
}

.sol-inner-title-box h1 {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 37px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
}

.sol-inner-title-box h2 {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    /* max-width: 700px; */
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
    color: #030f27;
    padding-top: 50px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}


.sol-inner-details-box .title {
    color: var(--orange) !important;
    font-family: 'Ubuntu';
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 25px;
    /* text-align: center; */
    /* max-width: 75%; */
    /* margin: 0 auto; */
    padding-top: 60px;
    border-bottom: 1px solid var(--orange);
    width: fit-content;

}

.sol-inner-details-box .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(--lightblack);
    padding-top: 10px;
}

.sol-inner-details-box ul li {
    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(--lightblack);
    padding-top: 10px;
}

.sol-inner-details-box .sub-title {
    color: #030f27 !important;
    font-family: Roboto, sans-serif;
    font-size: 30px;
    /* font-weight: 900; */
    /* margin-bottom: 15px; */
    /* text-align: center; */
    /* max-width: 75%; */
    /* margin: 0 auto; */
    padding-top: 50px;
}

.qa-qc-main-para {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    font-weight: 400;
    hyphens: auto;
    margin: 0 auto;
    text-align: justify;
    padding: 20px 0px;
}

.qaqc-para-box {
    padding: 20px 150px;
    margin: 0 auto;
}

.qa-qc-main-img-box {
    /* height: 400px; */
    text-align: center;
}

.qa-qc-main-img-box img {
    height: 100%;
}

table,
th,
td {
    border: 1px solid black !important;
    border-collapse: collapse !important;
}


.qs-inner-box h1 {
    color: var(--orange) !important;
    /* color: var(--newblue) !important; */
    font-family: 'Ubuntu';
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 2rem;
}

.qs-inner-box p {
    /* color: #000000; */
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    font-weight: 400;
    hyphens: auto;
    margin: 0 auto;
    text-align: justify;
    padding: 0px 0px 25px;
}

.qs-box {
    padding: 50px 0px;
}

th {
    padding: 10px 20px;
    color: #ffffff !important;
    font-family: 'Ubuntu';
    font-size: 22px;
    background: #030f27;
    border: 1px solid #ffffff !important;
}

td {
    padding: 10px 20px;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

.qs-box .row .col-md-6 {
    padding: 20px;
}

.qs-content-box {
    background: #ffffff;
    padding: 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 715px;
}

.new-qa-qc-box {
    padding: 70px 150px 100px;
}

.qa-title-box {
    padding: 50px 0px;
}

.qa-title-box h1 {
    color: var(--orange) !important;
    /* color: var(--newblue) !important; */
    font-family: 'Ubuntu';
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 2rem;
}

.qa-title-box p {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    font-weight: 400;
    hyphens: auto;
    margin: 0 auto;
    text-align: justify;
    padding: 20px 0px;
}

.qa-box-container {
    padding: 0px 150px 0px;
}

.qs-content-box-last {
    height: 590px;
    margin-top: 30px;
}

.qs-content-box-center {
    height: 664px;
    margin-top: 50px;
}

.qa-qc-main-img-box img {
    height: 500px;
}

.sol-inner-banner-image {
    margin: 0 auto;
    text-align: center;
}

.sol-inner-banner-image img {
    width: 100vw;
}


/* =========== NEW LOADER ============== *


/* Loader */
/* .dynamic-new-web-loader-section {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.dynamic-new-web-loader-content {
    display: flex;
    align-items: center;
}

.dynamic-new-web-loader-text {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}


.dynamic-new-web-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dynamic-new-web-loader-homepage {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    min-height: 100vh;
}

.dynamic-new-web-loader-homepage.active {
    opacity: 1;
    transform: translateY(0);
}


.dynamic-new-web-loader-section {
    position: fixed;
    inset: 0;
    background: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.dynamic-new-web-loader-text {
    color: #fff;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
}

.dynamic-new-web-loader-text .letter {
    display: inline-block;
    opacity: 0;
}

.loader-title-dynamic{
     font-weight: 900;
  font-size: 3.5em;
}

.dynamic-new-web-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dynamic-new-web-loader-homepage {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    min-height: 100vh;
}

.dynamic-new-web-loader-homepage.active {
    opacity: 1;
    transform: translateY(0);
} */

.dynamic-new-web-loader-section {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999999999999999999999999999999999999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    font-family: 'Ubuntu';
}

.loader-title-dynamic {
    color: #fff;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Ubuntu';
}

.loader-title-dynamic .letter {
    display: inline-block;
    /* opacity: 0; */
    font-family: 'Ubuntu';
}

.dynamic-new-web-loader-hidden {
    /* opacity: 0; */
    visibility: hidden;
    pointer-events: none;
}

.dynamic-new-web-loader-homepage {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    min-height: 100vh;
}

.dynamic-new-web-loader-homepage.active {
    opacity: 1;
    transform: translateY(0);
}

.dynamic-new-web-loader-section {
    background: var(--newblue);
}

.loader-title-dynamic {
    color: #fff;
    font-family: 'Ubuntu';
}

/* 
.loader-title-dynamic {
  font-weight: 200;
  font-size: 3.2em;
}

.loader-title-dynamic .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.loader-title-dynamic .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform-origin: 100% 100%;
  bottom: 0;
}

.loader-title-dynamic .letter {
  display: inline-block;
  line-height: 1em;
} */

.preloader-logo {
    height: 150px;
    animation: preloaderLogoPulse 2s ease-in-out;
    /* filter: brightness(1.3) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.8)); */
    opacity: 1 !important;
    border-radius: 5px;
    /* margin-bottom: 40px; */
}

/* Logo pulse animation */
@keyframes preloaderLogoPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ------------- CERTIFICATION BOX ------------------ */

.certification-box {
    display: flex;
    align-items: center;
    gap: 50px;
    /* margin: 0 auto; */
    justify-content: center;
}

.global-para {
    text-align: center;
    margin: 0 auto;
    max-width: 74%;
    padding-bottom: 62px;
    padding-top: 20px;
}

.certifications {
    padding: 70px 0px 100px;
}

.certi-image-box img {
    height: 146px;
}

.founder-name {
    text-align: center;
    font-size: 32px !important;
    color: var(--orange);
    font-weight: 100 !important;
    font-family: 'australia_custom';
}