:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

:root {
    --primary-blue: #2c05f2;
    --secondary-blue: #004aad;
    --light-blue: #2c74b3;
}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #001973;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0d42ff;
    /* 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: #ffffff;
    /* 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: #ffffff;
}

:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-text-color: #ffffff;
    /* Applied to main navmenu text when they are hovered over or active */
    --nav-hover-color: #0d42ff;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #060606;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d42ff;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
    --background-color: #faf9fb;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

html {
    overflow: auto;
    /* Still allows scrolling */
    -ms-overflow-style: none;
    /* IE and Edge Legacy */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--default-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--nav-hover-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

body {
    line-height: 1.6;
    color: #333;
}

.dot {
    width: 80px;
    aspect-ratio: 1/1;
    background-color: var(--accent-color);
    border-radius: 100%;
}

.small-dot {
    width: 30px;
    aspect-ratio: 1/1;
    background-color: var(--accent-color);
    border-radius: 100%;
}

.main {
    z-index: 0;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 77px;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    /* line-height: 1px; */
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2c74b3;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #2c74b3;
    margin: 4px 10px;
}

.section-title p {
    color: var(--default-color);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-logo {
    line-height: 1;
    width: 90px;
    height: auto;
}

.header .header-logo img {
    width: 100%;
    height: 100%;
    filter: brightness(1.1) contrast(1.1);
}

/* Home Page Header 
------------------------------*/
.home-page .navmenu a {
    color: var(--nav-hover-text-color);
}

.home-page.scrolled .navmenu a {
    color: var(--nav-color);
}

.home-page.scrolled .navmenu li:hover>a,
.home-page.scrolled .navmenu .active,
.home-page.scrolled .navmenu .active:focus {
    color: var(--nav-hover-text-color);
}

.home-page.scrolled .navmenu .dropdown ul a:hover,
.home-page.scrolled .navmenu .dropdown ul .active:hover,
.home-page.scrolled .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-dropdown-hover-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .navmenu a {
    --nav-color: #060606;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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;
        margin-left: 5px;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 8px 20px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 50px;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: darkblue;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        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 .dropdown ul li {
        min-width: 200px;
        margin-left: 0;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        background-color: transparent;
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 105%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: black;
        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);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-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;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        color: black;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        color: black;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        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;
    }
}
        :root {
            --primary-color: #3a86ff;
            --primary-dark: #2667cc;
            --secondary-color: #8338ec;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            background: white;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(58, 134, 255, 0.08) 0%, rgba(58, 134, 255, 0) 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Promo Badge */
        .promo-badge {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hero Title */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--dark-color) 0%, var(--gray-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .hero-title span {
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(90deg, rgba(58, 134, 255, 0.3) 0%, rgba(131, 56, 236, 0.3) 100%);
            z-index: -1;
            border-radius: 4px;
        }

        /* Hero Description */
        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: var(--gray-color);
            max-width: 90%;
        }

        /* Call to Action */
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: white;
        }

        .btn-primary i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover i {
            transform: translateX(5px);
        }

        .btn-secondary {
            background: white;
            color: var(--dark-color);
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            color: var(--dark-color);
        }

        /* Features */
        .hero-features {
            display: flex;
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .feature-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--dark-color);
        }

        /* Hero Image Container - FIXED FOR FULL IMAGE DISPLAY */
        .hero-image-container {
            position: relative;
            height: 100%;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            /* Remove any cropping or hidden overflow */
            padding: 0;
            margin: 0;
        }

        .main-product {
            max-width: 100%;
            max-height: 650px;
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            transform-style: preserve-3d;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }

        .main-product:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Floating Products */
        .floating-product {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 3;
            transition: var(--transition);
            backdrop-filter: blur(4px);
            max-width: 220px;
        }

        .floating-product:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .floating-product img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .product-info h4 {
            font-size: 0.9375rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
            color: var(--dark-color);
        }
 
        .product-info .price {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary-color);
        }


        .product-2 {
            bottom: 5%;
            right: 0%;
            animation: float 5s ease-in-out infinite 1s;
        }

        /* Discount Badge - ENHANCED */
        .discount-badge {
            position: absolute;
            top: 10%;
            right: 10%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 4;
            box-shadow: var(--shadow-md);
            animation: pulse 2s ease-in-out infinite;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .discount-badge .percent {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.2rem;
        }

        .discount-badge .text {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            padding: 0 5px;
        }

        /* Animations */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Styles - OPTIMIZED */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-description {
                font-size: 1.125rem;
            }

            .hero-image-container {
                min-height: 550px;
            }

            .main-product {
                max-height: 550px;
            }
        }

        @media (max-width: 991.98px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }

            .hero-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-features {
                justify-content: center;
            }

            .hero-image-container {
                min-height: 500px;
                margin-top: 3rem;
            }

            .main-product {
                max-height: 500px;
            }

            .discount-badge {
                width: 100px;
                height: 100px;
            }

            .discount-badge .percent {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-features {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-image-container {
                min-height: 400px;
            }

            .main-product {
                max-height: 400px;
            }

            .floating-product {
                padding: 0.75rem;
                max-width: 180px;
            }

            .floating-product img {
                width: 50px;
                height: 50px;
            }

            .discount-badge {
                width: 90px;
                height: 90px;
                top: 8%;
                right: 8%;
            }

            .discount-badge .percent {
                font-size: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-image-container {
                min-height: 350px;
            }

            .main-product {
                max-height: 350px;
            }

            .discount-badge {
                width: 80px;
                height: 80px;
            }

            .discount-badge .percent {
                font-size: 1.8rem;
            }

            .discount-badge .text {
                font-size: 0.7rem;
            }
        }

/*--------------------------------------------------------------
  # Abouts us
--------------------------------------------------------------*/
.about-wrapper {
    min-width: 80%;
    border-radius: 25px;
    padding: 2rem 1rem;
    border: 2px solid black;
    position: relative;

}

.about-box {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .content_title {
        font-size: 33px;
        font-weight: bold;
    }
}

.about_image_box {
    padding: 1rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.about_image_box .about-img-item {
    height: auto;
}

.about_image_box .about-img-item img {
    width: 100%;
    height: 100%;
    border-radius: 23px;
    background-size: contain;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about_image_box .about-img-item:nth-child(even) {
    animation: float-image 8s forwards linear infinite;
}

.about_image_box .about-img-item:nth-child(odd) {
    animation: float-image 6s reverse linear infinite;
}


@keyframes float-image {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}

.about-dots {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    .dot {
        position: absolute;
        z-index: 1;
    }
}

.about-dots {
    .left-dot {
        bottom: 0;
        left: 0;
        transform: translate(-40px, -20px);

    }

    .right-dot {
        right: 0;
        top: 0;
        transform: translate(40px, 20px);
    }
}

@media (max-width:600px) {
    .about-box {
        .content_title {
            font-size: 25px;
            font-weight: bold;

        }

        .about-content {
            font-size: 1rem;
        }
    }

    .about-dots .dot {
        width: 60px;
    }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    max-width: 85%;
    margin: auto;
   
}

.services-list,
.service-content {
    flex: 1 1 50%;
    padding: 30px;
    box-sizing: border-box;
}

.services-list {
    color: var(--default-color);
}

.service-item {
    position: relative;
    margin: 10px 0;
    cursor: pointer;
    padding: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px); /* Added lift effect */
    box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 12px;
}

.service-item .service-dot {
    position: absolute;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-item:nth-child(odd) .service-dot {
    left: 0;
    top: 0;
    transform: translate(-20px, 10px);
}

.service-item:nth-child(even) .service-dot {
    right: 0;
    top: 0;
    transform: translate(20px, 10px);
}

.service-display {
    padding: 20px;
    text-align: left;
    width: 100%;
    height: 100%;
}

.service-number-stroke {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 4px var(--heading-color);
    -moz-text-stroke: 4px var(--heading-color);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    opacity: 0.8;
}

.service-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c6ad3;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover; /* Ensures proper image scaling */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee; /* Added border */
    margin-bottom: 20px;
}

.service-description {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

/* Arrow button styles */
.service-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.service-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2c6ad3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.service-nav-arrow:hover {
    background-color: #1a4fa8;
    transform: scale(1.1);
}

.service-nav-arrow:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 5, 242, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(44, 5, 242, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 5, 242, 0);
    }
}

.pulse {
    animation: pulse 1.5s ease-in-out;
}

.service-content {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border-left: 1px solid #eee; /* Added separator */
}

.service-display .service-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .small-dot {
        display: none;
    }
    
    .services-section {
        flex-direction: column;
        max-width: 95%;
        border-radius: 8px;
    }
    
    .services-list,
    .service-content {
        flex: 1 1 100%;
        padding: 20px;
    }
    
    .service-number-stroke {
        font-size: 2.5rem;
        -webkit-text-stroke: 2px var(--heading-color);
    }
    
    .service-number {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
        margin: 0 auto 15px;
    }
    
    .service-description {
        font-size: 18px;
    }
    
    .service-nav-arrows {
        margin-top: 15px;
    }
    
    .service-nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .service-content {
        border-left: none;
        border-top: 1px solid #eee; /* Added top border for mobile */
    }
}

.mobile-services {
    display: none;
}

.mob-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mob-service-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Mobile services */
@media (max-width: 770px) {
    .services {
        display: none;
    }
    
    .mobile-services {
        display: block;
        width: 95%;
        margin: 0 auto;
    }
    
    .mob-service-item {
        margin-bottom: 30px;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border: 1px solid #eee;
    }
    
    .mob-service-image {
        width: 100%;
        max-width: none;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Parallax Section
--------------------------------------------------------------*/
.parallax-counter {
    background-image: url(../images/banner.2.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.counter-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1 1 250px;
    padding: 20px;
}

.counter-box i {
    margin-bottom: 15px;
    font-size: 48px;
    color: whitesmoke;
    line-height: 0;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
}

.label {
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 768px) {
    .counter-container {
        flex-direction: column;
        align-items: center;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients-scroll {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.clients-scroll .scroll-item {
    border-radius: 0.5rem;
}

.scroller-duplicate {
    display: none;
}

.clients-scroll .scroll-item .image-item {
    height: 70px;
    width: auto;
}

.clients-scroll .scroll-item .image-item img {
    height: 100%;
    width: 100%;
    opacity: 0.5;
    transition: 0.2s;
    filter: grayscale(100);
    object-fit: fill;
}

.clients-scroll .scroll-item .image-item:is(:focus, :hover) img {
    filter: none;
    opacity: 1;
}


.scroller {
    width: 100%;
    /* outline: 3px solid lime; */
}

.scroller[data-animated="true"] {
    overflow: hidden;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 120s;
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation:
        scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}


.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

@media (max-width:600px) {
    .scroller-duplicate {
        display: block;
    }
}

/*--------------------------------------------------------------
# partners 
--------------------------------------------------------------*/
.partners .partners-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.partners .partner-logo {
    background-color: var(--contrast-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.partners .partner-logo img {
    padding: 50px;
    max-width: 80%;
    transition: 0.3s;
}

@media (max-width: 640px) {
    .partners .partner-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.partners .partner-logo:hover img {
    transform: scale(1.1);
}

/* -----------------------------------------------
footer
-------------------------------------------------- */

.footer {
    background: linear-gradient(135deg, #0a2647 0%, #144272 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    bottom: 0;

}

.border-blue {
    border-bottom: 3px solid #2c74b3 !important;
    padding-bottom: 0.5rem;
}

.link-hover {
    color: #a5d7e8 !important;
    transition: all 0.3s ease;
}

.link-hover:hover {
    color: #2c74b3 !important;
    transform: translateX(5px);
}

.company-name {
    color: #2c74b3 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.copyright {
    position: relative;
    z-index: 1;
    color: #a5d7e8;
}

.site-credits {
    color: #a5d7e8 !important;
    transition: all 0.3s ease;
}

.site-credits:hover {
    color: #2c74b3 !important;
}

.bi {
    transition: all 0.3s ease;
}

.border-bottom-style {
    border-bottom: 1px dashed #2c74b3;
}

.footer-head {
    /* font-family: 'Sucrose Bold Two'; */
    text-transform: capitalize;
    color: #a5d7e8;
    transform: scale(1.2)translateX(30px);
}

.footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: #a5d7e8;
    transition: width 0.3s ease;
}

.footer-head-comp {
    text-align: center;
    transform: scale(1.5)translateX(0px);

}

.footer-head-comp::after {
    width: 50%;
    transform: translateX(48%);
}

@media (max-width:576px) {
    .footer-head {
        transform: scale(1)translateX(0px);
    }

    .footer-head-comp {
        transform: scale(1)translateX(0px);

    }

    .footer-head-comp::after {
        width: 50%;
        transform: translateX(48%);
    }
}

/* Base styles for nav links */
.nav-link {
    position: relative;
    color: #ffffff;
    /* Original text color */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    text-decoration: none;
}

/* Chevron icon styles */
.nav-link i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-right: 8px;
    font-size: 0.8em;
    color: inherit;
    /* Inherits the link color */
}

/* Hover state - light blue color and show icon */
.nav-link:hover {
    color: #a5d7e8;
    /* Light blue color */
}

.nav-link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* 
---------------------------------------------------------------
 */

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--background-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a+a {
    margin-left: 8px;
}

/* Contact us  */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .contact-email-form {
    height: 100%;
}

.contact .contact-email-form input[type=text],
.contact .contact-email-form input[type=email],
.contact .contact-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-email-form input[type=text]:focus,
.contact .contact-email-form input[type=email]:focus,
.contact .contact-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .contact-email-form input[type=text]::placeholder,
.contact .contact-email-form input[type=email]::placeholder,
.contact .contact-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .contact-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/* testimonials */

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.testimonials-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6;
    margin-bottom: 15px;
    position: relative;
}

.testimonials-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
}

.testimonials-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-divider {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    position: relative;
}

.divider-dot::before,
.divider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.divider-dot::before {
    right: 100%;
    margin-right: 15px;
}

.divider-dot::after {
    left: 100%;
    margin-left: 15px;
}

/* Carousel Styles */
.testimonials-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card Styles */
.testimonial-card {
    min-width: 420px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transform: scale(0.98);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.testimonial-card[data-testimonial-id="t1"] {
    animation: cardEntrance 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

.testimonial-card[data-testimonial-id="t2"] {
    animation: cardEntrance 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}

.testimonial-card[data-testimonial-id="t3"] {
    animation: cardEntrance 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}

.testimonial-card.active {
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    z-index: 2;
    transition: height 0.3s ease;
}

.card-content {
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    color: #3b82f6;
    opacity: 0.08;
    z-index: 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.author-image-container {
    position: relative;
    margin-right: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    border: 2px solid #ffffff;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.company-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%) contrast(40%);
    transition: all 0.3s ease;
}

.testimonial-card:hover .company-logo {
    filter: grayscale(0) contrast(100%);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(248, 250, 252, 0.7);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-date {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}



.pagination-dots {
    display: flex;
    gap: 12px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Animations */
@keyframes testimonialFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(0.98);
    }
}

/* Hover Effects */
.testimonial-card:hover {
    transform: scale(1) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .card-highlight {
    height: 6px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 30px;
    }
    
    .testimonial-card {
        min-width: 380px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-heading {
        font-size: 36px;
    }
    
    .testimonial-card {
        min-width: 340px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-heading {
        font-size: 32px;
    }
    
    .testimonials-carousel {
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .card-content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-heading {
        font-size: 28px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonials-controls {
        gap: 20px;
    }
    
    .control-button {
        width: 40px;
        height: 40px;
    }
}

.footer-newsletter {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
  font-size: 14px;
}

.footer-newsletter h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-newsletter p {
  font-size: 16px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-newsletter .newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.footer-newsletter .newsletter-form input[type="email"] {
  height: 54px;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-newsletter .newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-newsletter .newsletter-form input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
}

.footer-newsletter .newsletter-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Form message styles */
.footer-newsletter .loading,
.footer-newsletter .error-message,
.footer-newsletter .sent-message {
  display: none;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
  font-weight: 600;
}

.footer-newsletter .loading {
  color: var(--default-color);
}

.footer-newsletter .error-message {
  color: #dc3545;
}

.footer-newsletter .sent-message {
  color: #28a745;
}

/* If the form is submitted, these classes will be toggled */
.footer-newsletter .php-email-form .loading {
  display: block;
}

.footer-newsletter .php-email-form .error-message {
  display: block;
}

.footer-newsletter .php-email-form .sent-message {
  display: block;
}