/* Fonts */
:root {
    --default-font: "Montserrat", "Arial", sans-serif;
    --heading-font: "Poppins", "Arial", sans-serif;
    --nav-font: "Poppins", "Arial", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.05);

    --navy-blue-color: #004e89;
    --light-navy-blue-color: #bec2c5;
    --gray-dark-color: #f7f9fb;
    --green-light-color: #38b000;
    --imperial-red-color: #d72638;
    --light-gray-color: #fafafa;
    --color-white: #ffffff;
    --color-black: #000000;
    --exatra-light: #ccc;

    --text-color-dark: #000338;
    --text-color-white: var(--color-white);
    --text-color-black: var(--color-black);
    --text-blog-detail-dark: #6c7a89;

    --text-mid-tone: #555;
    --text-low-tone: #444;
    /* #d726384D */

    /* extra gray color #f7f7f7	 */

    --background-color: var(--color-white);
    /* Background color for the entire website, including individual sections */
    --default-color: var(--color-black);
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: var(--color-black);
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #d72638;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: var(--color-white);
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: var(--color-black);
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --background-color-white: var(--color-white);
    --background-color-gray: var(--light-gray-color);

    --color-teal-green-30: #b9e2da;
    --color-teal-green-50: #8acfc2;

    --color-deep-blue: #1e3a8a;
    --color-deep-blue-50: #8e9cc4;
    --color-deep-blue-20: #d2d8e8;

    --card-bg: linear-gradient(
        135deg,
        var(--color-white),
        var(--light-gray-color)
    );

    --bg-light: #f8f9fa;

    --box-shadow-blog-details: rgba(0, 0, 0, 0.1);
    --border-grad: linear-gradient(135deg, #d72638, #1e3a8a);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: var(--color-black);
    /* The default color of the main navmenu links */
    --nav-hover-color: #1e3a8a;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: var(--color-white);
    /* Used as the background color for mobile navigation menu */
    --nav-service-dropdown-background-color: var(--color-white);
    /* Used as the background color for service-dropdown items that appear when hovering over primary navigation items */
    --nav-service-dropdown-color: #444444;
    /* Used for navigation links of the service-dropdown items in the navigation menu. */
    --nav-service-dropdown-hover-color: #1e3a8a;
    /* Similar to --nav-hover-color, this color is applied to service-dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: var(--light-gray-color);
    --surface-color: var(--color-white);
}

.dark-background {
    --background-color: var(--navy-blue-color);
    --default-color: var(--background-color-gray);
    --heading-color: var(--background-color-gray);
    --surface-color: var(--color-black);
    --contrast-color: var(--background-color-gray);
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

* {
    font-family: var(--default-font) !important;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: var(--text-color-white);
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: var(--text-color-white);
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: var(--gray-dark-color);
    --default-color: var(--text-color-white);
    --heading-color: var(--text-color-white);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 400;
    color: var(--heading-color);
}

.cta-btn,
.cta-btn:focus {
    color: var(--contrast-color);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    border: 2px solid var(--imperial-red-color);
}

.cta-btn:hover,
.cta-btn:focus:hover {
    color: var(--text-color-white);
    background: var(--imperial-red-color);
    border-color: var(--imperial-red-color);
    transform: scale(0.9);
}

.book-a-call-cta-btn,
.book-a-call-cta-btn:focus {
    color: var(--contrast-color);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    border: 2px solid var(--imperial-red-color);
}

.book-a-call-cta-btn:hover,
.book-a-call-cta-btn:focus:hover {
    color: var(--text-color-white);
    background: var(--imperial-red-color);
    border-color: var(--imperial-red-color);
    transform: scale(0.9);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header Scroll color
------------------------------*/
.scrolled .header {
    --background-color: var(--text-color-white);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 16px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        /* text-transform: ; */
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
    }

    .navmenu .service-dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-service-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 15px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .service-dropdown ul li {
        min-width: 200px;
    }

    .navmenu .service-dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-service-dropdown-color);
    }

    .navmenu .service-dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .service-dropdown ul a:hover,
    .navmenu .service-dropdown ul .active:hover,
    .navmenu .service-dropdown ul li:hover > a {
        color: var(--nav-service-dropdown-hover-color);
    }

    .navmenu .service-dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .service-dropdown .service-dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .service-dropdown .service-dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-service-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-service-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .service-dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-service-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .service-dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .service-dropdown > .service-dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--text-color-white);
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--text-color-black);
    background-color: var(--gray-dark-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 3px;
    font-size: 14px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
    line-height: 25px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--text-color-white);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer .footer-top {
        padding-top: 40px;
    }

    .footer h4 {
        font-size: 15px;
    }

    .footer .footer-links ul li {
        padding: 8px 0;
    }

    .footer .footer-about {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer .footer-about .logo {
        justify-content: center;
    }

    .footer .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .footer .social-links a {
        margin-right: 8px;
    }

    .footer .copyright,
    .footer .credits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 13px;
    }

    .footer h4 {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .footer .footer-links ul a {
        font-size: 13px;
    }

    .footer .footer-about .logo span {
        font-size: 22px;
    }

    .footer .footer-newsletter .newsletter-form input[type="submit"] {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--text-color-white);
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--background-color-white);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--background-color-white);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

/*---------------------------------------------------------home page start--------------------------------------------------------*/

/*--------------------------------Welcom Section start---------------------------------------*/

#home {
    margin-top: 160px;
    overflow: hidden;
}

/* .home .home-image img {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
} */

/* .hero-image-wrap {
    position: absolute;
    top: -9%;
    right: 0px;
    width: 40%;
    max-width: 600px;
    height: 100%;
} */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home:before {
    content: "";
    background: color-mix(in srgb, var(--background-color));
    position: absolute;
    inset: 0;
    z-index: 2;
}

.home .container {
    position: relative;
    z-index: 3;
}

.tl-main-heading h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color-dark);
    margin-bottom: 30px;
}

#tl-welcome-text {
    padding-right: 25px !important;
}
#tl-welcome-text span {
    font-family: var(--default-font);
    color: var(--imperial-red-color);
}

#small-span-text-color {
    font-family: var(--default-font);
    color: var(--imperial-red-color);
    font-weight: 700 !important;
}

.tl-main-heading p {
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    /* max-width: 800px; */
    /* margin: 0 auto 10px auto; */
}

.tl-expert-text {
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 34px;
}

.tl-wl-section-services {
    margin-top: 6%;
}

.tl-wl-sec-services-header {
    text-align: center;
    margin: 0 auto 60px;
}

.tl-wl-sec-services-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

.tl-wl-sec-services-header h3 {
    font-size: 28px;
    color: var(--text-color-dark);
}

.tl-wl-sec-services-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

/* .tl-wl-sec-services-header p {
    color: var(--text-mid-tone);
    font-size: 18px;
    margin: 5px 0 auto;
    line-height: 1.7;
} */

.tl-wl-sec-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.tl-wl-sec-service-card {
    background: var(--text-color-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tl-wl-sec-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--imperial-red-color);
    color: var(--text-color-white);
}

.tl-wl-sec-service-card.active {
    background-color: var(--imperial-red-color);
    color: var(--text-color-white);
}

.tl-wl-sec-service-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.tl-wl-sec-service-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.tl-wl-sec-service-title span {
    font-weight: 600;
}

.home-page-cta-headline {
    padding-top: 5px;
}

@media (max-width: 600px) {
    .tl-wl-sec-services-header h2 {
        font-size: 28px;
    }

    .tl-wl-sec-services-header h3 {
        font-size: 20px;
    }

    .tl-wl-sec-service-title {
        font-size: 14px;
    }
}

/* Responsive fixes and layout cleanup */
#home {
    margin-top: 100px;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.tl-main-experience {
    margin-top: -25px !important;
}

