/* ========== Google Fonts ========== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


/* ========== Scrollbar ========== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    width: 12px;
    border-left: 0 solid white;
    border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(30deg, #eee 40%, #4dc3fa 60%);
    width: 0;
    height: 25%;
    transition: .5s ease;
    cursor: pointer;
}


/* ========== Template Colors ========== */

:root {
    --primary-color: #4dc3fa;
    --secondary-color: #3c63cd;
    --primary-text-color: #2f2e2e;
    --secondary-text-color: #4f4f4f;
    --primary-white: #eee;
    --primary-black: #0b0a0a;
    --primary-blue: #233a78;
    --primary-maroon: #78233a;
    --primary-green: #3a7823;
    --primary-red: #cb342b;
    --secondary-white: #e9eff5;
    --secondary-black: #1c1b1b;
    --secondary-blue: #3c63cd;
    --secondary-maroon: #892b45;
    --secondary-green: #4a8933;
    --secondary-red: #d3463e;
    --heading-black: #777;
    --sub-heading-black: #777;
    --sub-title-black: #555;
    --text-black: #555;
    --white: #fff;
    --black: #000;
    --red: #ff0000;
    --green: #00ff00;
    --blue: #0000ff;

    /*Socialmedia App Icon Colors*/
    --linkedin: #0077b5;
    --twitter: #1da1f2;
    --twitter-x: #000;
    --instagram: #d62976;
    --facebook: #1877f2;
    --pinterest: #e60023;
    --threads: #000;
    --youtube: #ff0000;
    --google-plus: #db4a39;

    /*Gradient Colors*/
    --gradient-1: linear-gradient(225deg, #233a78 0%, #3c63cd 100%);
    --gradient-2: linear-gradient(225deg, #233a78 0%, #3c63cd 100%);
}


/* ========== General ========== */

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

span {
    font-weight: 400;
}

a {
    text-decoration: none;
}

/*Headings*/
.heading {
    font-size: 48px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 25px;
}

.subheading {
    font-size: 18px;
    color: var(--primary-text-color);
    font-weight: 400;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;

}

/*Social Icons*/
.social-icons ul {
    margin-bottom: 0px;
    transition: transform 0.5s;
}

.social-icons ul li {
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.social-icons ul li a {
    overflow: hidden;
    border-radius: 50%;
    display: block;
    color: var(--primary-white);
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 1px solid transparent;
    text-align: center;
    border-color: var(--primary-white);
}

/*Socialmedia Icons Hover*/
.linked-in-hover:hover {
    color: var(--linkedin);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--linkedin);
    transform: translateY(-8px);
}

.twitter-x-hover:hover {
    color: var(--twitter-x);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--twitter-x);
    transform: translateY(-8px);
}

.instagram-hover:hover {
    color: var(--instagram);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--instagram);
    transform: translateY(-8px);
}

.facebook-hover:hover {
    color: var(--facebook);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--facebook);
    transform: translateY(-8px);
}

/*Button*/
.btn {
    z-index: 2;
    letter-spacing: .5px;
    border-radius: 0;
    font-weight: 500;
    overflow: hidden;
    position: absolute;
    line-height: inherit;
    display: inline-block;
    color: var(--white);
    border: 2px solid transparent;
    text-transform: capitalize;
    transition: all .5s ease !important;
}

.btn.button {
    font-size: 15px !important;
    font-weight: 500;
    color: var(--white);
    padding: 10px 30px !important;
    line-height: 1.8em !important;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-family: 'Lato', sans-serif;
}

.btn.btn-rounded {
    border-radius: 15px;
}

.btn.cyan-btn {
    background: var(--primary-color);
    border-color: var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
    padding: 10px 20px !important;
    line-height: 1.2em !important;
}

.btn.cyan-btn-hvr:hover {
    background-color: var(--secondary-black);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn.black-btn {
    background: var(--secondary-black);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn.black-btn-hvr:hover {
    background-color: var(--primary-white);
    border-color: var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
}

.btn.black-btn i {
    margin-right: 5px;
    font-size: 16px;
}

.btn.white-btn {
    background: var(--primary-white);
    border-color: var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
}

.btn.white-btn-hvr:hover {
    background-color: var(--secondary-black);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn.white-btn i {
    margin-right: 2px;
    font-size: 16px;
}

.btn.white-btn-cta {
    background: var(--primary-white);
    border-color: var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
}

.btn.white-btn-cta:hover {
    background: transparent;
    border-color: var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
}

.btn.white-btn-cta i {
    margin-right: 5px;
    font-size: 15px;
}

.btn.blue-btn-mtt {
    background: var(--primary-blue);
    border-color: var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
}

.btn.blue-btn-mtt:hover {
    background: var(--primary-black);
    border-color: var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
}

.btn.white-btn-ftr {
    background: transparent;
    border-color: var(--primary-white);
    color: var(--primary-white);
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 15px;
}

.btn.white-btn-ftr-hvr:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-black);
    color: var(--primary-black);
    font-weight: 600;
}

.btn.white-btn-ftr i {
    margin-right: 5px;
    font-size: 15px;
}


/* ========== Loader ========== */

.loader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 111111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url(../images/map-dotted.png) var(--primary-black);
}

