/* == Browser Window Scrollbar == */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    width: 12px;
    border-left: 0 solid #f3f6fc;
    border-right: 0 solid #f3f6fc;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(30deg, #14253d 40%, #255c99 60%) padding-box,
        linear-gradient(to bottom, #f3f6fc, #214e83) border-box;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s ease;
    width: 0;
    height: 25%;
}


/* == Light Mode Styles == */

:root {
    /* Brand Tri Colors*/
    --blue-color-1: #14253d;
    --blue-color-2: #1e395c;
    --blue-color-3: #1f446d;
    --blue-color-4: #214e83;
    --blue-color-primary: #255c99;
    --blue-color-6: #377cc0;
    --blue-color-7: #5c99d4;
    --blue-color-8: #95bce4;
    --blue-color-9: #c7daf0;
    --blue-color-10: #e6eef8;
    --blue-color-11: #f3f6fc;

    --green-color-1: #1f2b08;
    --green-color-2: #3e4f18;
    --green-color-3: #485d17;
    --green-color-4: #597516;
    --green-color-5: #759917;
    --green-color-primary: #99c222;
    --green-color-7: #b6db40;
    --green-color-8: #cde96d;
    --green-color-9: #e2e3a3;
    --green-color-10: #f1f9ce;
    --green-color-11: #f9fde8;

    --pink-color-1: #4c0b1c;
    --pink-color-2: #7e1d36;
    --pink-color-3: #971d36;
    --pink-color-4: #b62048;
    --pink-color-primary: #cc2c5c;
    --pink-color-6: #e45084;
    --pink-color-7: #ee78a5;
    --pink-color-8: #f5acc9;
    --pink-color-9: #f9d1e2;
    --pink-color-10: #fbe8f0;
    --pink-color-11: #fcf3f7;

    --white-color-primary: #eeeeee;

    --black-color-primary: #222222;

    --white-1: #f8f8f8;
    --white-2: #f6f6f6;
    --white-3: #f3f6fc;
    --white-4: #f9fde8;
    --white-5: #fcf3f7;
    --white-6: #fbf3e9;
    --white-7: #e0ffec;

    --black-1: #0e0e0e;
    --black-2: #111111;
    --black-3: #181818;
    --black-4: #292929;
    --black-5: #2e2e2e;
    --black-6: #393939;
    --black-7: #14253d;
    --black-8: #1f2b08;
    --black-9: #4c0b1c;

    --red: #ff0000;
    --green: #008000;
    --blue: #0000ff;

    --primary-color: var(--blue-color-primary);
    --secondary-color: var(--green-color-primary);
    --tertiary-color: var(--pink-color-primary);
    --primary-white: var(--white-color-primary);
    --primary-black: var(--black-color-primary);

    --background-color-1: var(--blue-color-1);
    --background-color-2: var(--blue-color-2);
    --background-color-3: var(--blue-color-3);
    --background-color-4: var(--blue-color-4);
    --background-color-6: var(--blue-color-6);
    --background-color-7: var(--blue-color-7);

    --h1-color: var(--blue-color-11);
    --h2-color: var(--blue-color-10);
    --h3-color: var(--blue-color-9);
    --h4-color: var(--blue-color-8);
    --h5-color: var(--blue-color-7);
    --h6-color: var(--blue-color-6);
    --p-color: var(--blue-color-10);

    --heading-color: var(--blue-color-11);
    --subheading-color: var(--blue-color-10);
    --text-color: var(--blue-color-9);

    --border-1: var(--blue-color-11);
    --border-2: var(--blue-color-10);
    --border-3: var(--blue-color-9);
    --border-4: var(--blue-color-8);

    --header-bg: var(--primary-color);
    --button-bg: var(--secondary-color);
    --button-text: var(--blue-color-7);

    /*Socialmedia App Icon Colors*/
    --linkedin: #0077b5;
    --twitter: #1da1f2;
    --twitter-x: #000;
    --instagram: #d62976;
    --facebook: #1877f2;
    --pinterest: #e60023;
    --threads: #000;
    --youtube: #ff0000;
    --google-plus: #db4a39;

    /*   
        primary bule - hex : rgb(37, 92, 153)
        primary green - hex : rgb(153, 194, 34)
        primary pink - hex : rgb(204, 44, 92)
    */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* == Main Styles == */

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    background-color: var(--background-color-1);
    color: var(--blue-color-11);
    transition: background-color 0.3s ease, color 0.3s ease;
}

button#theme-toggle {
    padding: 8px 16px;
    font-weight: 600;
    background-color: var(--button-bg);
    color: var(--blue-color-6);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* ==================== 
        Common Styles 
        ==================== */

.container {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.section-label {
    color: var(--blue-color-7);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--h2-color);
    text-align: left;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--p-color);
}

.background-primary {
    background: url(../images/common/backgrounds/ad-noise.png) var(--primary-color);
}

.background-one {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-1);
}

.background-two {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-2);
}

.background-three {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .section-heading {
        font-size: 28px;
        text-align: left;
    }

    .section-description {
        font-size: 15px;
        text-align: left;
    }
}


/* == Button Styles == */

.btn {
    z-index: 2;
    letter-spacing: .5px;
    border-radius: 0;
    font-weight: 500;
    overflow: hidden;
    line-height: inherit;
    display: inline-block;
    text-transform: capitalize;
    transition: all .5s ease !important;
}

.btn.button {
    font-size: 15px !important;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 9px 17px !important;
    line-height: 28px !important;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    text-decoration: none;
    border-radius: 50px;
}

.btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.get-started-btn {
    background-color: transparent;
    border: 1px solid var(--blue-color-11);
    color: var(--blue-color-11);
    transition: background-color 0.3s ease;
    animation: get-started-btn-breathing-shadow 3.5s ease-in-out infinite;
}