@media (max-width: 991px) {
    .hero-image-wrap {
        max-width: 300px;
        margin-top: 40px;
    }

    #tl-welcome-text {
        font-size: 28px;
        line-height: 1.4;
        padding-right: 25px;
    }

    .tl-main-heading p {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .tl-wl-sec-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .tl-main-heading h1 {
        font-size: 28px;
    }
    .tl-main-heading p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .tl-wl-sec-services-grid {
        grid-template-columns: 1fr;
    }

    .tl-wl-section-services {
        margin-top: 60px;
    }

    .tl-main-heading,
    .home-page-cta-headline {
        text-align: center;
    }

    .tl-main-heading h1 {
        font-size: 24px;
    }

    .tl-main-heading p {
        font-size: 14px;
        line-height: 24px;
    }

    #tl-welcome-text {
        padding-right: 0px !important;
    }

    .tl-main-experience {
        margin-top: 0 !important;
    }
}

/*--------------------------------Welcom Section End---------------------------------------*/

/*-------------------------about home page section Start----------------------------*/
.tl-about-company-header {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 800px;
}

/* .tl-about-description {
    font-family: var(--default-font);
    font-weight: 500;
} */

.tl-about-company-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

.tl-about-company-header h3 {
    font-size: 28px;
    color: var(--text-color-dark);
}

.tl-about-company-header p {
    margin-top: 20px;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.tl-about-company-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
}

@media (max-width: 768px) {
    .tl-about-why-choose-templyft-header .tl-about-description {
        text-align: center;
    }

    .tl-about-company-header h2 {
        font-size: 28px;
    }

    .tl-about-company-header h3 {
        font-size: 20px;
    }

    .tl-about-company-header p {
        font-size: 16px;
    }
}

/*-------------------------about home page section end----------------------------*/

/*-------------------------Stats home Section start--------------------*/
/* Icon Styling */
.tl-state-icon {
    width: 60px;
    height: auto;
}

/* Header Styling */
.tl-wl-state-header {
    text-align: center;
    margin-bottom: 50px;
}
.tl-wl-state-header h2 {
    color: var(--text-color-white);
}

/* Stats Container Layout */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: var(--imperial-red-color);
}

/* Each Stat Card */
.stats .stats-item {
    background-color: var(--background-color-white);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 250px;
    /* max-width: 300px; */
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stats .stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

.stats-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    display: inline-block;
    margin-right: 20px;
    flex-shrink: 0;
}

.stats-icon path {
    stroke: var(--accent-color); /* Your commercial red */
}
/* Main Value */
.stats .stats-item span {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Label/Text */
.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats .stats-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stats .stats-item span {
        font-size: 28px;
    }

    .stats .stats-item p {
        font-size: 15px;
    }

    .tl-wl-state-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .stats .stats-item {
        padding: 20px;
    }

    .tl-state-icon {
        width: 40px;
    }
}

/*---------------------------------- Stats home Section end-------------------------------------*/

/*--------------------------------Home Page Feedback Section start-------------------------------------*/
.tl-client-feedback-header {
    text-align: center;
    margin-bottom: 50px;
}

.tl-client-feedback-header span {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .tl-client-feedback-header h2 {
        font-size: 20px;
    }
}

/*--------------------------------Home Page Feedback Section End-------------------------------------*/

/*--------------------------------Home Page Section End-------------------------------------*/

/*-------------------------------About page main Section-----------------------------*/

#about-page {
    padding-top: 100px;
}

.who-we-are-section {
    position: relative;
    padding: 60px 0;
    background: var(--background-color-white);
    overflow: hidden;
    z-index: 0;
    color: var(--text-color-dark);
}

/* .hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.hero-wrapper .hero-text {
    flex: 1;
    max-width: 600px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    line-height: 25px;
} */
.purecounter {
    /* margin-top: -22px; */
}

/* .hero-wrapper .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color-dark);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-wrapper .hero-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 18px;
} */

/* .hero-wrapper .hero-text .highlight {
    color: var(--text-color-dark);
    font-weight: 600;
} */

/* .hero-visual {
    flex: 1;
    max-width: 500px;
    text-align: center;
} */

#about-page .hero-img {
    width: 100%;
    border-radius: 24px;
    animation: floatX 6s ease-in-out infinite;
}

.who-we-are-section .tl-about-heading {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 800px;
}

.who-we-are-section .tl-about-heading h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

.who-we-are-section .tl-about-heading h3 {
    font-size: 28px;
    color: var(--text-color-dark);
}

.who-we-are-section .tl-about-heading p {
    margin-top: 20px;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.who-we-are-section .tl-about-heading h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

@keyframes floatX {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* @media (max-width: 992px) { */
/* .hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-wrapper .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-wrapper .hero-text {
        padding: 30px;
    } */
/* } */

.what-we-do-modern {
    padding: 40px 20px;
    /* background: linear-gradient(180deg, #f5faff, #e9f7f7); */
}

.what-we-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.what-we-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

.what-we-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

.what-we-header p {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    line-height: 1.7;
}

.tagline {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--text-color-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.highlight {
    font-weight: 600;
    color: var(--text-color-dark);
}

.what-we-do-modern h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color-dark);
}

.modern-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-row {
    position: relative;
    border-bottom: 1px solid #004e8940;
}

.what-we-do-modern input[type="checkbox"] {
    display: none;
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color-dark);
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    display: block;
    transition: color 0.3s ease;
}

.accordion-title::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 18px;
    font-size: 1.4rem;
    color: var(--navy-blue-color);
    transition: transform 0.3s;
}

input[type="checkbox"]:checked + .accordion-title::after {
    content: "−";
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-color-dark);
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
}

input[type="checkbox"]:checked + .accordion-title + .accordion-body {
    max-height: 150px;
    padding-bottom: 20px;
}

.why-section {
    background: var(--background-color-white);
    padding: 120px 20px;
    overflow: hidden;
    position: relative;
}

.why-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--text-color-dark);
    position: relative;
}

.why-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    -webkit-mask: linear-gradient(var(--text-color-white) 0 0) content-box,
        linear-gradient(var(--text-color-white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

#about-page .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(
        145deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    color: var(--text-color-white);
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
    /* box-shadow: 0 15px 35px rgba(0, 191, 166, 0.3); */
}

/* what our mission */
#about-page .mvv-section {
    background: var(--background-color-white);
    padding: 20px 20px;
    color: var(--default-color);
    text-align: center;
}

#about-page .mvv-title {
    font-size: 2.5rem;
    color: var(--text-color-dark);
    font-weight: 700;
    margin-bottom: 50px;
}

#about-page .mvv-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

.mvv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

#about-page .mvv-block {
    /* background: var(--card-bg); */
    border: 1px solid var(--exatra-light);
    padding: 2rem;
    border-radius: 1.5rem;
    flex: 1 1 450px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

#about-page .mvv-block:hover {
    transform: translateY(-25px);
}

#about-page .mvv-block h3 {
    font-size: 1.75rem;
    color: var(--text-color-dark);
    margin-bottom: 15px;
}

#about-page .mvv-block p {
    font-size: 1.1rem;
    color: var(--text-low-tone);
    max-width: 900px;
    margin: 0 auto;
}

#about-page .mvv-values {
    margin-top: 60px;
}

#about-page .values-heading {
    font-size: 1.8rem;
    color: var(--text-color-dark);
    margin-bottom: 40px;
}

#about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

#about-page .value-card {
    background: var(--card-bg);
    border: 1px solid var(--exatra-light);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

#about-page .value-card:hover {
    transform: translateY(-5px);
}

#about-page .value-icon {
    font-size: 2rem;
    color: var(--imperial-red-color);
    display: block;
    margin-bottom: 12px;
}

#about-page .value-card p {
    font-size: 1rem;
    color: var(--text-mid-tone);
    font-weight: 500;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color-dark);
}