.loader-spinner {
    width: 75px;
    height: 75px;
    margin: 0;
    background: transparent;
    border-top: 4px solid var(--primary-color);
    /* change this color to see changes in the first loading circle*/
    border-right: 4px solid transparent;
    border-radius: 50%;
    animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ========== Navbar ========== */

.navbar .container,
.navbar .container-fluid {
    max-width: 1800px;
}

.navbar.navbar-top-default {
    position: absolute;
    top: 0;
    z-index: 99;
    overflow: hidden;
    height: 100px;
    width: 100%;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
    background: linear-gradient(to bottom, rgba(238, 238, 238, 1), rgba(238, 238, 238, 0.7));
}

.header-appear .navbar-top-default {
    height: 100px;
    position: fixed;
    z-index: 999;
    background-color: var(--primary-white);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.navbar .navbar-nav .nav-link {
    font-size: 14px;
    color: var(--primary-black);
    font-weight: 600;
    padding: 10px;
    margin-left: 25px;
    transition: .5s ease;
    transition: all .6s ease;
    border: 2px solid transparent;
    display: block;
    font-family: 'Lato', sans-serif;
}

.navbar .navbar-nav {
    margin-left: auto;
}

.navbar .navbar-nav .nav-link.non-active {
    color: var(--primary-text-color) !important;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--red);
    transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--secondary-text-color);
    cursor: pointer;
    transition: all .6s ease;
}

.navbar .navbar-nav .nav-link-rad:hover {
    color: var(--secondary-text-color);
    cursor: pointer;
}

.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0px;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
    width: 100%;
    background: var(--secondary-text-color);
}

.navbar .navbar-nav .button {
    margin-left: 30px;
    margin-right: 60px;
}

.navbar-brand img {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 300px;
    height: auto;
}

/* -- Nav Bar Media Query -- */
@media (max-width: 767px) {
    .navbar-brand img {
        width: 180px;
    }

    .navbar .navbar-brand {
        padding-top: 1px !important;
        padding-left: 20px;
        margin-top: -10px !important;
    }

    .navbar.navbar-top-default {
        height: 60px !important;
        padding: 0 !important;
    }
}

/*side menu button*/
.sidemenu_btn {
    width: 36px;
    padding: 6px;
    right: 40px;
    top: 20px;
    z-index: 999;
    margin-top: 12px;
    margin-left: 16px;
    cursor: pointer;
    position: absolute;
    display: inline-block;
    transition: all .3s linear;
}

.sidemenu_btn span {
    height: 2px;
    width: 100%;
    background: var(--secondary-text-color);
    display: block;
    margin: auto;
    transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
    width: 70%;
    background-color: var(--secondary-text-color);
}

.sidemenu_btn:hover span:nth-child(2) {
    background-color: var(--secondary-text-color);
}

.sidemenu_btn span:nth-child(2) {
    margin: 4px 0;
}


/* ========== Side Menu CSS ========== */

.side-menu {
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    overflow: hidden;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.5s ease;
    background: none;
}

.side-menu-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.side-menu.side-menu-active {
    transform: translate3d(0, 0, 0);
}