@keyframes get-started-btn-breathing-shadow {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.0);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.btn.get-started-btn:hover {
    background-color: var(--blue-color-11);
    border: 1px solid var(--blue-color-1);
    color: var(--blue-color-1);
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
}

.btn.get-started-btn i {
    margin-left: 10px;
    font-size: 13px;
    animation: get-started-btn-icon 2s infinite ease-in-out;
}

@keyframes get-started-btn-icon {
    0% {
        transform: translate(-5px, 0px);
        opacity: 0.8;
    }

    50% {
        transform: translate(0px, -5px);
        opacity: 1;
    }

    100% {
        transform: translate(-5px, 0px);
        opacity: 0.8;
    }
}

@keyframes get-started-btn-wiggle {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(3deg);
    }

    20% {
        transform: rotate(-3deg);
    }

    30% {
        transform: rotate(2deg);
    }

    40% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(1deg);
    }

    60% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn.get-free-quote-transparent-btn {
    background-color: transparent;
    border: 1px solid var(--blue-color-11);
    color: var(--blue-color-11);
    animation: get-free-quote-transparent-btn-breathing-shadow 3.5s ease-in-out infinite;
}

@keyframes get-free-quote-transparent-btn-breathing-shadow {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(92, 153, 212, 0.0);
    }

    50% {
        box-shadow: 0 0 30px rgba(92, 153, 212, 1);
    }
}

.btn.get-free-quote-transparent-btn:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--blue-color-11);
    color: var(--blue-color-11);
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
}

.btn.get-free-quote-transparent-btn i {
    margin-right: 5px;
    font-size: 13px;
    animation: get-free-quote-btn-icon 2s infinite ease-in-out;
}

@keyframes get-free-quote-btn-icon {
    0% {
        transform: translateX(-3px);
        opacity: 0.8;
    }

    50% {
        transform: translateX(3px);
        opacity: 1;
    }

    100% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
}

.btn.plan-pricing-btn {
    background-color: transparent;
    border: 1px solid var(--blue-color-11);
    color: var(--blue-color-11);
    animation: plan-pricing-btn-breathing-shadow 3.5s ease-in-out infinite;
}

@keyframes plan-pricing-btn-breathing-shadow {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(92, 153, 212, 0.0);
    }

    50% {
        box-shadow: 0 0 30px rgba(92, 153, 212, 1);
    }
}

.btn.plan-pricing-btn:hover {
    background-color: var(--blue-color-3);
    border: 1px solid var(--blue-color-11);
    color: var(--blue-color-11);
    font-weight: 600;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
}

.btn.plan-pricing-btn i {
    margin-right: 5px;
    font-size: 13px;
    animation: plan-pricing-btn-icon 2s infinite ease-in-out;
}

@keyframes plan-pricing-btn-icon {
    0% {
        transform: translateY(-5px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }

    100% {
        transform: translateY(-5px);
        opacity: 0.8;
    }
}

.banner-button {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.get-free-quote-lite-btn {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--blue-color-11);
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 1);
}

.btn.get-free-quote-lite-btn:hover {
    background-color: var(--blue-color-9);
    color: var(--blue-color-1);
    box-shadow: 5px 8px 8px rgba(37, 92, 153, 1);
}

.btn.get-free-quote-lite-btn i {
    margin-right: 5px;
    font-size: 13px;
    animation: get-free-quote-lite-btn-icon 2s infinite ease-in-out;
}

@keyframes get-free-quote-lite-btn-icon {
    0% {
        transform: translateX(-3px);
        opacity: 0.8;
    }

    50% {
        transform: translateX(3px);
        opacity: 1;
    }

    100% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
}

.btn.read-more-btn {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--blue-color-11);
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 1);
}

.btn.read-more-btn:hover {
    background-color: var(--blue-color-9);
    color: var(--blue-color-1);
    box-shadow: 5px 8px 8px rgba(37, 92, 153, 1);
}

.btn.read-more-btn i {
    margin-right: 5px;
    font-size: 13px;
    animation: read-more-icon-wiggle 1s infinite;
    transform-origin: center;
}

@keyframes read-more-icon-wiggle {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(8deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(6deg);
    }

    40% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn.get-free-quote-dark-btn {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--blue-color-9);
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 1);
}

.btn.get-free-quote-dark-btn:hover {
    background-color: var(--primary-color);
    color: var(--blue-color-11);
    box-shadow: 5px 8px 8px rgba(37, 92, 153, 1);
}

.btn.get-free-quote-dark-btn i {
    margin-right: 5px;
    font-size: 13px;
    animation: get-free-quote-dark-btn-icon 2s infinite ease-in-out;
}

@keyframes get-free-quote-dark-btn-icon {
    0% {
        transform: translateX(-3px);
        opacity: 0.8;
    }

    50% {
        transform: translateX(3px);
        opacity: 1;
    }

    100% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
}


/* == Navbar Section Styles == */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: url(../images/common/backgrounds/ad-noise.png) var(--background-color-1);
    border-bottom: 1px solid var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(37, 92, 153, 0.8);
    height: 80px;
}

.navbar .logo {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
    object-fit: contain;
    padding-left: 50px;
}

.logo.dark-mode {
    display: none;
}

body.dark-mode .logo.light-mode {
    display: none;
}

body.dark-mode .logo.dark-mode {
    display: block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--blue-color-11);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
}

.nav-link:hover {
    color: var(--blue-color-6);
}

.nav-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

.nav-item:hover > .dropdown-menu {
    display: block;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

#theme-toggle,
#menu-toggle {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

#theme-toggle i {
    transition: transform 0.3s ease;
}