.card-text {
    font-size: 1.05rem;
    color: var(--text-color-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .why-title {
        font-size: 2.4rem;
    }
    .what-we-header h2 {
        font-size: 1.75rem;
    }
    .card-title {
        font-size: 1.3rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .who-we-are-section .tl-about-heading h2 {
        font-size: 28px;
    }

    .who-we-are-section .tl-about-heading h3 {
        font-size: 20px;
    }

    .who-we-are-section .tl-about-heading p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    #about-page .mvv-title {
        font-size: 28px;
    }
}

/*-------------------------about page main section end----------------------------*/

/*-----------------------------Services page main Section start--------------------------------------------*/
/* === Service Page Section === */
.service-page {
    padding-top: 100px;
}

/* === What We Section === */
.service-page .what-we {
    padding: 0px;
    background: var(--background-color-white);
}

.service-page .services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.service-page .services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color-dark);
}

.service-page .services-header p {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    line-height: 1.7;
}

.tl-service-page-company-header {
    margin-bottom: 30px;
}

.tl-service-page-company-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.tl-service-page-description {
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--default-color);
}

.tl-service-second-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    color: var(--heading-color);
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* === Responsive Styles for What We Section === */
@media (max-width: 992px) {
    .tl-service-page-company-header h2 {
        font-size: 2rem;
        text-align: center;
    }

    .tl-service-page-description,
    .tl-service-second-title {
        text-align: center;
    }

    .d-flex.flex-column.flex-md-row {
        justify-content: center;
        align-items: center;
    }

    .service-image {
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .tl-service-page-company-header h2 {
        font-size: 1.75rem;
        margin-top: 25px;
    }

    .tl-service-second-title {
        font-size: 1.1rem;
    }

    .service-page .services-header h2 {
        font-size: 1.75rem;
    }
}

/* === Why Section === */
#service-page .why-section {
    background: var(--background-color-white);
    padding: 100px 20px;
    overflow: hidden;
    position: relative;
}

#service-page .why-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--text-color-dark);
    position: relative;
}

#service-page .why-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

/* === Responsive Grid Layout === */
#service-page .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* === Card Design === */
#service-page .why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

#service-page .why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

#service-page .why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* === Icon Box === */
#service-page .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(
        145deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    color: var(--text-color-white);
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
    /* box-shadow: 0 15px 35px rgba(0, 191, 166, 0.3); */
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* === Card Text === */
#service-page .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color-dark);
}

#service-page .card-text {
    font-size: 1.05rem;
    color: var(--text-color-dark);
    line-height: 1.7;
}

/* === Responsive Adjustments for Why Section === */
@media (max-width: 768px) {
    #service-page .why-title {
        font-size: 2.4rem;
    }

    #service-page .card-title {
        font-size: 1.3rem;
    }

    #service-page .card-text {
        font-size: 1rem;
    }
}

/* === Miscellaneous Image Styling === */
#service-page .img {
    border-radius: 8px;
    overflow: hidden;
}

#service-page .img img {
    transition: 0.6s;
}

#service-page h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

/*-----------------------------Services Page main Section end --------------------------------------------*/

/*-----------------------------Features page main Start-------------------------------*/
.features {
    padding: 60px 0;
    background-color: var(--surface-color);
}