.inner-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 4rem 3rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.side-menu-layout {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.side-nav {
    width: 50%;
    padding-left: 150px;
}

.side-menu .side-nav .navbar-nav .nav-link {
    color: var(--primary-white) !important;
    transition: color 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 100;
}

.side-menu .side-nav .navbar-nav .nav-item {
    margin: 10px 0;
}

.side-menu .side-nav .navbar-nav .nav-link:hover,
.side-menu .side-nav .navbar-nav .nav-link:focus,
.side-menu .side-nav .navbar-nav .nav-link.active {
    color: var(--primary-white) !important;
}

.side-menu .side-nav .navbar-nav .nav-link::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: var(--primary-white);
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.side-menu .side-nav .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.side-menu-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.side-menu-contact {
    color: white;
    font-size: 16px;
}

.side-menu-contact p {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.side-menu-contact a {
    margin-right: 8px;
    font-size: 30px;
    font-weight: 100;
    text-decoration: none;
    color: var(--primary-white);
    line-height: 1.3;
    transition: transform 0.5s;
}

.side-menu-contact a:hover {
    font-weight: 200;
    color: var(--secondary-white);
    transform: translateX(8px);
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    text-align: left;
}

.social-icons ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

/* Copyright Text */
.copywrite {
    text-align: left;
    margin-top: 15px;
    font-size: 14px;
    color: white;
}

/* ========== Close Button ========== */

.btn-close {
    height: 33px;
    width: 33px;
    top: 30px;
    right: 25px;
    cursor: pointer;
    position: absolute;
    display: inline-block;
}

.btn-close::before,
.btn-close::after {
    top: 5px;
    left: 16px;
    height: 24px;
    width: 2px;
    content: '';
    background: white;
    position: absolute;
}

.btn-close:before {
    transform: rotate(45deg);
}

.btn-close:after {
    transform: rotate(-45deg);
}

.btn-close:hover {
    transform: scale(0.9);
    transition: all .5s ease;
}

.side-nav .navbar-nav .nav-item {
    opacity: 0;
    display: block;
    margin: 15px 0;
    padding: 0 !important;
    transition: all 0.8s ease 500ms;
    transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
    transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
    transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
    transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
    transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
    transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
    transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
    transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
    transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    transform: translateY(0);
    opacity: 1;

}

/* -- Side Menu Media Query -- */
@media (max-width: 1200px) {
    .sidemenu_btn {
        right: 13px;
    }
}

@media (min-width: 993px) {
    .side-menu {
        width: 100% !important;
    }
}

@media (max-width: 992px) {
    .sidemenu_btn {
        right: 18px;
    }

    .side-menu {
        width: 55%;
    }

    .side-menu-layout {
        flex-direction: column;
        align-items: center;
    }

    .side-nav {
        width: 100%;
        padding-left: 0;
    }

    .side-menu-right {
        width: 100%;
        text-align: left;
    }

    .social-icons {
        text-align: left;
    }

    .copywrite {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .sidemenu_btn {
        right: 15px;
        margin-top: 0px;
    }

    .side-menu {
        width: 100%;
    }

    .side-nav {
        padding-left: 100px;
    }

    .side-menu .side-nav .navbar-nav .nav-link {
        font-size: 22px;
        font-weight: 100;
    }

    .side-menu .side-nav .navbar-nav .nav-item {
        margin: 1px 0;
    }

    .side-menu-contact p {
        margin-bottom: 30px;
        display: flex;
        align-items: center;
    }

    .side-menu-contact a {
        font-size: 20px;
        line-height: 1.8;
    }

}

@media (max-width: 370px) {
    .sidemenu_btn {
        right: 10px;
    }
}



/* ========== Banner CSS ========== */

.banner {
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: #eee;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.banner-left {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    color: var(--white);
}

.banner-left .heading {
    font-size: 45px;
    color: var(--black);
    margin-bottom: 20px;
}

.banner-left .text {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--black);
}

.button-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button-left {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.video-thumbnail {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.video-thumbnail img {
    width: 100%;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--black);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    animation: pulse 2s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid var(--black);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left-color: var(--red);
}

.play-button:hover {
    background: var(--primary-black);
    border: 2px solid var(--primary-color);
}

.play-button:hover::before {
    border-left-color: var(--white);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Modal styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 195, 250, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: var(--primary-color);
    border-radius: 10px;
    z-index: 10000;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 45px;
    color: var(--red);
    cursor: pointer;
    z-index: 10001;
}

.banner-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.outline-btn {
    background: var(--primary-black);
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.outline-btn:hover {
    background: var(--primary-color);
    color: var(--black) !important;
    font-weight: 600 !important;
    border: 2px solid var(--primary-black);
}

.outline-btn i {
    color: var(--primary-color);
    padding-right: 5px;
    transition: color 0.3s ease;
}

.outline-btn:hover i {
    color: var(--black);
}


/* -- Responsive -- */
@media (max-width: 768px) {
    .banner {
        padding-top: 80px;
        padding-bottom: 0;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-left {
        padding: 0;
    }

    .banner-left .heading {
        font-size: 30px;
    }

    .banner-left .text {
        font-size: 16px;
        padding: 0 30px;
        margin: 20px 0;
    }

    .banner-right img {
        padding-top: 60px;
    }

    .button-center {
        justify-content: center;
    }

    .button-left {
        gap: 10px;
    }

    .banner-right {
        margin-bottom: 30px;
    }

    .video-modal iframe {
        height: 300px;
    }
}


/* ========== Customers Section CSS ========== */

.customers-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary-white);
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-black);
}

.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-heading-black);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-black);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Swiper Carousel */
.logo-swiper {
    padding: 20px 0;
}