#theme-icon {
    background: var(--black-1);
    color: var(--blue-color-11);
    font-size: 25px;
    border-radius: 50%;
    padding: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.9);
}

#theme-icon:hover {
    color: var(--blue-color-11);
    border: 1px solid var(--blue-color-11);
    transition: background-color 0.3s ease;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
}

#theme-toggle {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.sidemenu_btn {
    width: 45px;
    height: auto;
    padding: 6px;
    margin-left: 8px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s linear;
}

.sidemenu_btn span {
    height: 4px;
    width: 100%;
    background: var(--blue-color-11);
    display: block;
    margin: auto;
    border-radius: 2px;
    transition: 0.5s ease;
}

.sidemenu_btn span:nth-child(2) {
    margin: 5px 0;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
    width: 60%;
    background-color: var(--tertiary-color);
}

.sidemenu_btn:hover span:nth-child(2) {
    background-color: var(--secondary-color);
}

.sidemenu_btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.sidemenu_btn.open span:nth-child(2) {
    opacity: 0;
}

.sidemenu_btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

body.sidemenu-open {
    overflow: hidden;
}


/* == Side Menu Section Styles == */

#close_side_menu {
    position: absolute;
    top: 12px;
    right: 30px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#close_side_menu::before,
#close_side_menu::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 24px;
    width: 28px;
    height: 5px;
    border-radius: 10px;
    background-color: var(--blue-color-6);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#close_side_menu::before {
    transform: rotate(45deg);
}

#close_side_menu::after {
    transform: rotate(-45deg);
}

#close_side_menu:hover::before {
    transform: rotate(405deg);
}

#close_side_menu:hover::after {
    transform: rotate(-405deg);
}

.side-menu {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    justify-content: space-between;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.side-menu.active {
    display: flex;
}

.side-menu-content {
    display: flex;
    width: 100%;
    height: 100vh;
    color: var(--primary-white);
    overflow-y: auto;
}

.side-menu .side-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1001;
    font-size: 30px;
    color: var(--primary-white);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.menu-right {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    padding-top: 40px;
    padding-right: 100px;
    padding-left: 180px;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
}

.menu-right a {
    position: relative;
    display: inline-block;
}

.menu-right a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue-color-6);
    transition: width 0.3s ease;
}

.menu-right a:hover::after {
    width: 100%;
}

.main-menu {
    list-style: none;
    padding: 0;
}

.main-menu li {
    margin: 20px 0;
}

.main-menu li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--blue-color-9);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 100;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-menu li a:hover {
    transform: translateX(51px);
    color: var(--blue-color-6);
}

.menu-left {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.menu-left h2.side-menu-left-heading {
    font-size: 75px;
    margin-bottom: 5px;
    letter-spacing: 3px;
    color: var(--blue-color-9);
}

.menu-left h2.side-menu-left-sub-heading {
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-color-9);
}

.menu-left p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--blue-color-9);
}

.side-menu-copyright {
    font-size: 16px !important;
    color: var(--blue-color-9);
    margin-top: -10px !important;
}

.side-menu-copyright a {
    font-size: 16px !important;
    color: var(--blue-color-9);
    margin-top: -10px !important;
    text-decoration: none;
}

.side-menu-copyright a:hover {
    color: var(--blue-color-6);
}

/* == Side Menu Section Styles - Social Media Icons == */

.social-icons ul {
    margin-top: 20px;
}

.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 var(--primary-white);
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icons ul li a:hover {
    transform: translateY(-8px);
}

.linked-in-hover:hover {
    color: var(--linkedin);
    transition: all 0.5s ease;
    background-color: var(--blue-color-9);
    border-color: var(--linkedin);
    transform: translateY(-8px);
}

.twitter-x-hover:hover {
    color: var(--twitter-x);
    transition: all 0.5s ease;
    background-color: var(--blue-color-9);
    border-color: var(--twitter-x);
    transform: translateY(-8px);
}

.instagram-hover:hover {
    color: var(--instagram);
    transition: all 0.5s ease;
    background-color: var(--blue-color-9);
    border-color: var(--instagram);
    transform: translateY(-8px);
}

.facebook-hover:hover {
    color: var(--facebook);
    transition: all 0.5s ease;
    background-color: var(--blue-color-9);
    border-color: var(--facebook);
    transform: translateY(-8px);
}

.youtube-hover:hover {
    color: var(--youtube);
    transition: all 0.5s ease;
    background-color: var(--blue-color-9);
    border-color: var(--youtube);
    transform: translateY(-8px);
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: var(--blue-color-11);
    margin: 30px 20px;
}

/* == Side Menu Section Styles - Responsive Code == */