.features .nav-tabs {
    border: none;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.features .nav-item {
    flex: 1 1 180px;
    margin: 5px;
    text-align: center;
}

.features .nav-link {
    background-color: var(--background-color-gray, #f8f9fa);
    color: var(--navy-blue-color);
    border: 1px solid var(--imperial-red-color);
    padding: 20px;
    transition: all 0.4s ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.features .nav-link i {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--imperial-red-color);
    transition: 0.3s;
}

.features .nav-link h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    transition: 0.3s;
}

.features .nav-link:hover,
.features .nav-link:focus {
    background-color: var(--imperial-red-color);
    color: var(--surface-color);
    transform: translateY(-3px);
}

.features .nav-link:hover i,
.features .nav-link:hover h4 {
    color: var(--surface-color);
}

.features .nav-link.active {
    background-color: var(--imperial-red-color);
    color: var(--surface-color);
    border-color: var(--imperial-red-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.features .nav-link.active i,
.features .nav-link.active h4 {
    color: var(--surface-color);
}

.features .tab-content {
    margin-top: 40px;
}

.features .tab-pane h3 {
    color: var(--navy-blue-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.features .tab-pane h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
}

.features .tab-pane ul i {
    color: var(--imperial-red-color);
    margin-right: 8px;
    font-size: 20px;
    line-height: 1;
}

.features .tab-pane p {
    color: #444;
    line-height: 1.7;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 28px;
    }

    .features .nav-link h4 {
        font-size: 14px;
    }
}

.text-gradient {
    background-color: var(--text-color-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.icon-glass {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--imperial-red-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.icon-glass:hover {
    background: var(--imperial-red-color);
    color: var(--surface-color);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--imperial-red-color);
    color: var(--imperial-red-color);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-glass:hover {
    background: var(--imperial-red-color);
    color: var(--contrast-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.animate-fadein {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-----------------------------Features page main End-------------------------------*/

/*-----------------------------Services 2 page main Start------------------------------*/
.services-2 .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
}

.services-2 .service-item .icon {
    font-size: 36px;
    line-height: 0;
    margin-right: 30px;
    color: var(--accent-color);
}

.services-2 .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services-2 .service-item .title a {
    color: var(--heading-color);
    font-size: 18px;
    line-height: 1.7;
}

.services-2 .service-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
}

.services-2 .service-item:hover {
    border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
    color: var(--accent-color);
}

/*-----------------------------Services 2 page main Start End------------------------------*/

/*----------------------------Testimonials page main Start--------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

.section-trusted-glow {
    padding: 100px 30px;
    background: linear-gradient(
        250deg,
        var(--navy-blue-color),
        var(--imperial-red-color)
    );
    color: var(--text-color-white);
    position: relative;
    overflow: hidden;
}

.trusted-glow-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.trusted-glow-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.trusted-glow-header .color-glow {
    background: linear-gradient(90deg, var(--text-color-white), #d1f0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trusted-glow-header p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-top: 20px;
}

.trusted-glow-testimonials {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-glow-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    max-width: 350px;
    position: relative;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trusted-glow-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.quote-mark {
    font-size: 80px;
    line-height: 0.5;
    color: var(--color-deep-blue-20);
    position: absolute;
    top: -30px;
    left: 30px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    /* font-style: italic; */
    margin-bottom: 30px;
    color: #f1f5f9;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.testimonial-user span {
    font-size: 0.9rem;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .trusted-glow-testimonials {
        flex-direction: column;
        align-items: center;
    }

    .trusted-glow-item {
        max-width: 90%;
    }
}

/*----------------------------Testimonials page main End--------------------------------*/

/*----------------------------Portfolio page main Start--------------------------------*/

.portfolio-page {
    padding-top: 100px;
}

#portfolio-page .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(
        145deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    color: var(--text-color-white);
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
    /* box-shadow: 0 15px 35px rgba(0, 191, 166, 0.3); */
}

.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
    background: var(--accent-color);
    color: var(--text-color-white);
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background: var(--background-color-white);
    transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-content:hover img {
    transform: scale(1.1);
}

.portfolio {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.portfolio-filters {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

.portfolio-filters li {
    display: inline-block;
    background: var(--text-color-white);
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
    background: var(--accent-color);
    color: var(--text-color-white);
    border-color: var(--accent-color);
}

.portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    color: var(--text-color-white);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-info h4 {
    background-color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.portfolio-info .preview-link,
.portfolio-info .details-link {
    color: var(--text-color-white);
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.portfolio-info .preview-link:hover,
.portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-content:hover .portfolio-info {
    opacity: 1;
}

@media (max-width: 575px) {
    .portfolio-filters li {
        padding: 8px 16px;
        font-size: 14px;
        margin: 5px;
    }
}

.esp-showcase {
    padding: 80px 0;
    background: var(--background-color-white);
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    /* color: #222; */
}

.section-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtext {
    font-size: 15px;
}

.esp-portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.esp-card {
    background: var(--background-color-white);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 0 calc(33.333% - 30px);
    max-width: 320px;
}

.esp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.esp-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.esp-card:hover img {
    filter: grayscale(0%);
}

.esp-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.esp-card p {
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .esp-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.why-templyft {
    padding: 80px 0;
    background-color: var(--text-color-white);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 0 calc(25% - 30px);
}

.feature-box:hover {
    background: var(--text-color-white);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.icon-wrap {
    font-size: 34px;
    color: var(--imperial-red-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-box {
        flex: 0 0 100%;
    }
}

/*----------------------------------Portfolio cta section----------------------------*/
.portfolio-cta-section {
    background: linear-gradient(135deg, #f8f9fc, var(--text-color-white));
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.cta-content-box {
    padding: 40px 30px;
    background: var(--text-color-white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.cta-subtext {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 0;
}

.cta-buttons .cta-button-primary,
.cta-buttons .cta-button-secondary {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    text-decoration: none;
}

.cta-button-primary {
    background-color: var(--imperial-red-color);
    color: var(--text-color-white);
    border: 2px solid var(--imperial-red-color);
}

.cta-button-primary:hover {
    background-color: var(--background-color-white);
    border-color: var(--imperial-red-color);
    color: var(--imperial-red-color);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--imperial-red-color);
    color: var(--imperial-red-color);
}

.cta-button-secondary:hover {
    background-color: var(--imperial-red-color);
    color: var(--text-color-white);
}

/*----------------------------Portfolio page main End--------------------------------*/

/*---------------------------Portfolio Details page main Start---------------------------------*/

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*---------------------------Portfolio Details page main End---------------------------------*/

/*---------------------------Portfolio Page Form Start---------------------------------*/

.portfolio-page-header {
    background: linear-gradient(
        135deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    color: var(--text-color-white);
    text-align: center;
    padding: 80px 20px 60px;
}

.portfolio-page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-color-white);
}

.portfolio-page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-page-section {
    max-width: 1000px;
    margin: -40px auto 60px;
    background: var(--background-color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.portfolio-page-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy-blue-color);
    font-size: 2rem;
}

.portfolio-page-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
}

.portfolio-page-form input,
.portfolio-page-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--exatra-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.portfolio-page-form input:focus,
.portfolio-page-form select:focus {
    border-color: var(--imperial-red-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(22, 160, 133, 0.2);
}

.portfolio-form-submit-cta {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 8px 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    background: linear-gradient(
        135deg,
        var(--navy-blue-color),
        var(--imperial-red-color)
    );
    color: var(--text-color-white);
}

.portfolio-form-submit-cta,
.portfolio-form-submit-cta:focus {
    color: var(--text-color-white);
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    background: var(--navy-blue-color);
    border: 2px solid var(--navy-blue-color);
}

.portfolio-form-submit-cta:hover,
.portfolio-form-submit-cta:focus:hover {
    color: var(--navy-blue-color);
    background: var(--background-color-white);
    border-color: var(--navy-blue-color);
}

.portfolio-page-form .portfolio-page-button-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .portfolio-page-header h1 {
        font-size: 2.2rem;
    }

    .portfolio-page-section {
        padding: 30px 20px;
    }

    .portfolio-page-form button {
        grid-column: span 1;
    }
}

/*---------------------------Portfolio Page Form End---------------------------------*/

/*---------------------------Service Details page main Start---------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*---------------------------Service Details page main End---------------------------------*/

/*--------------------------Pricing main page start --------------------------------------*/

.pricing-page {
    padding-top: 80px;
}

.tl-pricing-page-company-header h2 {
    font-size: 50px;
}

.tl-pricing-page-description {
    font-size: 20px;
}

.pricing-hero {
    background: #f8fbfd;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.pricing-intro {
    max-width: 850px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f3057;
    margin-bottom: 1.5rem;
}

.pricing-description {
    font-size: 1.1rem;
    /* color: #444; */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-description .highlight {
    color: var(--text-color-dark);
    font-weight: 600;
}

.tl-pricing-section {
    background-color: var(--light-gray-color);
    margin-bottom: 20px;
}

.tl-pricing-border {
    border: 1px solid #ddd;
}

.tl-pricing-rounded {
    border-radius: 8px;
}

.tl-pricing-padding {
    padding: 16px;
}

.tl-pricing-list li {
    margin-bottom: 8px;
    font-size: 16px;
    /* color: #004e89; */
}

.tl-pricing-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tl-pricing-heading {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.tl-pricing-price {
    font-weight: bold;
    color: var(--navy-blue-color);
}

.guarantee-note {
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--background-color-gray);
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    /* margin-top: 1rem; */
}
#pricing-page .border-primary {
    border: 1px solid var(--navy-blue-color) !important;
}
.text-color-pricing {
    font-weight: 800;
}

.pricing-card {
    background: var(--background-color-white);
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.price {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--navy-blue-color);
    margin: 10px 0 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.feature-list li {
    font-size: 15px;
    padding: 6px 0;
    color: #333;
}

.delivery-info p {
    font-size: 14px;
    margin: 0;
}

.btn-order {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--imperial-red-color);
    color: var(--text-color-white);
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

.badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--navy-blue-color);
    color: var(--background-color-white);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 12px;
}

/* Payment Section */
.payment-section {
    padding: 20px 20px;
    background: var(--background-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Header */
.payment-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.payment-header p {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 60px;
}

/* Payment Options */
.payment-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-card {
    background: #0f172a;
    color: var(--text-color-white);
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-10px);
    background: #1e293b;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container img {
    width: 40px;
    height: 40px;
}

/* Text inside card */
.payment-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--background-color-white);
}

.payment-card p {
    font-size: 16px;
    color: var(--background-color-gray);
}

/* Footer */
.payment-footer {
    margin-top: 60px;
}

.btn-place-an-order {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
    background: linear-gradient(
        135deg,
        var(--navy-blue-color),
        var(--imperial-red-color)
    );
    color: var(--text-color-white);
}

.btn-place-an-order:hover {
    background: linear-gradient(
        135deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    color: var(--text-color-white);
}

.support-link {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-color-dark);
    text-decoration: none;
}

.support-link:hover {
    color: var(--text-color-dark);
    text-decoration: underline;
}

.email-contact {
    margin-top: 25px;
    font-size: 16px;
    color: #475569;
}

.email-contact a {
    color: var(--text-color-dark);
    text-decoration: none;
    font-weight: 600;
}

.email-contact a:hover {
    text-decoration: underline;
    color: var(--text-color-dark);
}

.faqs {
    padding: 2rem 1rem;
    background: var(--background-color-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-heading {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.faq-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--imperial-red-color);
    margin: 0.8rem auto 0;
    border-radius: 4px;
}

.faq {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--text-color-dark) 4b;
}

.faq:last-child {
    border-bottom: none;
}

.faq h3 {
    font-size: 1.1rem;
    color: var(--text-color-black);
    margin-bottom: 0.5rem;
}

.faq p {
    font-size: 1rem;
    color: var(--text-color-black);
    line-height: 1.6;
    margin: 0;
}

/*--------------------------Pricing main page end --------------------------------------*/

/*--------------------------Contact us page start --------------------------------------*/

.contact-hero {
    background: var(--navy-blue-color);
    margin-top: 30px;
    padding-top: 160px;
}
.contact-us-about-heading h1,
.contact-us-about-heading p {
    color: var(--text-color-white) !important;
}

.contact-hero p {
    font-size: 16px;
}

.contact-section {
    padding: 100px 20px;
}

.form-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-section-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.form-section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info .info-block i {
    font-size: 24px;
    color: var(--imperial-red-color);
    margin-top: 4px;
}

.contact-info h4 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
    color: var(--text-color-dark);
}

.contact-info p {
    font-size: 15px;
    color: var(--text-color-dark);
    margin: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    background: var(--background-color-white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--imperial-red-color);
    outline: none;
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

#contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    #contact .php-email-form {
        padding: 20px;
    }
}

#contact .php-email-form input[type="text"],
#contact .php-email-form input[type="email"],
#contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

#contact .php-email-form input[type="text"]:focus,
#contact .php-email-form input[type="email"]:focus,
#contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

#contact .php-email-form input[type="text"]::placeholder,
#contact .php-email-form input[type="email"]::placeholder,
#contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

#contact .php-email-form button[type="submit"] {
    color: var(--text-color-white);
    background: var(--imperial-red-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.1s;
    border-radius: 50px;
    border: 1px solid var(--imperial-red-color);
}

#contact .php-email-form button[type="submit"]:hover {
    color: var(--imperial-red-color);
    background: var(--background-color-white);
    border: 1px solid var(--imperial-red-color);
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

/*-----------------------------------------------------Social Media icon----------------------------------------------------------*/

.social-media-section {
    padding: 80px 20px;
    background: var(--background-color-white);
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-color-dark);
    margin-bottom: 40px;
}

.about-social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-white);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-card i {
    font-size: 20px;
}

.social-card.linkedin {
    background: #0a66c2;
}

.social-card.youtube {
    background: #ff0000;
}

.social-card.instagram {
    background: linear-gradient(
        135deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.social-card:hover {
    transform: translateY(-10px);
    color: var(--text-color-white);
}

/*-----------------------------------------------------social media icon----------------------------------------------------------*/

.why-choose {
    background: linear-gradient(
        135deg,
        var(--background-color-gray) var(--background-color-white)
    );
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose .container {
    max-width: 900px;
    margin: auto;
}

.why-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.why-content h2 span {
    color: var(--navy-blue-color);
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    text-align: left;
    display: inline-block;
}

.why-list li {
    font-size: 18px;
    padding: 12px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-list i {
    color: var(--navy-blue-color);
    font-size: 20px;
}

.contact-us-cta-btn,
.contact-us-cta-btn:focus {
    color: var(--navy-blue-color);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 7px 25px;
    border-radius: 20px;
    transition: 0.3s ease all;
    border: 2px solid var(--navy-blue-color);
}

.contact-us-cta-btn:hover,
.contact-us-cta-btn:focus:hover {
    filter: drop-shadow(0 0 10px var(--color-dee-blue));
    color: var(--text-color-white);
    background: var(--navy-blue-color);
    border-color: var(--navy-blue-color);
    transform: scale(0.9);
}

.why-subtext {
    font-size: 18px;
    color: var(--text-color-dark);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.5;
}

/*-----------------------------------------------------Blog Page start --------------------------------------------------*/

.blog-page {
    padding-top: 40px;
}

/* Hero */
#blog-page .hero {
    text-align: center;
    padding: 5rem 1rem 3rem;
    background: var(--navy-blue-color);
}

#blog-page .hero h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color-white);
}

#blog-page .hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-color-white);
    font-size: 1.1rem;
}

#blog-page .search {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#blog-page .search input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    outline: none;
}

#blog-page .search button {
    background: var(--imperial-red-color);
    color: white;
    padding: 0 1.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Featured Post */
/* .featured {
    margin-top: -40px;
} */

#blog-page .card-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#blog-page .card-featured img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#blog-page .card-featured .overlay {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
}

#blog-page .card-featured span {
    background: var(--imperial-red-color);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

#blog-page .card-featured h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#blog-page .card-featured p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

#blog-page .card-featured a {
    color: var(--navy-blue-color);
    text-decoration: none;
    font-weight: 600;
}

/* Filters */
#blog-page .filters {
    text-align: center;
    padding: 2rem 1rem;
}

#blog-page .filters button {
    background: #f1f5f9;
    border: none;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#blog-page .filters .active,
#blog-page .filters button:hover {
    background: var(--imperial-red-color);
    color: var(--background-color-white);
}

/* Blog Grid */
#blog-page .grid-section {
    margin-top: 40px;
}
#blog-page .grid-section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#blog-page .card {
    background: var(--background-color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

#blog-page .card:hover {
    transform: translateY(-5px);
}

#blog-page .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

#blog-page .card .content {
    padding: 1.5rem;
}

#blog-page .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#blog-page .card p {
    color: var(--text-color-black);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

#blog-page .card a {
    color: var(--imperial-red-color);
    font-weight: 600;
    text-decoration: none;
}