.logo-swiper .swiper-wrapper {
    align-items: center;
}

.logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.logo-swiper img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.logo-swiper img:hover {
    filter: grayscale(0%);
}

.disclaimer {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .section-description {
        font-size: 16px;
    }

    .logo-swiper img {
        max-width: 120px;
    }
}


/* ========== Counter Section ========== */

.counter-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.counter-section .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--headning-black);
}

.counter-section .section-subtitle {
    font-size: 18px;
    color: var(--text-black);
    max-width: 900px;
    margin: 0 auto;
}

.counter-section .num_counter {
    background-color: var(--white);
    margin-top: 80px;
}

.counter-section .num_counter .subheading {
    font-size: 80px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 100;
}

.counter-section .num_counter .counter .text {
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--primary-black);
    font-weight: 600;
}

.counter-section .symbol {
    font-size: 50px;
    margin-left: 5px;
    font-weight: 600;
}

.counter-section .symbol-percentage {
    font-size: 40px;
    margin-left: 5px;
    font-weight: 600;
}

.counter .counter-icon {
    font-size: 60px;
    color: var(--sub-heading-black);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.counter:hover .counter-icon {
    transform: scale(1.1);
}


/* -- Counter Section Media Query -- */
@media (max-width: 992px) {
    .counter-section .counter {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .counter-section .section-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--headning-black);
    }

    .counter-section .section-subtitle {
        font-size: 14px;
        color: var(--text-black);
        margin: 0 auto;
    }

    .counter-section .num_counter {
        margin-top: 1px;
    }

    .counter-section .num_counter .subheading {
        font-size: 40px;
        margin-bottom: 5px;
        color: var(--primary-color);
        font-weight: 100;
    }

    .counter-section .num_counter .counter .text {
        font-size: 14px;
    }

    .counter-section .symbol {
        font-size: 25px;
        margin-left: 5px;
        font-weight: 800;
    }

    .counter-section .symbol-percentage {
        font-size: 20px;
        margin-left: 5px;
        font-weight: 800;
    }

    .counter .counter-icon {
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
}


/* ========== CTA Section ========== */

.cta-section .text-row {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--primary-color);
}

.cta-section .text-row .subheading {
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-black);
}

/* -- Counter Section Media Query -- */
@media (max-width: 767px) {
    .cta-section .text-row {
        padding: 30px 0;
    }

    .cta-section .text-row .subheading {
        font-size: 24px;
    }
}


/* ========== Why CD Section ========== */
.why-cd-section {
    background-image: url('../images/oilfield-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 80px 20px;
    position: relative;
    text-align: center;
    z-index: 1;
    color: var(--white);
}

.why-cd-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.why-cd-section .section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    border: 1px solid rgba(77, 195, 250, 0.3);
    border-radius: 10px;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    color: var(--white);
}

.why-card:hover {
    box-shadow: 0 8px 25px rgb(77, 195, 250);
}

.why-card .icon {
    font-size: 40px;
    color: #4dc3fa;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    min-height: 72px;
}


@media (max-width: 767px) {
    .why-cd-section .section-title {
        font-size: 26px;
    }
}


/* ========== Efficiency Section ========== */

.efficiency-section {
    background: var(--secondary-white);
    padding: 60px 20px;
    text-align: center;
}

.efficiency-heading {
    font-size: 32px;
    font-weight: 700;
    max-width: 700px;
    color: var(--secondary-black);
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.efficiency-description {
    font-size: 18px;
    color: var(--text-black);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.efficiency-image img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .efficiency-heading {
        font-size: 24px;
    }

    .efficiency-description {
        font-size: 16px;
    }

    .efficiency-image img {
        max-width: 100%;
    }
}



/* ========== Footer Section ========== */
.footer {
    background: url(../images/map-dotted.png) var(--primary-black);
    color: var(--primary-white);
    padding: 20px;
}

.footer-top-nav {
    background-color: var(--secondary-black);
    padding: 10px 0;
    text-align: center;
}

.footer-top-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top-nav ul li {
    display: inline;
    margin: 0 15px;
}

.footer-top-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-top-nav ul li a:hover {
    text-decoration: underline;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1700px;
    margin: auto;
    padding: 30px 0;
}

.footer-logo {
    flex-basis: 27%;
    min-width: 200px;
}

.footer-column {
    flex-basis: 20%;
    min-width: 150px;
}

.footer-column:nth-child(2) {
    flex-basis: 20%;
}

.footer-column:nth-child(3) {
    flex-basis: 20%;
}

.footer-column.contact {
    flex-basis: 33%;
}

.footer-logo img {
    max-width: 100%;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-white);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer .social-icons a i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.footer .social-icons a:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.footer .social-icons a:hover i {
    color: var(--primary-color);
}

.footer .button-center {
    margin-top: 30px;
}

.footer .button-center h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    padding-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: var(--primary-white);
    font-weight: 600;
    transform: translateX(8px);
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    transition: background 0.3s ease-in-out;
    text-align: left;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
}