@media (max-width: 991px) {
    .navbar-nav {
        display: none !important;
    }

    .dropdown-menu,
    .mega-menu-wrapper {
        display: none !important;
        visibility: hidden !important;
    }

    .navbar-actions {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar .logo {
        height: 40px;
        padding-left: 10px;
        transition: opacity 0.3s ease;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .navbar .get-started-btn {
        display: none !important;
    }

    .side-menu-content {
        display: flex;
        flex-direction: column-reverse;
        height: 90vh;
    }

    .menu-left,
    .menu-right {
        flex: unset;
        width: 100%;
        padding: 40px 30px;
        background: rgba(0, 0, 0, 0.7);
    }

    .menu-right {
        max-height: none;
        overflow: visible;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-right: 40px;
        padding-left: 40px;
    }

    .main-menu li {
        margin: 20px 0;
    }

    .main-menu li a {
        font-size: 18px;
        font-weight: 100;
        letter-spacing: 1px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .main-menu li a:hover {
        transform: translateX(25px);
    }

    .submenu a {
        margin-bottom: 10px;
        font-size: 15px !important;
        font-weight: 100;
        letter-spacing: 1px;
    }

    .menu-left {
        display: block;
        padding: 10px 0px 70px 0px;
    }

    .menu-left h2 {
        font-size: 22px;
        margin-bottom: -10px;
    }

    .menu-left p {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .menu-left h2.side-menu-left-heading {
        font-size: 45px;
    }

    .menu-left h2.side-menu-left-sub-heading {
        font-size: 20px;
    }

    .menu-left p {
        font-size: 13px;
    }

    .side-menu-copyright {
        font-size: 12px !important;
    }

    .sidemenu_btn {
        margin-left: 20px;
    }
}


/* == Contact Modal Section Styles == */

.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 10px;
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.contact-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 18px;
    padding: 20px;
    background: url(../images/common/backgrounds/ad-noise.png) var(--background-color-1);
    border: 1px dashed rgba(255, 255, 255, 0.25);
}

.contact-modal-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);
}

.contact-modal-we-deliver-box {
    margin-top: 40px;
    padding: 20px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    position: relative;
}

.contact-modal-contact-form-title {
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-modal-we-deliver-title {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-color-1);
    padding: 4px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--h2-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-modal-we-deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.contact-modal-we-deliver-item {
    text-align: center;
}

.contact-modal-we-deliver-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.contact-modal-we-deliver-item p {
    font-size: 16px;
    margin: 0;
    color: var(--p-color);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.contact-modal-close::before,
.contact-modal-close::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 20px;
    width: 24px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--blue-color-11);
}

.contact-modal-close::before {
    transform: rotate(45deg);
}

.contact-modal-close::after {
    transform: rotate(-45deg);
}

/* == Contact Modal Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .contact-modal-contact-form-title {
        font-size: 26px !important;
    }

    .contact-modal-content {
        padding: 15px;
    }

    .contact-modal-form-card {
        padding: 15px;
    }

    .contact-modal-we-deliver-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-modal-we-deliver-title {
        top: -18px;
        font-size: 16px;
    }

    .contact-modal-we-deliver-emoji {
        font-size: 30px;
    }

    .contact-modal-we-deliver-item p {
        font-size: 12px;
    }
}


/* == Breadcrumb Banner Section Styles == */

.breadcrumb-banner {
    width: 100%;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.06;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-title {
    color: var(--blue-color-11);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav a:hover {
    color: var(--blue-color-9);
}

.breadcrumb-current {
    color: var(--blue-color-11);
    font-weight: 700;
}

.breadcrumb-separator {
    opacity: 0.6;
}


/* == CTA Section Styles == */

.call-to-action {
    padding: 90px 20px 30px 20px;
    background: url('../images/increst-va-newsletter.jpg') center center / cover no-repeat fixed;
    text-align: center;
    color: var(--blue-color-11);
    position: relative;
}

.call-to-action::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.call-to-action .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.call-to-action .cta-icon i {
    font-size: 55px;
    margin-left: 5px;
    color: var(--blue-color-11);
}

.call-to-action h2 {
    text-align: center;
}

/* == CTA Section Styles - Responsive Code == */

@media (max-width: 768px) {

    .call-to-action h2,
    .call-to-action p {
        text-align: center;
    }
}


/* == Back To Top Button Styles == */

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 22px;
    background: url(../images/common/backgrounds/ad-noise.png) rgba(0, 255, 120, 0.12);
    border: 1px solid rgba(0, 255, 120, 0.35);
    color: rgba(200, 255, 220, 0.95);
    outline: none;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 50px;
    transition: 0.3s;
}

#backToTop:hover {
    background: rgba(0, 255, 120, 0.32);
    border: 1px solid rgba(0, 255, 120, 0.65);
    color: rgba(0, 0, 0, 0.95);
}


/* == Footer Section Styles == */

.footer {
    padding: 10px 20px 30px 20px;
    background: url(../images/common/backgrounds/noise.png) var(--primary-black);
    color: var(--text-color);
}

.footer-container {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo-side {
    flex-basis: 35%;
    min-width: 200px;
}

.footer-logo-img {
    height: 60px;
}

.footer-tagline {
    font-size: 20px;
    padding-bottom: 10px;
}

.footer-description {
    font-size: 13px;
    font-style: italic;
}

/*Social Icons*/
.footer-social-icons ul {
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 10px;
    transition: transform 0.5s;
}

.footer-social-icons ul li {
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.footer-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 var(--primary-white);
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social-icons ul li a:hover {
    transform: translateY(-8px);
}

.footer .footer-button {
    margin-top: 30px;
}

.footer .footer-button h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-white);
}

.footer .footer-button p {
    margin-bottom: 30px;
}

.footer-column {
    flex-basis: 35%;
    min-width: 150px;
}

.footer-column:nth-child(2) {
    flex-basis: 35%;
}

.footer-column:nth-child(3) {
    flex-basis: 35%;
}

.footer-column.contact {
    flex-basis: 45%;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 16px;
    padding-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    font-weight: 600;
    transform: translateX(8px);
}

.contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px;
    transition: background 0.3s ease-in-out;
    text-align: left;
    font-weight: 800;
}

.contact p i {
    font-size: 16px;
    color: var(--primary-white);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.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);
}

/* Horizontal Divider */
.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--white-3);
    margin: 20px 0;
}

.footer-awards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 140px;
    padding-top: 20px;
    padding-bottom: 35px;
}

.footer-awards-row img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-awards-row img:hover {
    transform: scale(1.05);
}

.footer-top-nav {
    background-color: var(--black-bg-6);
    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: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    text-transform: lowercase;
}

.footer-top-nav ul li a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-menu-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 40px 80px;
}