/* CTA */
#blog-page .cta {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--background-color-gray);
    border-radius: 20px;
    margin: 5rem 1rem 2rem;
}

#blog-page .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#blog-page .cta p {
    color: var(--text-color-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.portfolio-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-book-a-call-cta-btn,
.blog-book-a-call-cta-btn:focus {
    color: var(--text-color-white);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    background: var(--navy-blue-color);
    border: 2px solid var(--navy-blue-color);
}

.blog-book-a-call-cta-btn:hover,
.blog-book-a-call-cta-btn:focus:hover {
    color: var(--navy-blue-color);
    background: var(--background-color-gray);
    border-color: var(--navy-blue-color);
    transform: scale(0.9);
}

.process-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--text-color-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.process-wrapper h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--imperial-red-color);
    display: block;
    margin: 15px auto 0;
    border-radius: 4px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background: var(--background-color-white);
}

.process-card {
    perspective: 1200px;
    border-radius: 1.25rem;
    transition: transform 0.6s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    min-height: 280px;
    overflow: hidden;
}

.process-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    border-radius: 1.25rem;
    height: 100%;
}

.process-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 25px;
    text-align: center;
    backface-visibility: hidden;
    transition: all 0.4s ease;
}

.card-front {
    background: var(--navy-blue-color);
}
.card-front h4 {
    color: var(--text-color-white);
    font-size: 1.3rem;
    margin-top: 1rem;
}

.card-back {
    background: var(--background-color-white);
    color: var(--text-color-dark);
    transform: rotateY(180deg);
    font-size: 1rem;
    padding: 40px 30px;
    box-shadow: inset 0 0 0 2px var(--navy-blue-color);
}

.card-back p {
    color: var(--text-color-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--imperial-red-color);
}

.process-card:hover .icon {
    transform: scale(1.2);
}

.process-card:hover .card-back {
    background: var(--background-color-white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
        padding: 50px 15px;
    }

    .card-front,
    .card-back {
        padding: 25px 20px;
    }

    .icon {
        font-size: 2.5rem;
    }

    .card-front h4 {
        font-size: 1.2rem;
    }

    .card-back p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
        padding: 40px 10px;
    }

    .process-card {
        min-height: 260px;
    }

    .icon {
        font-size: 2.2rem;
    }

    .card-front h4 {
        font-size: 1.1rem;
    }

    .card-back p {
        font-size: 0.95rem;
    }
}

/*--------------------------------------------------------------Support Page-----------------------------------------------------------*/

.support-page {
    /* margin-top: 60px; */
    padding-top: 40px;
}

/* Hero Section (Updated) */
.support-page .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fbfd, var(--text-color-white));
    background-size: 400% 400%;
    animation: backgroundMove 20s ease infinite;
    text-align: center;
    padding: 2rem;
}

.support-page .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color-dark);
    animation: fadeIn 2s ease forwards;
}