.contact p i {
    font-size: 16px;
    color: var(--primary-white);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 20px;
}

.contact p a,
.contact p span {
    color: var(--primary-white);
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    display: inline-block;
}

.contact p:hover a,
.contact p:hover span {
    transform: translateX(5px);
    color: var(--primary-color);
}


.footer-divider {
    border: 0;
    height: 1px;
    background-color: #444;
    margin: 20px 0;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 0;
}

.copyright {
    font-size: 14px;
    color: var(--secondary-white);
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-links li {
    display: inline;
}

.footer-links li a {
    color: var(--secondary-white);
    text-decoration: none;
    font-size: 14px;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* -- Footer Section Media Query -- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        max-width: 100%;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer-columns-wrapper {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-left: 20px;
        gap: 25px;
    }

    .footer-columns-wrapper .footer-column {
        flex: 1;
        min-width: 45%;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
    }

    .footer .button-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1px;
        margin-bottom: 30px;
    }
}

/* Keep the four-column layout in PC view */
@media (min-width: 769px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
    }

    .footer-columns-wrapper {
        display: contents;
    }

    .footer-column {
        flex-basis: 20%;
    }

    .footer .button-center {
        display: flex;
        justify-content: flex-start;
    }

    .footer .button-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}



/* ========== About Page Bredcrum Section CSS ========== */

.breadcrumb-banner {
    position: relative;
    height: 400px;
    color: var(--primary-white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.breadcrumb-content {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    padding: 20px;
    margin: 90px 300px 0;
    text-align: left;
}


.breadcrumbs {
    font-size: 14px;
    color: var(--secondary-white);
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: var(--primary-white);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {

    .breadcrumb-content {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 30px;
    }
}



/* ========== About Page Customers Section CSS ========== */

.about-page-customers-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary-white);
}

.logo-swiper {
    padding: 20px 0;
}

.logo-swiper .swiper-wrapper {
    align-items: center;
}

.logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.logo-swiper img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}

.logo-swiper img:hover {
    filter: grayscale(0%);
}

.disclaimer {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .about-page-customers-section {
        padding: 20px 20px;
    }

    .logo-swiper img {
        max-width: 120px;
    }

    .disclaimer {
        font-size: 12px;
        line-height: 1.4;
    }
}



/* ========== About Page Main Section CSS ========== */
.about-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.about-image img:hover {
    animation: breathing 1.5s ease-in-out infinite;
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.about-content {
    flex: 1;
    min-width: 300px;
    color: var(--black);
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 12px 24px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
    }
}


/* ========== How It Works Section ========== */

.how-it-works-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.how-it-works-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-section .section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.how-it-works-description {
    font-size: 18px;
    color: var(--text-black);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-section .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.how-it-works-section .step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.how-it-works-section .step-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    text-align: center;
}

.how-it-works-section .step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.how-it-works-section .step p {
    font-size: 16px;
    color: var(--text-black);
    line-height: 1.6;
}

.how-it-works-section .step:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.how-it-works-section .step:hover h3 {
    color: var(--primary-color-dark);
}

.how-it-works-section .step:hover .step-number {
    color: var(--primary-color);
}

/* -- Responsive Design -- */
@media (min-width: 768px) {
    .how-it-works-section .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how-it-works-section .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* == Contact Section Styles == */

.contact-section {
    padding: 20px;
    padding-bottom: 60px;
    background-color: var(--primary-white);
}

.contact-section .content {
    margin-bottom: 0;
    text-align: center;
}

.contact-section .section-label {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.contact-section .section-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--primary-black);
    text-align: left;
}

.contact-columns {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.contact-form-content {
    max-width: 800px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 35px 35px 28px 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--primary-black);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.form-field {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.20);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 10px 12px;
}

.form-field i {
    font-size: 14px;
    color: var(--primary-black);
    min-width: 18px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--primary-black);
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
    color: var(--primary-black);
}

.form-field select option {
    background: var(--primary-color);
    color: var(--secondary-black);
    font-weight: 600;
}

.form-field select {
    background-color: transparent;
    color: var(--primary-black);
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.field-icon-right {
    position: absolute;
    right: 0;
    font-size: 12px;
    opacity: 0.7;
    pointer-events: none;
}

.textarea-field {
    align-items: flex-start;
}

.textarea-field textarea {
    resize: none;
    padding-top: 10px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin: 18px 0 20px 0;
    color: var(--primary-black);
}

.form-consent input {
    margin-top: 6px;
    width: 16px;
    height: 16px;
}

.form-consent a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
}