.footer-links {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

/* Footer Bottom Section */
.footer-bottom {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: var(--primary-white);
    text-decoration: none;
}

.copyright a {
    font-size: 14px;
    color: var(--primary-white);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--primary-color);
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--primary-color);
}


.footer-disclaimer {
    font-size: 12px;
    font-style: italic;
    width: 100%;
    padding: 3px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-disclaimer span {
    font-weight: 600;
    font-style: normal;
}

/* == Footer Section Styles - Responsive Code == */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 30px 10px;
    }

    .footer-tagline {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .footer-awards-row {
        gap: 40px;
        padding-top: 20px;
        padding-bottom: 35px;
    }

    .footer-awards-row img {
        width: 60px;
        height: 60px;
    }

    .footer-awards-row img:hover {
        transform: scale(1.05);
    }

    .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;
    }

    .contact p i {
        font-size: 14px;
    }

    .contact p a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .footer .footer-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1px;
        margin-bottom: 30px;
    }

    .footer .footer-button h4 {
        font-size: 16px;
    }

    .footer .footer-button p {
        font-size: 14px;
    }

    .footer-top-nav ul li a {
        font-size: 12px;
    }

    .footer-menu-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 1px;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0;
        width: 100%;
        text-align: left;
        align-items: start;
        overflow-x: hidden;
    }

    .footer-links {
        width: auto;
        margin: 0;
    }

    .footer-links h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .footer-links ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        font-size: 14px;
        text-decoration: none;
        color: var(--primary-white);
    }

    .footer-disclaimer {
        padding: 10px 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 15px;
    }

}

@media (min-width: 769px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
    }

    .footer-columns-wrapper {
        display: contents;
    }

    .footer-column {
        flex-basis: 20%;
    }

    .footer .footer-button {
        display: flex;
        justify-content: flex-start;
    }

    .footer .footer-button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}



/* ==================== 
        Home Page Styles 
        ==================== */

/* == Home Page - Loader Section Styles == */

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
}

#page-loader .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

#loader-brand {
    position: relative;
    z-index: 3;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: var(--blue-color-11);
}

#loader-brand .brand-sub {
    text-transform: uppercase;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

#loader-brand .tagline {
    font-size: 22px;
    font-weight: normal;
    font-family: 'Raleway', sans-serif;
    color: var(--primary-white);
    letter-spacing: 2px;
}

#loader-count {
    font-size: 300px;
    opacity: 0.1;
    z-index: 2;
    position: absolute;
    margin-bottom: 200px;
    color: var(--primary-white);
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

@media (max-width: 768px) {
    #loader-brand {
        font-size: 28px;
    }

    #loader-brand .brand-sub {
        font-size: 20px;
    }

    #loader-brand .tagline {
        font-size: 15px;
        margin-top: -10px;
        margin-left: 15px;
        margin-right: 15px;
    }

    #loader-count {
        font-size: 150px;
        margin-bottom: 125px;
    }
}


/* == Home Page - Banner Section Styles == */

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    transition: opacity 0.35s ease;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 1;
    pointer-events: none;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner-content .banner-label {
    color: var(--blue-color-11) !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 28px !important;
    margin-top: 80px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.banner-content .heading {
    font-size: 75px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: var(--blue-color-1);

    text-shadow:
        0 0 4px rgba(149, 188, 228, 0.8),
        0 0 10px rgba(149, 188, 228, 0.6),
        0 0 20px rgba(149, 188, 228, 0.4),
        0 0 40px rgba(149, 188, 228, 0.25);
}

.banner-content .text {
    font-size: 28px;
    margin-bottom: 40px;
    font-family: 'Raleway', sans-serif;
}

/* == Home Page - Banner Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .banner-content {
        width: 90%;
        max-width: 100%;
        padding: 0 15px;
    }

    .banner-video {
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
        z-index: 1;
        pointer-events: none;
    }

    .banner-swiper .swiper-slide img {
        width: auto;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .banner-content .section-label {
        font-weight: 600;
        font-size: 14px !important;
        text-align: center;
        margin-top: 80px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .banner-content .heading {
        font-size: 30px;
        margin-top: 10px;
        letter-spacing: 1px;
    }

    .banner-content .text {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 30px;
    }

}


/* == Home Page - Who We Are Section Styles == */

.who-we-are {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.who-we-are .content {
    flex: 1 1 500px;
}

.badges {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.badges img {
    max-height: 140px;
    object-fit: contain;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1000px;
}

.who-we-are-buttons {
    display: flex;
    gap: 12px;
}

.readmore-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.readmore-modal-content {
    background: url(../images/common/backgrounds/ad-noise.png) var(--background-color-2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.readmore-modal .close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-black);
    cursor: pointer;
    z-index: 10;
}

.readmore-modal-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--black);
}

.readmore-modal-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.readmore-modal-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--secondary-black);
    margin-bottom: 30px;
}

.readmore-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.stat-box {
    max-width: 240px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 1);
}

.stat-box:hover {
    animation: who-we-are-breathe 1.5s ease-in-out infinite;
    box-shadow: 5px 8px 8px rgba(37, 92, 153, 0.9);
}

@keyframes who-we-are-breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.shift-down {
    margin-top: 60px;
}

.stat-box img {
    height: 75px;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 50px;
    font-family: 'Monserrat', sans-serif;
    color: var(--primary-color);
    margin: 0;
}

.stat-box p {
    font-size: 16px;
    margin-top: 8px;
    color: var(--p-color);
}