.support-page .hero-content h1 span {
    color: var(--navy-blue-color);
    background: var(--imperial-red-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-page .hero-content p {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-mid-tone);
    animation: fadeIn 3s ease forwards;
}

/* Background Animation */
@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Text Fade Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* Support Methods */
.support-methods {
    padding: 0px 2rem;
    background: var(--background-color-gray);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.support-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.support-box:hover {
    transform: translateY(-5px);
}

.support-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-page .highlight {
    font-weight: 600;
    color: var(--text-color-dark);
}

/* Help Topics */
.help-topics {
    padding: 4rem 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.topic-card {
    background: var(--imperial-red-color);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
}

.topic-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.topic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-white);
}

.topic-card ul {
    list-style: none;
}

.topic-card ul li {
    margin: 0.5rem 0;
}

/* Self Help Section */
.self-help {
    padding: 4rem 2rem;
    color: var(--background-color-gray);
    text-align: center;
}

.resource {
    background: var(--navy-blue-color);
    padding: 2rem;
    margin: 1rem;
    border-radius: 1rem;
    transition: 0.3s;
}

.resource:hover {
    background: var(--accent-color);
}

.resource h3 {
    color: var(--text-color-white) !important;
}

/* CTA Section */
.cta {
    background: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.btn.primary {
    background: var(--imperial-red-color);
    color: white;
}

.btn.secondary {
    border: 2px solid var(--navy-blue-color);
    color: var(--navy-blue-color);
    background: transparent;
}

.btn.primary:hover {
    background: var(--accent-color);
}

.btn.secondary:hover {
    background: var(--navy-blue-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/*-------------------------------------------------------------------Order Page Style-----------------------------------------------------------*/

:root {
    --color-bg-light: #f9fafe;
    --color-dark-text: var(--text-color-dark);
    --color-soft-white: rgba(255, 255, 255, 0.6);
}

#order-page {
    margin-top: 60px;
    padding-top: 60px;
}

.order-form-section h1 {
    font-size: 3rem;
    color: var(--color-dark-text);
    font-weight: 700;
    text-align: center;
}

.order-form-section h2 {
    font-size: 30px;
    color: var(--color-dark-text);
    font-weight: 500;
    text-align: center;
}

.order-wrapper {
    max-width: 780px;
    margin: 30px auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: all 0.3s ease;
}

.order-form-section .order-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.order-form-section .order-step.active {
    display: block;
}

.order-form-section .order-step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
}

.order-form-section .order-step-buttons button {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.order-form-section .btn-job-close {
    background-color: transparent;
    color: var(--navy-blue-color);
    border: 2px solid var(--navy-blue-color);
}

.order-form-section .btn-job-close:hover {
    background-color: var(--navy-blue-color);
    color: var(--text-color-white);
}

.order-form-section .btn-prev {
    background-color: var(--navy-blue-color);
    color: var(--text-color-white);
}

.order-form-section .btn-prev:hover {
    background-color: transparent;
    border: 1px solid var(--navy-blue-color) !important;
    color: var(--navy-blue-color);
}

.order-form-section .btn-next {
    background-color: var(--navy-blue-color);
    color: var(--text-color-white);
    border: 1px solid var(--navy-blue-color) !important;
}

.order-form-section .btn-next:hover {
    background-color: transparent;
    border: 1px solid var(--navy-blue-color) !important;
    color: var(--navy-blue-color);
}

.order-form-section .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.order-form-section .popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .order-form-section .order-wrapper {
        padding: 24px;
        border-radius: 18px;
    }

    .order-form-section .order-step-buttons {
        flex-direction: column;
    }

    .order-form-section button {
        width: 100%;
    }
}

.popup-content {
    background: linear-gradient(
        250deg,
        var(--navy-blue-color),
        var(--background-color-gray)
    );
    padding: 32px;
    max-width: 560px;
    width: 95%;
    color: var(--color-dark-text);
    animation: popupSlideUp 0.35s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.popup-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue-color);
    margin-bottom: 20px;
}

.popup-content p,
.popup-content li {
    font-size: 15px;
    margin: 8px 0;
    line-height: 1.6;
}

.popup-content ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 30px;
}

.popup-buttons button {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.popup-buttons .btn-edit {
    background-color: transparent;
    color: var(--navy-blue-color);
    border: 2px solid var(--navy-blue-color);
}

.popup-buttons .btn-edit:hover {
    background-color: var(--navy-blue-color);
    color: var(--text-color-white);
}

.popup-buttons .btn-confirm {
    background-color: transparent;
    color: var(--background-color-gray);
    border: 2px solid var(--background-color-gray);
}

.popup-buttons .btn-confirm:hover {
    background-color: var(--background-color-gray);
    color: var(--color-dark-text);
    border: 2px solid var(--background-color-gray);
}

@keyframes popupSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .popup-content {
        padding: 24px;
    }

    .popup-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .popup-buttons button {
        width: 100%;
    }
}

.order-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    background: var(--background-color-white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: var(--imperial-red-color);
    outline: none;
}

@media screen and (max-width: 768px) {
    .order-page-grid {
        grid-template-columns: 1fr;
    }
}

#order-page .order-wrapper {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    #order-page .order-wrapper {
        padding: 20px;
    }
}

#order-page .order-wrapper input[type="text"],
#order-page .order-wrapper input[type="email"],
#order-page .order-wrapper textarea,
#order-page .order-wrapper select {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

#order-page .order-wrapper input[type="text"]:focus,
#order-page .order-wrapper input[type="email"]:focus,
#order-page .order-wrapper textarea:focus,
#order-page .order-wrapper select:focus {
    border-color: var(--accent-color);
}

#order-page .order-wrapper input[type="text"]::placeholder,
#order-page .order-wrapper input[type="email"]::placeholder,
#order-page .order-wrapper textarea::placeholder,
#order-page .order-wrapper select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

#orderForm .form-group {
    margin-bottom: 24px;
}

#orderForm label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

#orderForm select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    background: var(--background-color-white);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);

    transition: border-color 0.3s, box-shadow 0.3s;
}
#orderForm select:focus {
    border-color: var(--imperial-red-color);
    outline: none;
}

/* ===== Scoped ESP Popup Styling ===== */
.order-form-section .esp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.order-form-section .esp-popup-content {
    background: var(--text-color-white);
    padding: 30px 25px;
    width: 95%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark);
    animation: fadeInUp 0.3s ease;
    position: relative;
}

.order-form-section .esp-popup-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy-blue-color);
    text-align: center;
    border-bottom: 2px solid var(--imperial-red-color);
    padding-bottom: 10px;
}

.order-form-section .esp-popup-content .form-group {
    margin-bottom: 18px;
}

.order-form-section .esp-popup-content .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.order-form-section .esp-popup-content .form-group input,
.order-form-section .esp-popup-content .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--exatra-light);
    border-radius: 8px;
    font-size: 15px;
}

.order-form-section .esp-popup-content .popup-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
}

.order-form-section .esp-popup-content .btn-job-close,
.order-form-section .esp-popup-content .btn-confirm {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.order-form-section .esp-popup-content .btn-job-close {
    background: #f2f2f2;
    color: #333;
}

.order-form-section .esp-popup-content .btn-job-close:hover {
    background: #e0e0e0;
}

.order-form-section .esp-popup-content .btn-confirm {
    background: var(--imperial-red-color);
    color: white;
}

.order-form-section .esp-popup-content .btn-confirm:hover {
    background: var(--navy-blue-color);
}

/* Smooth fade animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Popup Overlay --- */
.order-form-section-esp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.order-form-section-esp-popup-overlay.active {
    display: flex;
}

/* --- Popup Content --- */
.order-page-section-esp-popup-content {
    background: var(--text-color-white);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark);
    animation: fadeInUp 0.4s ease-out;
}

/* --- Smooth Entrance Animation --- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- Overlay --- */
.order-form-section-esp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(6px);
}
.order-form-section-esp-popup-overlay.active {
    display: flex;
}

/* --- Popup Box --- */
.order-page-section-esp-popup-content {
    background: var(--text-color-white);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.4s ease;
    color: var(--text-color-dark);
    position: relative;
}

/* --- Close Button --- */
.order-page-section-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.order-page-section-popup-close:hover {
    color: var(--navy-blue-color);
}

/* --- Header --- */
.order-page-section-esp-popup-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--navy-blue-color);
    text-align: left;
}

/* --- Form Groups --- */
.order-page-section-form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-page-section-form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.order-page-section-form-group small {
    font-size: 12px;
    color: #666;
}

/* --- Inputs & Selects --- */
.order-page-section-form-group input[type="number"],
.order-page-section-form-group select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--exatra-light);
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.order-page-section-form-group input:focus,
.order-page-section-form-group select:focus {
    border-color: var(--imperial-red-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 185, 165, 0.2);
}