.form-consent a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--primary-black);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    margin-left: 5px;
}

.tooltip-text {
    visibility: hidden;
    width: 320px;
    background-color: var(--primary-black);
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 13px;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.info-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    color: var(--primary-color);
}

.contact-submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    font-size: 14px;
    background: var(--primary-color);
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    background: var(--primary-black);
    color: var(--primary-white);
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn .btn-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.95);
    display: none;
    animation: spin 0.7s linear infinite;
}

.contact-submit-btn.is-loading .btn-spinner {
    display: inline-block;
}

.contact-submit-btn.is-loading {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-msg {
    margin: 12px 0 14px 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: none;
    line-height: 1.4;
}

.form-msg.show {
    display: block;
}

.form-msg.success {
    background: rgba(0, 255, 120, 0.12);
    border: 1px solid rgba(0, 255, 120, 0.35);
    color: rgba(0, 0, 0, 1);
}

.form-msg.error {
    background: rgba(255, 0, 80, 0.12);
    border: 1px solid rgba(255, 0, 80, 0.35);
    color: rgba(255, 210, 220, 0.95);
}

.thankyou-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-modal.show {
    display: flex;
}

.thankyou-modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 35px 25px;
    border-radius: 16px;
    background: var(--primary-white);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.thankyou-call-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--primary-black);
    color: var(--primary-white);
}

.thankyou-close {
    position: absolute;
    top: 12px;
    right: 60px;
    font-size: 32px;
    border: none;
    background: transparent;
    color: var(--primary-black);
    cursor: pointer;
}

.thankyou-close::before,
.thankyou-close::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 24px;
    width: 28px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--primary-white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.thankyou-close::before {
    transform: rotate(45deg);
}

.thankyou-close::after {
    transform: rotate(-45deg);
}

.thankyou-close:hover::before {
    transform: rotate(405deg);
}

.thankyou-close:hover::after {
    transform: rotate(-405deg);
}

.thankyou-buttons {
    margin-top: 18px;
}

/* Responsive Code*/

@media (max-width: 786px) {
    .contact-section {
        padding: 90px 0 30px 0;
    }

    .contact-section .section-description {
        text-align: center;
    }

    .contact-columns {
        flex-direction: column;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form-card {
        padding: 15px;
    }

    .contact-info-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 14px;
        padding: 20px;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        transition: transform 0.25s ease, background 0.25s ease;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .contact-card-body h4 {
        font-size: 20px;
    }

    .contact-card-links a {
        font-size: 16px;
    }

    .form-consent {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        font-size: 13px;
        margin: 18px 0 20px 0;
        color: var(--primary-black);
    }
}







/* ========== Privacy Policy Page Main Section CSS ========== */

.privacy-policy-section {
    padding: 60px 20px;
    background-color: #ffffff;
    color: var(--text-black);
}

.privacy-policy-section .page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--headning-black);
    text-align: center;
}

.privacy-policy-section .policy-date {
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-bottom: 30px;
}

.policy-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.policy-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.policy-block p {
    font-size: 16px;
    line-height: 1.6;
}

.policy-block ul {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-block ul li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 6px;
}


/* ========== Terms & Conditions Section ========== */

.terms-conditions-section {
    padding: 60px 20px;
    background-color: var(--white);
    color: var(--primary-black);
    line-height: 1.7;
}

.terms-conditions-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-conditions-section .page-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--headning-black);
    margin-bottom: 10px;
    text-align: center;
}

.terms-conditions-section .policy-date {
    font-size: 16px;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 40px;
}

.terms-conditions-section .policy-intro {
    font-size: 18px;
    color: var(--text-black);
    margin-bottom: 30px;
    text-align: center;
}

.terms-conditions-section .policy-block {
    margin-bottom: 40px;
}

.terms-conditions-section .policy-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.terms-conditions-section .policy-block p {
    font-size: 16px;
    color: var(--text-black);
    margin-bottom: 10px;
}

.terms-conditions-section .policy-block ul {
    padding-left: 20px;
    margin-top: 10px;
}

.terms-conditions-section .policy-block ul li {
    font-size: 16px;
    color: var(--text-black);
    list-style-type: disc;
    margin-bottom: 6px;
}

.terms-conditions-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.terms-conditions-section a:hover {
    color: var(--primary-black);
    text-decoration: none;
}