/* == Home Page - Who We Are Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .who-we-are {
        padding: 90px 0 30px 0;
    }

    .who-we-are-buttons {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .who-we-are-buttons .btn {
        margin-left: 0;
    }

    .badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .badges img {
        max-height: 85px;
    }

    .stats-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .stats-grid .stat-box {
        flex: 1 1 auto;
        width: 100%;
        max-width: 300px;
        padding: 25px;
        margin: 20px auto;
        text-align: left;
        box-sizing: border-box;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .stat-box img {
        height: 60px;
    }

    .shift-down {
        margin-top: -20px;
    }

    .readmore-modal .close {
        top: 05px;
        right: 15px;
    }
}


/* == Home Page - What We Do Section Styles == */

.what-we-do {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.what-we-do .what-we-do-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-we-do .what-we-do-cards-with-icon {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 1);
}

.what-we-do .what-we-do-cards-with-icon:hover {
    animation: what-we-do-breathe 1.5s ease-in-out infinite;
    box-shadow: 5px 8px 8px rgba(37, 92, 153, 0.9);
}

@keyframes what-we-do-breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.what-we-do .what-we-do-cards-with-icon .icon-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.what-we-do .what-we-do-cards-with-icon .img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.what-we-do .what-we-do-cards-with-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.what-we-do .what-we-do-cards-with-icon h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--h2-color);
    text-align: left;
}

.what-we-do .what-we-do-cards-with-icon p {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    color: var(--p-color);
    text-align: left;
    line-height: 1.5;
}

.what-we-do .what-we-do-cards-with-icon .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-we-do-bullets {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.what-we-do-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--blue-color-8);
    margin-top: 3px;
}


/* == Home Page - What We Do Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .what-we-do {
        padding: 90px 0 30px 0;
    }

    .what-we-do .what-we-do-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-we-do .what-we-do-cards-with-icon {
        padding: 15px;
    }

    .what-we-do .what-we-do-cards-with-icon .img {
        width: 45px;
        height: 45px;
    }

    .what-we-do .what-we-do-cards-with-icon h2 {
        font-size: 16px;
    }

    .what-we-do .what-we-do-cards-with-icon p {
        font-size: 13px;
    }

    .what-we-do .btn.get-free-quote-dark-btn {
        margin-top: -5px;
        margin-bottom: 20px;
    }
}


/* == Home Page - How It Works Section Styles == */

.how-it-works {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.how-it-works-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
}

.how-it-works-card {
    position: relative;
    border-radius: 16px;
    padding: 80px 20px 50px 20px;
    text-align: center;
    width: 310px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.how-it-works-card:hover {
    border: 1px solid var(--blue-color-11);
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(92, 153, 212, 0.5);
}

.how-it-works-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--h3-color);
}

.how-it-works-card p {
    font-size: 18px;
    color: var(--text-color);
}

.how-it-works-card.primary {
    background-color: var(--background-color-1);
}

.how-it-works-card.secondary {
    background-color: var(--background-color-2);
}

.how-it-works-card.tertiary {
    background-color: var(--background-color-1);
}

.how-it-works-card.quaternary {
    background-color: var(--background-color-2);
}

.icon-box {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--blue-color-1);
}

.icon-box img {
    width: 70px;
    height: 70px;
}

/* == Home Page - How It Works Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .how-it-works {
        padding: 90px 0 30px 0;
    }

    .how-it-works-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .how-it-works-card {
        width: 100%;
        max-width: 320px;
        margin-bottom: 50px;
    }

    .how-it-works-card-bottom {
        width: 100%;
        max-width: 320px;
    }

    .how-it-worksrvice-card h3 {
        font-size: 22px;
    }

    .how-it-works-card p {
        font-size: 15px;
    }

    .how-it-works .btn.get-free-quote-dark-btn {
        margin-top: -45px;
        margin-bottom: -20px;
    }
}


/* == Home Page - Pricing Section Styles == */

.pricing {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.pricing-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--blue-color-9);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin: 0 15px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: var(--blue-color-6);
    color: var(--blue-color-1);
    border: 1px solid var(--blue-color-1);
    animation: pricing-tabs-button-active 2.5s infinite ease-in-out;
}

@keyframes pricing-tabs-button-active {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(92, 153, 212, 0.0);
    }

    50% {
        box-shadow: 0 0 30px rgba(92, 153, 212, 1);
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(30, 115, 190, 0.4);
}

.pricing-card h3 span {
    font-size: 80px;
    font-weight: 800;
    color: var(--blue-color-7);
}

.pricing-card h2 {
    font-size: 32px;
    margin: 15px 0;
    font-weight: 700;
    color: var(--blue-color-10);
}

.pricing-card h2 span {
    font-size: 16px;
    color: var(--blue-color-7);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin: 10px 0;
    color: var(--primary-white);
    padding: 0 0 5px 10px;
}

.pricing-card.featured {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-1);
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card.featured h3 span {
    color: var(--primary-white);
}

.pricing-free-consultation-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--primary-white);
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    animation: pricing-free-consultation-btn-wiggle 1.5s infinite;
}

@keyframes pricing-free-consultation-btn-wiggle {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(3deg);
    }

    20% {
        transform: rotate(-3deg);
    }

    30% {
        transform: rotate(2deg);
    }

    40% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(1deg);
    }

    60% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.pricing-free-consultation-btn:hover {
    background: var(--primary-white);
    color: var(--blue-color-1);
    border: 1px solid var(--blue-color-1);
    animation: pricing-free-consultation--active 2.5s infinite ease-in-out;
}

@keyframes pricing-free-consultation--active {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(92, 153, 212, 0.0);
    }

    50% {
        box-shadow: 0 0 30px rgba(92, 153, 212, 1);
    }
}

.pricing .what-you-get-with-plan {
    width: 100%;
    margin: 30px auto;
    text-align: left;
}

.pricing .what-you-get-with-plan h2 {
    font-size: 36px;
}

.pricing .what-you-get-with-plan h4 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.pricing .what-you-get-with-plan i {
    color: var(--blue-color-11);
}