/* --- Option Grid --- */
.order-page-section-delivery-options,
.order-page-section-layout-options,
.order-page-section-interactive-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.order-page-section-form-group label.order-page-section-checkbox,
.order-page-section-delivery-options label,
.order-page-section-layout-options label,
.order-page-section-interactive-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    user-select: none;
}

.order-page-section-form-group label:hover {
    background-color: #e0f8f3;
    border-color: var(--imperial-red-color);
}

.order-page-section-form-group input[type="checkbox"],
.order-page-section-form-group input[type="radio"] {
    accent-color: var(--imperial-red-color);
    transform: scale(1.15);
}

/* --- Actions --- */
.order-page-section-popup-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.order-page-section-popup-actions button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-page-section-popup-actions button[type="button"] {
    background-color: #f0f0f0;
    color: #333;
}
.order-page-section-popup-actions button[type="button"]:hover {
    background-color: #d9d9d9;
    transform: translateY(-1px);
}

.order-page-section-popup-actions button[type="submit"] {
    background-color: var(--imperial-red-color);
    color: var(--text-color-white);
}
.order-page-section-popup-actions button[type="submit"]:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
}

/* --- Animation --- */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Scrollbar Styling --- */
.order-page-section-esp-popup-content::-webkit-scrollbar {
    width: 8px;
}
.order-page-section-esp-popup-content::-webkit-scrollbar-thumb {
    background-color: var(--exatra-light);
    border-radius: 4px;
}

/* --- Mobile Tweaks --- */
@media (max-width: 480px) {
    .order-page-section-popup-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .order-page-section-popup-close {
        top: 12px;
        right: 16px;
        font-size: 22px;
    }
}

.order-page-section-esp-multiselect {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.order-page-section-esp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    background-color: #f5f7fa;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    text-align: center;
    font-size: 15px;
    color: var(--text-color-dark);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

/* Hide native checkbox */
.order-page-section-esp-item input[type="checkbox"] {
    display: none;
}

/* Span styling (no background changes here) */
.order-page-section-esp-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
    pointer-events: none;
}

.order-page-section-esp-item:hover {
    border-color: var(--navy-blue-color);
}

.order-page-section-esp-item:has(input[type="checkbox"]:checked) {
    background-color: var(--navy-blue-color);
    border-color: var(--navy-blue-color);
    color: var(--text-color-white);
    font-weight: 600;
}
.order-page-section-esp-item:has(input[type="checkbox"]:checked) span {
    color: var(--text-color-white);
}

@media (max-width: 500px) {
    .order-page-section-esp-item {
        white-space: normal;
        word-break: break-word;
        padding: 10px;
    }
}
.order-page-section-checkbox-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color-dark);
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--navy-blue-color); /* Modern checkbox color */
    width: 18px;
    height: 18px;
}

.checkbox-item span {
    flex: 1;
    word-break: break-word;
}

/*--------------------------------------------------------------FAQ Page------------------------------------------------------------------------*/
.faq-page {
    margin-top: 60px;
    padding-top: 60px;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: var(--navy-blue-color);
}

.faq-category {
    margin-top: 40px;
}

.faq-category h2 {
    font-size: 2rem;
    color: var(--navy-blue-color);
    margin-bottom: 20px;
}

.accordion-item {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-blue-color);
    transition: 0.3s;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--imperial-red-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-content p {
    margin: 15px 0 20px;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
}

.accordion-item.active .accordion-content,
.accordion-item.active .accordion-content p {
    display: block;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .accordion-header {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .accordion-content {
        padding: 0 20px;
    }
}

.faq-page-header {
    text-align: center;
    padding-top: 120px;
}

.faq-page-header h1 {
    font-size: 2.8rem;
    color: var(--text-color-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-page-header p {
    font-size: 1.2rem;
    color: var(--color-dark-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-page-category {
    margin-top: 50px;
}

.faq-page-category h2 {
    font-size: 2.2rem;
    color: var(--text-color-dark);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.faq-page-category h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--imperial-red-color);
    bottom: -8px;
    left: 0;
    border-radius: 4px;
}

.faq-page-accordion-item {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-page-accordion-item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-page-accordion-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color-dark);
    background: transparent;
    transition: color 0.3s;
}

.faq-page-accordion-icon {
    font-size: 1.6rem;
    color: var(--imperial-red-color);
    transition: transform 0.3s ease;
}

.faq-page-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-page-accordion-content p {
    margin: 10px 0 11px;
    line-height: 1.7;
    font-size: 1rem;
    color: var(--text-color-dark);
}

.faq-page-accordion-item.active .faq-page-accordion-content {
    max-height: 600px;
    padding: 0 28px 22px;
}

.faq-page-accordion-item.active .faq-page-accordion-icon {
    transform: rotate(180deg);
}

/* Pricing List */
.faq-pricing-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 1rem;
}

.faq-pricing-list li span {
    color: var(--text-color-dark);
    font-weight: 500;
    padding-left: 20px;
    white-space: nowrap;
}

.faq-pricing-list li small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color-dark);
    margin-top: 4px;
}

/* Responsive Improvements */
@media (max-width: 1024px) {
    .faq-page-header h1 {
        font-size: 2.3rem;
    }

    .faq-page-category h2 {
        font-size: 1.8rem;
    }

    .faq-page-accordion-header {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .faq-page-container {
        padding: 40px 15px;
    }

    .faq-page-header h1 {
        font-size: 2rem;
    }

    .faq-page-header p {
        font-size: 1rem;
    }

    .faq-page-category h2 {
        font-size: 1.5rem;
    }

    .faq-page-accordion-header {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-page-accordion-content {
        padding: 0 20px;
    }

    .faq-page-accordion-item.active .faq-page-accordion-content {
        padding: 0 20px 18px;
    }
}

@media (max-width: 480px) {
    .faq-page-header h1 {
        font-size: 1.7rem;
    }

    .faq-page-header p {
        font-size: 0.95rem;
    }

    .faq-page-category h2 {
        font-size: 1.3rem;
    }

    .faq-page-accordion-header {
        font-size: 0.95rem;
        padding: 15px 18px;
    }

    .faq-page-accordion-icon {
        font-size: 1.3rem;
    }

    .faq-page-accordion-content {
        padding: 0 18px;
    }

    .faq-page-accordion-item.active .faq-page-accordion-content {
        padding: 0 18px 15px;
    }

    .faq-page-order-btn h2 {
        font-size: 1.5rem;
    }

    .faq-page-order-btn .question-btn-place-an-order {
        font-size: 0.95rem;
        padding: 0.7rem 1.4rem;
    }
}

.faq-page-timeline {
    background-color: #f9f9fb;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    color: var(--text-color-dark);
}

.faq-page-timeline-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-page-timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-page-title {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin: 0 0 0.25rem;
}

.faq-page-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.faq-page-note {
    color: #e53935;
    font-weight: 500;
}

.cta-btcontact-us-cta-btnn,
.contact-us-cta-btn:focus {
    color: var(--text-color-dark);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 20px;
    transition: 0.3s ease all;
    border: 2px solid var(--color-dark-text);
}

.contact-us-cta-btn:hover,
.contact-us-cta-btn:focus:hover {
    color: var(--text-color-white);
    background: var(--color-dark-text);
    border-color: var(--color-dark-text);
    transform: scale(0.9);
}

.question-btn-place-an-order {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
    margin-bottom: 40px;
}

.faq-page-order-btn {
    margin-top: 50px;
}

.faq-page-order-btn h2 {
    font-size: 2.2rem;
    color: var(--text-color-dark);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.faq-page-order-btn h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--imperial-red-color);
    bottom: -8px;
    left: 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .faq-page-order-btn {
        text-align: center;
        padding: 0 1rem;
    }

    .faq-page-order-btn h2 {
        font-size: 1.8rem;
    }

    .faq-page-order-btn h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .faq-page-order-btn .question-btn-place-an-order {
        display: inline-block;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/*---------------------------------------------------------Terms AndCondition----------------------------------------------------*/
.terms-condition-page {
    /* margin-top: 60px; */
    padding-top: 100px;
    line-height: 1.6;
    color: var(--text-color-dark);
    background: var(--background-color);
}
.terms-condition-body {
    padding: 40px 20px;
}

.tl-terms-condition-header {
    background: var(--navy-blue-color);
    color: var(--color-white);
    padding: 2rem 1rem;
    text-align: center;
    align-content: center !important;
    min-height: 200px;
}

.tl-terms-condition-header h1 {
    margin: 0;
    color: var(--color-white);
    font-size: 2.5rem;
}

.tl-terms-condition-last-updated {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--exatra-light);
}

.tl-terms-condition-section {
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: auto;
}

.tl-terms-condition-section-title {
    color: var(--text-color-dark);
    font-weight: bold;
    margin-top: 2rem;
}

.tl-terms-condition-section ul,
.tl-terms-condition-section ol {
    padding-left: 1.5rem;
}

.tl-terms-condition-section li {
    margin-bottom: 0.5rem;
}

.tl-terms-condition-icon {
    color: var(--imperial-red-color);
    margin-right: 0.5rem;
}

.tl-terms-condition-contact-box {
    background: var(--light-gray-color);
    padding: 1rem;
    border-left: 5px solid var(--imperial-red-color);
    margin-top: 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tl-terms-condition-header h1 {
        font-size: 2rem;
    }
}

/* privacy policy css start*/
.tl-privacy-policy-header {
    background: var(--navy-blue-color);
    color: var(--color-white);
    padding: 2rem 1rem;
    text-align: center;
    align-content: center !important;
    min-height: 200px;
}

.tl-privacy-policy-header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--color-white);
}