/* -- Responsive -- */
@media (max-width: 767px) {
    .terms-conditions-section .page-title {
        font-size: 28px;
    }

    .terms-conditions-section .policy-intro,
    .terms-conditions-section .policy-block p,
    .terms-conditions-section .policy-block ul li {
        font-size: 14px;
    }

    .terms-conditions-section .policy-block h2 {
        font-size: 18px;
    }
}


/* ========== FAQ Section ========== */

.faq-section {
    padding: 60px 20px;
    background-color: var(--white);
    color: var(--primary-black);
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .page-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--headning-black);
    margin-bottom: 40px;
    text-align: center;
}

.faq-section .faq-list {
    margin: 0 auto;
}

.faq-section .faq-item {
    margin-bottom: 30px;
}

.faq-section .faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-section .faq-item p {
    font-size: 16px;
    color: var(--text-black);
    line-height: 1.6;
}

.faq-section .faq-item strong {
    font-weight: 700;
}

/* -- Responsive -- */
@media (max-width: 767px) {
    .faq-section .page-title {
        font-size: 28px;
    }

    .faq-section .faq-item h3 {
        font-size: 18px;
    }

    .faq-section .faq-item p {
        font-size: 14px;
    }
}



/* ========== Testimonials Section ========== */

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--light-gray, #f8f8f8);
    text-align: center;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primary-black);
}

.carousel {
    position: relative;
    overflow: hidden;
    height: auto;
}

.testimonial-slide {
    display: none;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-content {
    background-color: var(--white, #fff);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-rating .star-rating {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-black);
    margin: 20px 0;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-black);
}

.carousel-controls {
    margin-top: 20px;
}

.carousel-controls button {
    background: rgba(77, 195, 250, 0.4);
    color: var(--primary-black);
    border: none;
    font-size: 22px;
    font-weight: 800;
    padding: 10px 18px;
    margin: 0 10px;
    border-radius: 50%;
    border: 2px solid var(--secondary-black);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-controls button:first-child:hover {
    transform: translateX(-10px);
    /* Move left */
}

.carousel-controls button:last-child:hover {
    transform: translateX(10px);
    /* Move right */
}

.carousel-controls button:hover {
    background: rgba(77, 195, 250, 0.7);
    border: 2px solid var(--primary-black);
}


/* ========== Cost Savings Section ========== */

.cost-savings {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cost-savings h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.cost-savings .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.cost-savings .summary-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.cost-savings .summary-item span {
    display: block;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 6px;
}

.cost-savings .summary-item strong {
    font-size: 20px;
}

.cost-savings .summary-item.highlight {
    background: var(--primary-color);
}

.cost-savings .table-wrapper {
    overflow-x: auto;
}

.cost-savings table {
    width: 80%;
    border-collapse: collapse;
    min-width: 700px;
    margin: 0 auto;
}

.cost-savings th,
.cost-savings td {
    padding: 14px 16px;
    border: 1px solid var(--primary-color);
    text-align: center;
}

.cost-savings thead th {
    background-color: var(--white);
    font-weight: 600;
    font-size: 20px;
}

.cost-savings tbody tr:nth-child(even) {
    background: var(--secondary-white);
}

.cost-savings .highlight-row td {
    background: var(--white);
    font-weight: 600;
}

.cost-savings .total-row td {
    background: var(--primary-color);
    color: var(--black);
    font-weight: 700;
    font-size: 1.05rem;
}

.cost-savings-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cost-savings-buttons .btn {
    padding: 12px 24px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .cost-savings-content {
        text-align: center;
    }

    .cost-savings-buttons {
        justify-content: center;
    }
}

/* ========== Blog Section ========== */

.blog-section {
    padding: 80px 20px;
    background: var(--secondary-white);
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-black);
    display: block;
    margin-bottom: 10px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid var(--black);
    border-radius: 14px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.blog-date {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--black);
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    flex-grow: 1;
}

.blog-link {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--black);
    text-decoration: none;
    font-weight: 600;
    color: var(--black);
}

.blog-link:hover {
    font-weight: 800;
    color: var(--primary-color);
}

.blog-link span {
    background: var(--primary-color);
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--black);
}

.blog-footer {
    margin-top: 40px;
}

.view-more {
    font-weight: 600;
    text-decoration: none;
    color: var(--black);
}

/* Social Media Icons */
.blogs-social-icons {
    margin-top: 0;
    text-align: left;
}

.blogs-social-icons ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
}

.blogs-social-icons ul {
    margin-bottom: 0px;
    transition: transform 0.5s;
}

.blogs-social-icons ul li {
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.blogs-social-icons ul li a {
    overflow: hidden;
    border-radius: 50%;
    display: block;
    color: var(--primary-black);
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 1px solid transparent;
    text-align: center;
    border-color: var(--primary-black);
}

/*Socialmedia Icons Hover*/
.linked-in-hover:hover {
    color: var(--linkedin);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--linkedin);
    transform: translateY(-10px);
}