/* == Home Page - Pricing Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .pricing {
        padding: 90px 0 30px 0;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tab-button {
        width: 100%;
        flex: none;
        margin: 0;
        font-size: 14px;
        box-sizing: border-box;
    }

    .pricing-section .intro h2 {
        font-size: 30px;
    }

    .pricing-section .intro h4 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .pricing .what-you-get-with-plan {
        margin: 0;
    }

    .pricing .btn.get-free-quote-lite-btn {
        margin-top: -10px;
        margin-bottom: 10px;
    }
}


/* == Home Page - Testimonial Section Styles == */

.testimonials {
    padding: 90px 20px 30px 20px;
}

.testimonials-items {
    flex: 1 1 100%;
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.testimonials .testimonials-container {
    width: 100%;
    padding: 30px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.testimonials-carousel {
    width: 100%;
    display: flex;
    gap: 20px;
    transition: transform .6s ease;
    will-change: transform;
}

.testimonials-card {
    flex: 0 0 calc(25% - 15px);
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    background: var(--blue-color-1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 3px 6px 6px rgba(0, 0, 0, 1);
}

.testimonials-video-thumb {
    position: relative;
    cursor: pointer;
}

.testimonials-video-thumb img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.testimonials-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .92);
    width: 60px;
    height: 60px;
    border: 1px solid var(--blue-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue-color-1);
}

.testimonials-card-content {
    padding: 14px 16px 18px;
}

.testimonials-quote {
    font-size: 14px;
    line-height: 1.5;
}

.testimonials-client {
    font-size: 14px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.testimonials-carousel-btn-left {
    background: transparent;
    color: var(--blue-color-11);
    border: 1px solid var(--blue-color-11);
    padding: 10px 30px;
    border-radius: 20px 1px 1px 20px;
    cursor: pointer;
    margin: 20px 0 0 0;
    font-weight: 600;
}

.testimonials-carousel-btn-left:hover {
    background: var(--blue-color-6);
    opacity: .95;
    transform: translateX(-10px);
}

.testimonials-carousel-btn-right {
    background: transparent;
    color: var(--blue-color-11);
    border: 1px solid var(--blue-color-11);
    padding: 10px 30px;
    border-radius: 1px 20px 20px 1px;
    cursor: pointer;
    margin: 20px 0 0 0;
    font-weight: 600;
}

.testimonials-carousel-btn-right:hover {
    background: var(--blue-color-6);
    opacity: .95;
    transform: translateX(10px);
}

.testimonials-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.testimonials-video-modal.show {
    display: flex;
}

.testimonials-video-modal-box {
    width: 100%;
    max-width: 900px;
    background: var(--blue-color-1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.testimonials-video-modal iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}

.testimonials-video-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    color: var(--blue-color-11);
    font-size: 26px;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* == Home Page - Testimonial Section Styles - Responsive Code == */

@media (max-width: 1024px) {
    .testimonials-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 90px 0 30px 0;
    }

    .testimonials .testimonials-container {
        padding: 0 20px;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .testimonials-card {
        flex: 0 0 100%;
    }
}


/* == Home Page - FAQ Section Styles == */

.faq {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.faq-columns-wrapper {
    width: 100%;
    display: flex;
    gap: 30px;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    background: rgba(0, 255, 120, 0.12);
    border: 1px solid rgba(0, 255, 120, 0.35);
    color: rgba(200, 255, 220, 0.95);
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 120, 0.22);
    color: var(--blue-color-11);
}

.faq-icon {
    margin-right: 15px;
    font-size: 30px;
    font-weight: 600;
    color: var(--blue-color-11);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(405deg);
}

.faq-answer {
    display: none;
    padding: 15px;
    border-left: 1px solid var(--blue-color-11);
    border-right: 1px solid var(--blue-color-11);
    border-bottom: 1px solid var(--blue-color-11);
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    color: var(--primary-black);
    background: rgba(0, 255, 120, 0.12);
}

.faq-item .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-section .container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 80px;
}

/* == Home Page - FAQ Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .faq {
        padding: 90px 0 30px 0;
    }

    .faq-columns-wrapper {
        flex-direction: column;
    }
}


/* == Home Page - Industry We Work Section Styles == */

.industry-we-work {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.industry-we-work .industry-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-we-work .industry-we-work-cards-with-icon {
    background: url(../images/common/backgrounds/ad-noise.png) var(--background-color-1);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 3px 6px 6px rgba(0, 0, 0, 1);
}

.industry-we-work .industry-we-work-cards-with-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-we-work .industry-we-work-cards-with-icon .icon-text {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.industry-we-work .industry-we-work-cards-with-icon .img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.industry-we-work .industry-we-work-cards-with-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-we-work .industry-we-work-cards-with-icon img:hover {
    animation: how-it-works-contact-icon-wiggle 1.5s infinite;
}

@keyframes how-it-works-contact-icon-wiggle {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(8deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(6deg);
    }

    40% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.industry-we-work .industry-we-work-cards-with-icon p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--p-color);
}

/* == Home Page - Industy We Work Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .industry-we-work {
        padding: 90px 0 30px 0;
    }

    .industry-we-work .industry-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-we-work .industry-we-work-cards-with-icon {
        padding: 10px;
    }

    .industry-we-work .industry-we-work-cards-with-icon .img {
        width: 40px;
        height: 40px;
    }

    .industry-we-work .industry-we-work-cards-with-icon p {
        font-size: 14px;
    }
}


/* == Home Page - Contact Section Styles == */

.contact-section {
    padding: 90px 20px 40px 20px;
    color: var(--text-color);
}

.contact-section .content {
    margin-bottom: 0;
}

.contact-columns {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.contact-left {
    flex: 1;
    min-width: 320px;
}

.contact-right {
    flex: 1;
    min-width: 320px;
}

.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);
}

.contact-form-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--h2-color);
    margin-bottom: 26px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.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 rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 10px 12px;
}