.tl-privacy-policy-last-updated {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--exatra-light);
}

.tl-privacy-policy-section {
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: auto;
}

.tl-privacy-policy-section-title {
    color: var(--text-color-dark);
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 15px;
}

.terms-condition-page ul,
ol {
    padding-left: 1.5rem;
}

.terms-condition-page li {
    margin-bottom: 0.5rem;
}

.tl-privacy-policy-icon {
    color: var(--text-color-dark);
    margin-right: 0.5rem;
}

.tl-privacy-policy-contact-box {
    background: var(--light-gray-color);
    padding: 1rem;
    border-left: 5px solid var(--text-color-dark);
    margin-top: 2rem;
    font-size: 1rem;
}

.tl-terms-condition-contact-box {
    background: var(--light-gray-color);
    padding: 1rem;
    border-left: 5px solid var(--imperial-red-color);
    margin-top: 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tl-privacy-policy-header h1 {
        font-size: 2rem;
    }
}

/* card slider some class*/

.carousel-inner {
    overflow: visible;
}

/* Blog Details Page CSS */

#blog-detail-page {
    padding-top: 100px;
    scroll-behavior: smooth;
    color: var(--text-color-dark) !important;
    line-height: 1.7;
    font-family: "Poppins", sans-serif;
    background: var(--light-gray-color);
}

#blog-detail-page .tpl-mt-header {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(
        145deg,
        var(--navy-blue-color),
        var(--imperial-red-color)
    );

    clip-path: ellipse(100% 100% at 50% 0%);
    animation: tpl-slideFadeIn 1s ease-out forwards;
}

#blog-detail-page .tpl-mt-header h1 {
    font-size: 40px !important;
    color: var(--text-color-white);
}

#blog-detail-page .tpl-mt-hero-img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--box-shadow-blog-details);
}

#blog-detail-page .tpl-mt-wrapper {
    max-width: 1080px;
    margin: auto;
    padding: 50px 20px;
}

#blog-detail-page .tpl-mt-section {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--gray-dark-color);
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--box-shadow-blog-details);
    transform: translateY(30px);
    opacity: 0;
    animation: tpl-floatUp 0.8s ease forwards;
}

#blog-detail-page .tpl-mt-section:nth-child(even) {
    background-color: #fff;
}

#blog-detail-page .tpl-mt-section h2 {
    color: var(--navy-blue-color);
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    position: relative;
}

#blog-detail-page .tpl-mt-section div {
    color: var(--text-color-dark);
}
#blog-detail-page .tpl-mt-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--imperial-red-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

#blog-detail-page .tpl-mt-section h3 {
    color: var(--imperial-red-color);
    margin-top: 20px;
    font-size: 24px;
}

#blog-detail-page .tpl-mt-text,
#blog-detail-page .tpl-mt-list,
#blog-detail-page .tpl-mt-cta p,
#blog-detail-page .tpl-mt-btn {
    font-size: 16px;
    margin-top: 10px;
    color: var(--text-color-dark) !important;
}

#blog-detail-page .tpl-mt-text p {
    color: var(--text-color-dark);
}

#blog-detail-page .tpl-text,
#blog-detail-page .tpl-mt-code {
    color: var(--text-color-dark) !important;
}

#blog-detail-page .tpl-mt-list {
    padding-left: 20px;
}

#blog-detail-page .tpl-mt-code {
    background-color: #f3f3f3;
    padding: 15px;
    border-left: 4px solid var(--imperial-red-color);
    border-radius: 10px;
    overflow-x: auto;
    margin-top: 10px;
    font-size: 0.95rem;
}

#blog-detail-page .tpl-mt-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

#blog-detail-page .tpl-mt-table th,
#blog-detail-page .tpl-mt-table td {
    padding: 14px;
    border: 1px solid var(--exatra-light);
    background: var(--background-color-white);
    color: var(--text-color-dark);
}

#blog-detail-page .tpl-mt-table th {
    background-color: var(--navy-blue-color) !important;
    color: var(--text-color-white);
}

#blog-detail-page .tpl-mt-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(
        145deg,
        var(--imperial-red-color),
        var(--navy-blue-color)
    );
    border-radius: 20px;
    color: var(--text-color-white) !important;
    animation: tpl-fadeUp 1.2s ease-out;
}

#blog-detail-page .tpl-mt-cta h2 {
    color: var(--text-color-white) !important;
}
#blog-detail-page .tpl-mt-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: var(--background-color-white);
    color: var(--text-color-dark);
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
}

#blog-detail-page .tpl-mt-btn:hover {
    background-color: #eee;
}

#blog-detail-page .tpl-mt-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    #blog-detail-page .tpl-mt-header h1 {
        font-size: 28px;
    }

    #blog-detail-page .tpl-mt-section h2 {
        font-size: 24px;
    }

    #blog-detail-page .tpl-mt-section h3 {
        font-size: 20px;
    }

    #blog-detail-page .tpl-mt-wrapper {
        padding: 30px 15px;
    }

    #blog-detail-page .tpl-mt-section {
        padding: 25px;
    }
}

/* Animations */
@keyframes tpl-slideFadeIn {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tpl-floatUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tpl-fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* blog 2 extra */

#blog-detail-page .tpl-mt-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    min-width: 600px; /* Ensure scroll works on mobile */
}

#blog-detail-page .tpl-mt-table th,
#blog-detail-page .tpl-mt-table td {
    padding: 14px;
    border: 1px solid var(--exatra-light);
    background: var(--background-color-white);
    text-align: left;
    font-size: 16px;
}

#blog-detail-page .tpl-mt-table th {
    background-color: var(--primary);
    color: var(--background-color-white);
}

/* Responsive wrapper */
#blog-detail-page .tpl-mt-table-responsive-wrapper {
    overflow-x: auto;
    width: 100%;
    border-radius: 6px;
    background-color: var(--light-gray-color);
    padding: 5px;
}

/* Media Query for screens <= 320px */
@media (max-width: 320px) {
    #blog-detail-page .tpl-mt-table {
        font-size: 14px;
        min-width: 500px; /* Force horizontal scroll */
    }

    #blog-detail-page .tpl-mt-table th,
    #blog-detail-page .tpl-mt-table td {
        padding: 10px;
        font-size: 13px;
    }

    #blog-detail-page .tpl-mt-table-responsive-wrapper {
        padding: 0;
        border-radius: 4px;
    }
}