.twitter-x-hover:hover {
    color: var(--twitter-x);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--twitter-x);
    transform: translateY(-10px);
}

.instagram-hover:hover {
    color: var(--instagram);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--instagram);
    transform: translateY(-10px);
}

.facebook-hover:hover {
    color: var(--facebook);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-color: var(--facebook);
    transform: translateY(-8px);
}


/* ========== Responsive ========== */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}



/* ========== Single Blog Page ========== */

.single-blog {
    padding: 100px 20px;
    background: #ffffff;
}

.single-blog-container {
    max-width: 1300px;
    margin: 0 auto;
}

.single-blog-header {
    max-width: 900px;
    margin-bottom: 50px;
}

.blog-category {
    font-size: 14px;
    letter-spacing: 2px;
    color: #1e5aa5;
    display: block;
    margin-bottom: 12px;
}

.single-blog-header h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.single-blog-content {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.75;
    color: #333;
}

.single-blog-content p {
    margin-bottom: 22px;
}

.single-blog-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 50px 0 20px;
}

.single-blog-content ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.single-blog-content li {
    margin-bottom: 12px;
}

.highlight-text {
    font-weight: 600;
    font-size: 18px;
    border-left: 4px solid #1e5aa5;
    padding-left: 16px;
    margin: 30px 0;
}

/* ========== Responsive ========== */

@media (max-width: 768px) {
    .single-blog-header h1 {
        font-size: 30px;
    }

    .single-blog-content {
        font-size: 16px;
    }
}


/* ========== Cost Savings Calculator ========== */

.cost-savings-calculator {
    padding: 80px 0;
    background: var(--primary-white);
}

.cost-savings-calculator h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.cost-savings-calculator .subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--sub-title-black);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 60px;
}

.cost-savings-table td {
    position: relative;
    overflow: visible !important;
    font-size: 14px;
    line-height: 1.4;
}

.calculator-inputs {
    background: var(--secondary-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--secondary-black);
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.field input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    border: 1px solid var(--secondary-black);
}

.calculate-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: var(--primary-color);
    color: var(--secondary-black);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid var(--secondary-black);
}

.calculate-btn:hover {
    background: var(--secondary-green);
    color: var(--secondary-white);
    border: 1px solid var(--secondary-black);
}

/* Results */
.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card {
    background: var(--primary-white);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--secondary-black);
}

.result-card.cost {
    border-left: 6px solid var(--secondary-red);
}

.result-card.primary {
    border-left: 6px solid var(--secondary-blue);
}

.result-card.success {
    background: var(--secondary-white);
    border-left: 6px solid var(--secondary-green);
}

.result-card span {
    display: block;
    color: var(--sub-title-black);
}

.result-card strong {
    font-size: 28px;
}

.calculator-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
}

.calculator-inputs {
    flex: 1.2;
}

.calculator-results {
    flex: 0.8;
}

@media (max-width: 768px) {
    .calculator-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .calculator-inputs,
    .calculator-results {
        width: 100%;
    }

    .calculate-btn {
        width: 100%;
    }

    .calculator-results .result-card {
        width: 100%;
    }

    .cost-breakdown {
        margin-top: 32px;
        overflow-x: auto;
    }
}

.cost-breakdown table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-white);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 50px;
}

.cost-breakdown th,
.cost-breakdown td {
    padding: 16px;
    border-bottom: 1px solid var(--primary-white);
    border: 1px solid var(--secondary-black);
}

.cost-breakdown th {
    background: var(--secondary-white);
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.label-with-tooltip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tooltip-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--secondary-blue);
    position: relative;
    cursor: pointer;
    background: var(--primary-color);
}

.tooltip-icon::before {
    content: "i";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-black);
}

.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-white);
    color: var(--secondary-black);
    padding: 15px 15px;
    border-radius: 15px;
    font-size: 13px;
    width: 360px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 99999;
    white-space: normal;
    margin-top: 150px;
    margin-left: 150px;
    border: 1px solid var(--secondary-black);
}

.tooltip-icon:hover::after {
    opacity: 1;

}

.cost-breakdown-item {
    text-align: center;
}

.comparison-title {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .tooltip::after {
        width: 220px;
    }

    .tooltip-icon {
        min-width: 16px;
        max-width: 16px;
        min-height: 16px;
        max-height: 16px;
        flex: 0 0 16px;
    }

    .tooltip-icon::before {
        font-size: 11px;
        line-height: 16px;
    }

    .tooltip-icon::after {
        margin-left: 50px;
    }
}