.form-field i {
    font-size: 14px;
    color: var(--p-color);
    min-width: 18px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    padding: 8px 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.form-field select option {
    background: var(--blue-color-1);
    color: var(--blue-color-6);
    font-weight: 600;
}

.form-field select {
    background-color: transparent;
    color: var(--text-color);
    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(--p-color);
}

.form-consent input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
}

.form-consent a {
    color: var(--blue-color-7);
    text-decoration: none;
    font-weight: 700;
}

.form-consent a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 16px 18px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 14px;
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
    color: var(--blue-color-11);
    border: 1px solid var(--blue-color-11);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    background: var(--blue-color-1);
}

.we-deliver-box {
    margin-top: 40px;
    padding: 20px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    position: relative;
}

.we-deliver-title {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-color-1);
    padding: 4px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--h2-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.we-deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.we-deliver-item {
    text-align: center;
}

.we-deliver-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.we-deliver-item p {
    font-size: 16px;
    margin: 0;
    color: var(--p-color);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.25s ease, background 0.25s ease;
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
}

.contact-card-icon {
    width: 52px;
    min-width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-icon i {
    font-size: 30px;
    color: var(--blue-color-7);
}


.contact-card-body {
    flex: 1;
}

.contact-card-body h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue-color-6);
    margin: 0 0 8px 0;
}

.contact-card-body p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    color: var(--blue-color-8);
}

.contact-card-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--blue-color-10);
}

.contact-card-links a {
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-white);
}

.contact-card-links a:hover {
    color: var(--primary-color);
}

.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(200, 255, 220, 0.95);
}

.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: url(../images/common/backgrounds/ad-noise.png) var(--background-color-1);
    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: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
}

.thankyou-close {
    position: absolute;
    top: 12px;
    right: 60px;
    font-size: 32px;
    border: none;
    background: transparent;
    color: var(--blue-color-11);
    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(--blue-color-11);
    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;
}

/* == Home Page - Contact Section Styles - Responsive Code == */

@media (max-width: 786px) {
    .contact-section {
        padding: 90px 0 30px 0;
    }

    .contact-columns {
        flex-direction: column;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .we-deliver-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .we-deliver-title {
        font-size: 18px;
    }

    .contact-title {
        font-size: 36px;
    }

    .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;
    }

    .we-deliver-emoji {
        font-size: 30px;
        display: block;
        margin-bottom: 8px;
    }

    .we-deliver-item p {
        font-size: 12px;
    }
}

/* === Home Page CSS Style Ends Here === */


/* == Privacy Page Main Section Styles == */

.privacy-main-page {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.privacy-main-page h3 {
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--h2-color);
    text-align: left;
}

.privacy-main-page ul {
    margin-left: 22px;
    line-height: 1.6;
}

.privacy-main-page a {
    text-decoration: none;
    color: var(--p-color);
}

.privacy-main-page a:hover {
    text-decoration: none;
    color: var(--blue-color-6);
}

/* == Privacy Page Main Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .privacy-main-page {
        padding: 100px 0 30px 0;
    }

    .privacy-main-page h3 {
        font-size: 22px;
        text-align: left;
    }
}


/* == Terms Page Main Section Styles == */

.terms-main-page {
    padding: 90px 20px 30px 20px;
    color: var(--text-color);
}

.terms-main-page h3 {
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--h2-color);
    text-align: left;
}

.terms-main-page ul {
    margin-left: 22px;
    line-height: 1.6;
}

.terms-main-page a {
    text-decoration: none;
    color: var(--p-color);
}

.terms-main-page a:hover {
    text-decoration: none;
    color: var(--blue-color-6);
}

/* == Terms Page Main Section Styles - Responsive Code == */

@media (max-width: 768px) {
    .terms-main-page {
        padding: 100px 0 30px 0;
    }

    .terms-main-page h3 {
        font-size: 22px;
        text-align: left;
    }
}


/* == Legal Page Card UI Styles == */

.legal-page-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 35px 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.legal-page-header {
    margin-bottom: 18px;
}

.legal-last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    margin-top: 6px;
}

.legal-divider {
    margin: 22px 0 22px 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.10);
}

.legal-contact-box {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    line-height: 1.7;
}

.legal-note {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.privacy-main-page ul,
.terms-main-page ul {
    padding-left: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.privacy-main-page ul li,
.terms-main-page ul li {
    margin-bottom: 8px;
}

/* == Legal Page Card UI Styles - Responsive == */

@media (max-width: 768px) {
    .legal-page-card {
        padding: 22px 18px;
    }
}

/* == Cookie Notice Banner Styles == */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 99999;
    padding: 0 18px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    backdrop-filter: blur(20px);
}

.cookie-banner-text h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--h2-color);
}

.cookie-banner-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--p-color);
}

.cookie-banner-text a {
    color: var(--blue-color-7);
    font-weight: 800;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.cookie-btn-primary {
    background: url(../images/common/backgrounds/ad-noise.png) var(--blue-color-3);
    color: var(--blue-color-11);
    border: 1px solid var(--blue-color-11);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
}

.cookie-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.cookie-close-btn::before,
.cookie-close-btn::after {
    content: '';
    position: absolute;
    top: 6px;
    width: 16px;
    height: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-close-btn::before {
    transform: rotate(45deg);
}

.cookie-close-btn::after {
    transform: rotate(-45deg);
}

.cookie-close-btn:hover::before {
    transform: rotate(405deg);
}

.cookie-close-btn:hover::after {
    transform: rotate(-405deg);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}