@charset "UTF-8";
/*#region General Styles*/
/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

a {
    color: var(--accent-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);
}

@keyframes btn-up-down {
    0% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

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

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 87px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

.section-title .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

    .section-title .subtitle::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
        background: var(--accent-color);
    }

.section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #0066ff;
    --background-color: #0a0e1a;
    --surface-color: #141824;
    --heading-color: #ffffff;
    --default-color: #e0e6ed;
    --contrast-color: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background-color);
    color: var(--default-color);
    overflow-x: hidden;
}

/*#endregion*/

/*#region Header*/
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .header-container {
        /*background: var(--surface-color);*/
        border-radius: 50px;
        padding: 5px 25px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        background: rgba(20, 24, 36, 0.8);
        /*backdrop-filter: blur(15px);*/
        border-radius: 30px;
        border: 1px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
        /*animation: fadeInUp 1s ease-out 0.5s both;*/
        /*margin-top: 40px;*/
    }

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

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

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

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 20px;
        margin: 0 0 0 30px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

        .header .header-container {
            margin-left: 10px;
            margin-right: 10px;
            padding: 10px 5px 10px 15px;
        }

        .header .logo {
            order: 1;
        }

        .header .btn-getstarted {
            order: 2;
            margin: 0 10px 0 0;
            padding: 6px 15px;
        }

        .header .navmenu {
            order: 3;
        }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(255, 255, 255, 0);
}

/*--------------------------------------------------------------
# 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;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            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;
                transition: 0.3s;
            }

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

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

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

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

            .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 {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            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: 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);
            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;
                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-dropdown-hover-color);
            }

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

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            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;
            }
}



/*#endregion*/

/*#region Footer*/
/* Footer Hero Section */
.footer-hero {
    padding: 80px 0 40px 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

    .footer-hero .grid-background {
        opacity: 0.3;
    }

    .footer-hero .particle {
        opacity: 0.2;
    }

    .footer-hero .float-icon {
        color: rgba(0, 102, 255, 0.1);
    }

    .footer-hero .geometric-shape {
        border-color: rgba(0, 102, 255, 0.1);
    }

.footer-content-wrapper {
    background: rgba(20, 24, 36, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
    border-top: 2px solid rgba(0, 102, 255, 0.5);
    border-bottom: 2px solid rgba(0, 102, 255, 0.5);
}

/* Footer Hero Title & Description */
.footer-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.footer-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: rgba(224, 230, 237, 0.9);
}

/* Footer About Section */
.footer-hero .footer-about {
    padding-right: 40px;
}

.footer-hero .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
    position: relative;
}

.footer-hero .logo-wrapper {
    position: relative;
    margin-right: 20px;
}

.footer-hero .logo img {
    max-height: 80px;
    border-radius: 10px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-hero .logo .logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.footer-hero .logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.footer-hero .logo h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-hero .footer-about p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(224, 230, 237, 0.8);
    margin-bottom: 25px;
}

/* Social Links */
.footer-hero .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-hero .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

    .footer-hero .social-icon:hover {
        background: linear-gradient(135deg, #0066ff, #00d4ff);
        color: #ffffff;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        border-color: transparent;
    }

/* Footer Contact Section */
.footer-hero .footer-contact {
    padding-left: 40px;
}

    .footer-hero .footer-contact .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 25px;
        text-align: left;
    }

.footer-hero .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-hero .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(10, 14, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

    .footer-hero .contact-item:hover {
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    }

    .footer-hero .contact-item i {
        font-size: 20px;
        color: #00ff88;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-hero .contact-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
        color: rgba(224, 230, 237, 0.9);
    }

    .footer-hero .contact-item strong {
        color: #ffffff;
        font-weight: 600;
    }

/* Quick Links Section */
.footer-hero .footer-quick-links {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

    .footer-hero .footer-quick-links h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #ffffff;
        background: linear-gradient(135deg, #00ff88, #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

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

        .footer-hero .footer-quick-links ul li {
            margin-bottom: 10px;
        }

            .footer-hero .footer-quick-links ul li a {
                color: rgba(224, 230, 237, 0.8);
                text-decoration: none;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
                padding-left: 15px;
            }

                .footer-hero .footer-quick-links ul li a:before {
                    content: "›";
                    position: absolute;
                    left: 0;
                    color: #00ff88;
                    transition: transform 0.3s ease;
                }

                .footer-hero .footer-quick-links ul li a:hover {
                    color: #ffffff;
                    transform: translateX(5px);
                }

                    .footer-hero .footer-quick-links ul li a:hover:before {
                        transform: translateX(3px);
                    }

/* Copyright Section */
.footer-hero .footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.footer-hero .copyright-content {
    text-align: center;
    padding: 25px;
    background: rgba(10, 14, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

    .footer-hero .copyright-content p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(224, 230, 237, 0.7);
    }

    .footer-hero .copyright-content .sitename {
        color: #00ff88;
        font-weight: 700;
    }

    .footer-hero .copyright-content span {
        color: rgba(224, 230, 237, 0.9);
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .footer-content-wrapper {
        padding: 50px 40px;
    }

    .footer-hero .footer-about {
        padding-right: 20px;
    }

    .footer-hero .footer-contact {
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .footer-content-wrapper {
        padding: 40px 30px;
    }

    .footer-hero .logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-hero .logo-wrapper {
        margin-right: 0;
    }

    .footer-hero .logo h1 {
        text-align: center;
    }

    .footer-hero .footer-about,
    .footer-hero .footer-contact {
        padding: 0;
        margin-bottom: 40px;
    }

        .footer-hero .footer-contact .hero-subtitle {
            text-align: center;
        }

    .footer-hero .social-links {
        justify-content: center;
    }

    .footer-hero .footer-quick-links .col-md-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-hero {
        padding: 60px 0 30px 0;
    }

    .footer-content-wrapper {
        padding: 30px 20px;
    }

    .footer-hero .hero-title {
        font-size: 2rem;
    }

    .footer-hero .hero-description {
        font-size: 1rem;
    }

    .footer-hero .footer-quick-links .col-6 {
        margin-bottom: 30px;
    }

    .footer-hero .footer-quick-links h5 {
        font-size: 1rem;
    }

    .footer-hero .footer-quick-links ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-hero .logo img {
        max-height: 60px;
    }

    .footer-hero .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-hero .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-hero .footer-quick-links .row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-hero .footer-quick-links .col-6 {
        margin-bottom: 0;
    }
}

/*#endregion Footer*/

/*#region 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 #ffffff;
        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);
    }
}
/*#endregion Preloader*/

/*#region Scroll Top Button*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    bottom: 30px;
    right: 30px;
    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;
    }
/*#endregion Scroll Top Button*/

/*#region About*/

/* Add this to your existing CSS */

/* About Hero Section - Extends Hero styling */
.about-hero {
    padding: 100px 0;
}

.about-content-wrapper {
    background: rgba(20, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-content-wrapper {
        padding: 30px 20px;
    }
}

/* Keep your existing About styles but adjust for new structure */
.about-hero .image-section {
    position: relative;
    margin-bottom: 0;
}

    .about-hero .image-section .primary-image {
        position: relative;
        margin-bottom: 2rem;
    }

        .about-hero .image-section .primary-image img {
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
            transition: transform 0.5s ease;
            width: 100%;
            height: auto;
        }

            .about-hero .image-section .primary-image img:hover {
                transform: scale(1.05);
            }

        .about-hero .image-section .primary-image .projects-delivered {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 212, 255, 0.9) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: btn-up-down 2s ease-in-out infinite alternate-reverse both;
        }

@keyframes btn-up-down {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .about-hero .image-section .primary-image .projects-delivered {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

.about-hero .image-section .primary-image .projects-delivered .years {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-hero .image-section .primary-image .projects-delivered .text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero .image-section .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

    .about-hero .image-section .image-grid .grid-img {
        border-radius: 20px;
        aspect-ratio: 4/3;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
        transition: transform 0.3s ease;
    }

        .about-hero .image-section .image-grid .grid-img:hover {
            transform: translateY(-5px);
        }

@media (max-width: 992px) {
    .about-hero .image-section {
        margin-bottom: 3rem;
    }
}

.about-hero .content-section {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .about-hero .content-section {
        padding-left: 0;
    }
}

.about-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-hero .hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
}

/* Update buttons container */
.about-hero .hero-actions {
    justify-content: flex-start;
    margin-top: 2rem;
}


/*#endregion About*/

/*#region About-2*/

/* About-2 Hero Section - Extends Hero styling */
.about-2-hero {
    padding: 100px 0;
}

.about-2-content-wrapper {
    background: rgba(20, 24, 36, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-2-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-2-content-wrapper {
        padding: 30px 20px;
    }
}

/* About-2 specific content styling */
.about-2-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: left;
    margin-bottom: 2rem;
}

.about-2-hero .hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
}

/* Features list styling */
.about-2-hero .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

    .about-2-hero .features-list li {
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
        font-weight: 500;
        color: rgba(224, 230, 237, 0.9);
        font-size: 1.1rem;
    }

        .about-2-hero .features-list li i {
            font-size: 1.25rem;
            color: #00ff88;
            margin-right: 1rem;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        }

        .about-2-hero .features-list li span {
            transition: all 0.3s ease;
        }

        .about-2-hero .features-list li:hover span {
            color: #ffffff;
            transform: translateX(5px);
        }

/* Image composition styling */
.about-2-hero .image-composition {
    position: relative;
    padding: 2rem;
}

@media (max-width: 768px) {
    .about-2-hero .image-composition {
        padding: 1rem;
        margin-top: 2rem;
    }
}

.about-2-hero .image-composition .image-main {
    position: relative;
    z-index: 2;
}

    .about-2-hero .image-composition .image-main img {
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        transition: all 0.5s ease;
        width: 100%;
        height: auto;
    }

        .about-2-hero .image-composition .image-main img:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.5);
        }

.about-2-hero .image-composition .image-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 50%;
    z-index: 3;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

    .about-2-hero .image-composition .image-secondary img {
        border-radius: 18px;
        transition: all 0.5s ease;
        width: 100%;
        height: auto;
    }

        .about-2-hero .image-composition .image-secondary img:hover {
            transform: scale(1.05);
        }

/* Buttons container */
.about-2-hero .hero-actions {
    justify-content: flex-start;
    margin-top: 2rem;
}

/* Responsive adjustments for image composition */
@media (max-width: 992px) {
    .about-2-hero .image-composition .image-secondary {
        width: 40%;
        bottom: -20px;
        left: -20px;
    }
}

@media (max-width: 576px) {
    .about-2-hero .image-composition .image-secondary {
        width: 50%;
        bottom: -15px;
        left: -15px;
    }

    .about-2-hero .features-list li {
        font-size: 1rem;
    }
}

/*#endregion About*/

/*#region Values Mission Vision Leadership*/

/* Values Hero Section */
.values-hero {
    padding: 100px 0;
}

.values-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
}

    .values-content-wrapper .value-card .value-image img {
        border: 1px solid rgba(0, 102, 255, 0.9);
        border-radius: 8px;
    }
/* Values Hero Title & Description */
.values-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.values-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}
/* Value Card Styling */
.values-hero .value-card {
    background: rgba(10, 14, 26, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

    .values-hero .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
        border-color: rgba(0, 212, 255, 0.4);
    }

    .values-hero .value-card .value-image {
        transform: scale(1.1);
        border-color: rgba(0, 212, 255, 0.6);
    }

    .values-hero .value-card:hover .value-image img {
        transform: scale(1.1);
        border-color: rgba(0, 212, 255, 0.6);
    }

    .values-hero .value-card .value-content {
        padding: 20px 0;
    }

    .values-hero .value-card .value-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffffff;
        background: linear-gradient(135deg, #00ff88, #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .values-hero .value-card .value-text {
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(224, 230, 237, 0.9);
        margin-bottom: 20px;
    }

    .values-hero .value-card .btn-sm {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    /* Feature List in Values Card */
    .values-hero .value-card .feature-list {
        margin: 20px 0;
    }

        .values-hero .value-card .feature-list .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            padding: 10px;
            background: rgba(0, 102, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid #00ff88;
        }

            .values-hero .value-card .feature-list .feature-item i {
                color: #00ff88;
                font-size: 1rem;
                flex-shrink: 0;
                text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
            }

            .values-hero .value-card .feature-list .feature-item span {
                font-size: 0.95rem;
                color: rgba(224, 230, 237, 0.9);
                font-weight: 500;
            }
/* Values CTA Section */
.values-hero .values-cta-section {
    margin-top: 60px;
}

.values-hero .values-cta-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .values-hero .values-cta-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: 1;
        border-radius: 20px;
    }

.values-hero .values-cta-content {
    position: relative;
    z-index: 2;
}

    .values-hero .values-cta-content h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
        background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .values-hero .values-cta-content p {
        font-size: 1.125rem;
        line-height: 1.7;
        color: rgba(224, 230, 237, 0.9);
        margin-bottom: 0;
    }

.values-hero .values-cta-section .hero-actions {
    justify-content: flex-end;
    margin: 0;
}

@media (max-width: 991px) {
    .values-hero .values-cta-section .hero-actions {
        justify-content: flex-start;
        margin-top: 30px;
    }
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .values-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .values-content-wrapper {
        padding: 40px 30px;
    }

    .values-hero .hero-title {
        font-size: 2rem;
    }

    .values-hero .hero-description {
        font-size: 1rem;
    }

    .values-hero .value-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    /*.values-hero .value-card .value-image {
            padding: 0;
            margin-bottom: 20px;
        }

            .values-hero .value-card .value-image img {
                width: 100px;
                height: 100px;
            }*/

    .values-hero .values-cta-box {
        padding: 30px;
    }

    .values-hero .values-cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .values-content-wrapper {
        padding: 30px 20px;
    }

    .values-hero .value-card .row {
        flex-direction: column;
    }
    /*.values-hero .value-card .value-image {
        order: -1;
    }*/

    .values-hero .values-cta-section .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .values-hero .values-cta-section .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
}

/*#endregion Why Choose Us*/

/*#region Why Choose Us*/
/* Why Us Hero Section - Extends Hero styling */
.why-us-hero {
    padding: 100px 0;
}

.why-us-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .why-us-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .why-us-content-wrapper {
        padding: 30px 20px;
    }
}
/* Why Us Hero Title & Description */
.why-us-hero .hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.why-us-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Small badge variation */
.hero-badge.small-badge {
    padding: 8px 20px;
    margin-bottom: 15px;
    display: inline-flex;
}

    .hero-badge.small-badge .pulse-dot {
        width: 6px;
        height: 6px;
    }

    .hero-badge.small-badge span {
        font-size: 0.8rem;
    }
/* Content Grid Styling */
.why-us-hero .content-grid {
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    .why-us-hero .content-grid {
        margin-bottom: 3rem;
    }
}
/* About Block Styling */
.why-us-hero .about-block {
    background: rgba(10, 14, 26, 0.6);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

    .why-us-hero .about-block:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
        border-color: rgba(0, 212, 255, 0.4);
    }

    .why-us-hero .about-block .about-header {
        margin-bottom: 2rem;
    }

        .why-us-hero .about-block .about-header h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 1rem;
            line-height: 1.3;
            color: #ffffff;
            background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .why-us-hero .about-block .about-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: rgba(224, 230, 237, 0.9);
    }

    .why-us-hero .about-block .feature-list {
        margin-top: 2rem;
    }

        .why-us-hero .about-block .feature-list .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 12px 15px;
            background: rgba(0, 102, 255, 0.05);
            border-radius: 10px;
            border-left: 3px solid #00ff88;
            transition: all 0.3s ease;
        }

            .why-us-hero .about-block .feature-list .feature-item:hover {
                background: rgba(0, 102, 255, 0.1);
                transform: translateX(5px);
            }

            .why-us-hero .about-block .feature-list .feature-item i {
                color: #00ff88;
                font-size: 1.2rem;
                flex-shrink: 0;
                text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
            }

            .why-us-hero .about-block .feature-list .feature-item span {
                font-size: 1rem;
                line-height: 1.5;
                color: #ffffff;
                font-weight: 500;
            }

@media (max-width: 768px) {
    .why-us-hero .about-block {
        padding: 2rem;
        margin-bottom: 2rem;
    }

        .why-us-hero .about-block .about-header h3 {
            font-size: 1.6rem;
        }
}
/* Image Showcase Styling */
.why-us-hero .image-showcase {
    position: relative;
    height: 100%;
}

    .why-us-hero .image-showcase .main-image {
        position: relative;
        height: 100%;
        min-height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    }

        .why-us-hero .image-showcase .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .why-us-hero .image-showcase .main-image:hover img {
            transform: scale(1.05);
        }

        .why-us-hero .image-showcase .main-image .overlay-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(10, 14, 26, 0.9);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 102, 255, 0.3);
        }

            .why-us-hero .image-showcase .main-image .overlay-badge .badge-content {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

                .why-us-hero .image-showcase .main-image .overlay-badge .badge-content i {
                    font-size: 1.5rem;
                    color: #00ff88;
                    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
                }

                .why-us-hero .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
                    display: block;
                    font-size: 0.9rem;
                    font-weight: 600;
                    color: #ffffff;
                }

                .why-us-hero .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
                    font-size: 0.8rem;
                    color: rgba(224, 230, 237, 0.7);
                }

    .why-us-hero .image-showcase .floating-card {
        position: absolute;
        bottom: -20px;
        left: 20px;
        background: rgba(10, 14, 26, 0.9);
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        gap: 1rem;
        min-width: 200px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 102, 255, 0.3);
        z-index: 2;
    }

        .why-us-hero .image-showcase .floating-card img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
        }

        .why-us-hero .image-showcase .floating-card .card-content p {
            margin: 0;
            font-size: 0.85rem;
            color: #ffffff;
            font-weight: 500;
        }

@media (max-width: 768px) {
    .why-us-hero .image-showcase .main-image {
        min-height: 300px;
    }

    .why-us-hero .image-showcase .overlay-badge {
        top: 15px;
        right: 15px;
        padding: 0.8rem 1rem;
    }

    .why-us-hero .image-showcase .floating-card {
        position: static;
        margin-top: 1rem;
        transform: none;
    }
}
/* Why Choose Wrapper */
.why-us-hero .why-choose-wrapper {
    margin-top: 6rem;
}

    .why-us-hero .why-choose-wrapper .section-header {
        margin-bottom: 4rem;
    }

        .why-us-hero .why-choose-wrapper .section-header p {
            font-size: 1.1rem;
            color: rgba(224, 230, 237, 0.9);
            max-width: 600px;
            margin: 0 auto;
        }

@media (max-width: 768px) {
    .why-us-hero .why-choose-wrapper {
        margin-top: 4rem;
    }

        .why-us-hero .why-choose-wrapper .section-header {
            margin-bottom: 2.5rem;
        }
}
/* Services Container Styling */
.why-us-hero .services-container {
    margin-bottom: 60px;
}

    .why-us-hero .services-container .service-item {
        display: flex;
        background: rgba(10, 14, 26, 0.6);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 1px solid rgba(0, 102, 255, 0.2);
        backdrop-filter: blur(10px);
    }

        .why-us-hero .services-container .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
            border-color: rgba(0, 212, 255, 0.4);
        }

            .why-us-hero .services-container .service-item:hover .service-icon {
                background: linear-gradient(135deg, #0066ff, #00d4ff);
                transform: scale(1.1);
            }

        .why-us-hero .services-container .service-item .service-icon {
            flex: 0 0 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 102, 255, 0.2);
            color: #ffffff;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .why-us-hero .services-container .service-item .service-content {
            padding: 30px;
            position: relative;
            flex: 1;
        }

        .why-us-hero .services-container .service-item .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            z-index: 1;
        }

        .why-us-hero .services-container .service-item .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            background: linear-gradient(135deg, #00ff88, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        .why-us-hero .services-container .service-item .service-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: rgba(224, 230, 237, 0.9);
            position: relative;
            z-index: 2;
        }

@media (max-width: 768px) {
    .why-us-hero .services-container .service-item {
        flex-direction: column;
    }

        .why-us-hero .services-container .service-item .service-icon {
            flex: 0 0 auto;
            height: 80px;
            width: 100%;
        }
}
/* CTA Wrapper */
.why-us-hero .cta-wrapper {
    margin-top: 4rem;
}

    .why-us-hero .cta-wrapper .cta-box {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
        border-radius: 20px;
        padding: 50px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 102, 255, 0.3);
        backdrop-filter: blur(10px);
    }

        .why-us-hero .cta-wrapper .cta-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 1;
        }

        .why-us-hero .cta-wrapper .cta-box .cta-image {
            position: relative;
            z-index: 2;
        }

            .why-us-hero .cta-wrapper .cta-box .cta-image img {
                width: 150px;
                height: 150px;
                object-fit: cover;
                border-radius: 50%;
                border: 3px solid rgba(0, 102, 255, 0.3);
                box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
                transition: all 0.3s ease;
            }

                .why-us-hero .cta-wrapper .cta-box .cta-image img:hover {
                    transform: scale(1.05);
                    border-color: rgba(0, 212, 255, 0.6);
                }

        .why-us-hero .cta-wrapper .cta-box .cta-content {
            position: relative;
            z-index: 2;
        }

            .why-us-hero .cta-wrapper .cta-box .cta-content h3 {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 20px;
                color: #ffffff;
                background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .why-us-hero .cta-wrapper .cta-box .cta-content p {
                font-size: 1.125rem;
                line-height: 1.8;
                color: rgba(224, 230, 237, 0.9);
                margin-bottom: 30px;
            }

@media (max-width: 991px) {
    .why-us-hero .cta-wrapper .cta-box {
        padding: 30px;
    }

        .why-us-hero .cta-wrapper .cta-box .cta-image img {
            margin-bottom: 30px;
        }

        .why-us-hero .cta-wrapper .cta-box .cta-content {
            text-align: center;
        }
}
/* Enhanced mobile experience */
@media (max-width: 576px) {
    .why-us-hero .hero-title {
        font-size: 2rem;
    }

    .why-us-hero .hero-description {
        font-size: 1rem;
    }

    .why-us-content-wrapper {
        padding: 20px 15px;
    }

    .why-us-hero .services-container .service-item .service-title {
        font-size: 1.2rem;
    }

    .why-us-hero .services-container .service-item .service-text {
        font-size: 1rem;
    }
}

/*#endregion Why Choose Us*/

/*#region Book your appointment*/
/* Book Appointment Hero Section */
.book-appointment-hero {
    padding: 80px 0;
}

.appointment-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 20px;
}
/* Appointment Banner Styling */
.book-appointment-hero .appointment-banner {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9), rgba(0, 212, 255, 0.8));
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

    .book-appointment-hero .appointment-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        filter: blur(40px);
    }

    .book-appointment-hero .appointment-banner::after {
        content: "";
        position: absolute;
        bottom: -40%;
        left: -15%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        filter: blur(30px);
    }

    .book-appointment-hero .appointment-banner .banner-content {
        padding: 60px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

@media (max-width: 992px) {
    .book-appointment-hero .appointment-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
}

.book-appointment-hero .appointment-banner .banner-text .hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-appointment-hero .appointment-banner .banner-text .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
}

.book-appointment-hero .appointment-banner .hero-actions {
    justify-content: flex-start;
    margin: 0;
}

@media (max-width: 992px) {
    .book-appointment-hero .appointment-banner .hero-actions {
        justify-content: center;
        width: 100%;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .appointment-content-wrapper {
        padding: 30px 20px;
    }

    .book-appointment-hero .appointment-banner .banner-content {
        padding: 40px 25px;
    }

    .book-appointment-hero .appointment-banner .banner-text .hero-subtitle {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .book-appointment-hero .appointment-banner .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .book-appointment-hero .appointment-banner .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
}

/*#endregion Book your appointment*/

/*#region Call To Action*/
/* Call-to-Action Hero Section */
.cta-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    border-top: 2px solid rgba(0, 102, 255, 0.5);
    border-bottom: 2px solid rgba(0, 102, 255, 0.5);
}
/* CTA Title & Description */
.cta-hero .hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: left;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-hero .hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    color: rgba(224, 230, 237, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}
/* CTA Actions */
.cta-hero .hero-actions {
    justify-content: flex-end;
    margin-top: 0;
}

@media (max-width: 991px) {
    .cta-hero .hero-actions {
        justify-content: flex-start;
        margin-top: 30px;
    }
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .cta-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .cta-content-wrapper {
        padding: 40px 30px;
    }

    .cta-hero .hero-title {
        font-size: 2rem;
    }

    .cta-hero .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-content-wrapper {
        padding: 30px 20px;
    }

    .cta-hero .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .cta-hero .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
}

/*#endregion Call To Action*/

/*#region Contact*/
/* Contact Hero Section */
.contact-hero {
    padding: 100px 0;
}

.contact-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
}
/* Contact Hero Title & Description */
.contact-hero .hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.contact-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

    .hero-subtitle:after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #00ff88, #00d4ff);
        border-radius: 2px;
    }
/* Contact Info Section */
.contact-hero .contact-info-section {
    height: 100%;
}

    .contact-hero .contact-info-section .info-header {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .info-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(224, 230, 237, 0.9);
            margin-bottom: 0;
        }

    .contact-hero .contact-info-section .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-hero .contact-info-section .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        background: rgba(10, 14, 26, 0.6);
        border-radius: 15px;
        border: 1px solid rgba(0, 102, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

        .contact-hero .contact-info-section .info-item:hover {
            transform: translateY(-5px) translateX(5px);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

            .contact-hero .contact-info-section .info-item:hover .info-icon {
                background: linear-gradient(135deg, #0066ff, #00d4ff);
                transform: scale(1.1);
            }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            background: rgba(0, 102, 255, 0.2);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

            .contact-hero .contact-info-section .info-item .info-icon i {
                font-size: 24px;
                color: #ffffff;
                transition: all 0.3s ease;
            }

        .contact-hero .contact-info-section .info-item .info-content {
            flex: 1;
        }

            .contact-hero .contact-info-section .info-item .info-content h5 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 8px;
                color: #ffffff;
                background: linear-gradient(135deg, #00ff88, #00d4ff);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .contact-hero .contact-info-section .info-item .info-content p {
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 0;
                color: rgba(224, 230, 237, 0.9);
            }
    
/* Contact Form Wrapper */
.contact-hero .contact-form-wrapper {
    background: rgba(10, 14, 26, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
}

    .contact-hero .contact-form-wrapper .form-header {
        text-align: center;
        margin-bottom: 35px;
    }

        .contact-hero .contact-form-wrapper .form-header p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(224, 230, 237, 0.9);
            margin-bottom: 0;
        }
    /* Form Styling */
    .contact-hero .contact-form-wrapper .php-email-form .form-label {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .contact-hero .contact-form-wrapper .php-email-form .form-control {
        height: 50px;
        padding: 12px 18px;
        border-radius: 12px;
        border: 2px solid rgba(0, 102, 255, 0.3);
        background: rgba(20, 24, 36, 0.8);
        color: #ffffff;
        font-size: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

        .contact-hero .contact-form-wrapper .php-email-form .form-control:focus {
            border-color: #00ff88;
            box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
            background: rgba(20, 24, 36, 0.9);
            outline: none;
        }

        .contact-hero .contact-form-wrapper .php-email-form .form-control::placeholder {
            color: rgba(224, 230, 237, 0.5);
        }

    .contact-hero .contact-form-wrapper .php-email-form .message-textarea {
        height: 120px;
        resize: vertical;
        font-family: inherit;
    }
    /* Submit Button - Enhanced Hero Button Style */
    .contact-hero .contact-form-wrapper .php-email-form .submit-btn {
        width: 100%;
        padding: 18px 30px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: none;
        background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
        color: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
    }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
        }

            .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover::before {
                left: 100%;
            }

            .contact-hero .contact-form-wrapper .php-email-form .submit-btn:hover i {
                transform: translateX(4px);
            }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn span {
            position: relative;
            z-index: 1;
        }

        .contact-hero .contact-form-wrapper .php-email-form .submit-btn i {
            font-size: 18px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
/* Responsive adjustments */
@media (max-width: 1200px) {
    .contact-content-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero .contact-info-section {
        margin-bottom: 40px;
    }

        .contact-hero .contact-info-section .contact-info-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
}

@media (max-width: 768px) {
    .contact-content-wrapper {
        padding: 40px 30px;
    }

    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .contact-hero .hero-description {
        font-size: 1rem;
    }

    .contact-hero .contact-info-section .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero .contact-info-section .info-item {
        padding: 20px;
    }

        .contact-hero .contact-info-section .info-item:hover {
            transform: translateY(-5px);
        }

    .contact-hero .contact-form-wrapper {
        padding: 30px 25px;
    }

        .contact-hero .contact-form-wrapper .form-header h3 {
            font-size: 1.75rem;
        }
}

@media (max-width: 576px) {
    .contact-content-wrapper {
        padding: 30px 20px;
    }

    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-hero .contact-info-section .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        .contact-hero .contact-info-section .info-item .info-icon {
            width: 70px;
            height: 70px;
        }
}

/*#endregion Contact*/

/*#region Hero*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
}
/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}
/* Floating Particles */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

    .particle:nth-child(1) {
        width: 300px;
        height: 300px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
        animation-duration: 25s;
    }

    .particle:nth-child(2) {
        width: 200px;
        height: 200px;
        top: 60%;
        right: 10%;
        animation-delay: 5s;
        animation-duration: 30s;
    }

    .particle:nth-child(3) {
        width: 150px;
        height: 150px;
        bottom: 20%;
        left: 50%;
        animation-delay: 10s;
        animation-duration: 20s;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-20px, -80px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translate(40px, -40px) scale(1.05);
        opacity: 0.6;
    }
}
/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border: 1px solid rgba(0, 102, 255, 0.2);
    animation: rotate3d 30s linear infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

@keyframes rotate3d {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.3s both;
}

    .hero-badge::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

    .hero-badge .pulse-dot::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: 50%;
        animation: ping 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}
/* Hero Title with Gradient */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #0066ff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s both, gradientShift 8s ease infinite;
    background-size: 200% 200%;
    letter-spacing: -0.03em;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(224, 230, 237, 0.8);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.7s both;
}
/* Statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(224, 230, 237, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* CTA Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.1s both;
}

.btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: var(--contrast-color);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

    .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
    }

        .btn-primary:hover::before {
            left: 100%;
        }

.btn-outline {
    border: 2px solid rgba(0, 102, 255, 0.5);
    color: var(--heading-color);
    background: rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(10px);
}

    .btn-outline:hover {
        border-color: var(--accent-color);
        background: rgba(0, 102, 255, 0.15);
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    }

.btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover i {
    transform: translateX(4px);
}
/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(0, 102, 255, 0.15);
    font-size: 2rem;
    animation: floatIcon 15s infinite ease-in-out;
}

    .float-icon:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-icon:nth-child(2) {
        top: 25%;
        right: 15%;
        animation-delay: 2s;
    }

    .float-icon:nth-child(3) {
        bottom: 30%;
        left: 15%;
        animation-delay: 4s;
    }

    .float-icon:nth-child(4) {
        bottom: 20%;
        right: 20%;
        animation-delay: 6s;
    }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .geometric-shape {
        display: none;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 3rem);
    }
    .hero-badge {
        margin-top:3.5rem;
    }
}

/*#endregion Hero*/

/*#region Stats Contact*/

.info-cards .info-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .info-cards .info-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: var(--accent-color);
        box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
    }

    .info-cards .info-card .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .info-cards .info-card .icon-box i {
            font-size: 1.5rem;
        }

    .info-cards .info-card .content {
        display: flex;
        flex-direction: column;
    }

    .info-cards .info-card .info-title {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--accent-color);
    }

    .info-cards .info-card .info-text {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .info-cards .info-card .icon-box {
        color: var(--accent-color);
    }
/* Responsive adjustments */
@media (max-width: 991.98px) {
    .info-cards .info-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

        .info-cards .info-card .icon-box {
            width: 50px;
            height: 50px;
            min-width: 50px;
        }

            .info-cards .info-card .icon-box i {
                font-size: 1.25rem;
            }

        .info-cards .info-card .info-title {
            font-size: 1rem;
        }

        .info-cards .info-card .info-text {
            font-size: 0.85rem;
        }
}

@media (max-width: 767.98px) {
    .info-cards .info-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
}
/*#endregion Stats Contact*/

/*#region DESKTOP FOOTER FIXED RIGHT & MOBILE FOOTER FIXED BOTTOM*/
/* Floating Action Buttons with Hero Styling */
.floating-action-buttons {
    position: fixed;
    z-index: 9999;
}

.hero-floating-elements {
    pointer-events: none;
}

.floating-button-wrapper {
    pointer-events: auto;
    position: relative;
}
/* Desktop Floating Buttons */
.desktop-floating-buttons {
    bottom: 90px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}
/* Mobile Floating Buttons */
.mobile-floating-buttons {
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

    .mobile-floating-buttons .mobile-buttons-container {
        display: flex;
        gap: 15px;
        background: rgba(20, 24, 36, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 50px;
        padding: 15px 25px;
        border: 1px solid rgba(0, 102, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
/* Floating Particles */
.floating-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

.desktop-floating-buttons .floating-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -30px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.desktop-floating-buttons .floating-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: -40px;
    right: -20px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.desktop-floating-buttons .floating-particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -10px;
    animation-delay: 10s;
    animation-duration: 15s;
}

.mobile-floating-buttons .floating-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: -30px;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.mobile-floating-buttons .floating-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.mobile-floating-buttons .floating-particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 30%;
    animation-delay: 7s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-5px, -25px) scale(0.9);
        opacity: 0.3;
    }

    75% {
        transform: translate(15px, -15px) scale(1.05);
        opacity: 0.5;
    }
}
/* Floating Button Base Styles */
.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.floating-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
/* Phone Button */
.floating-btn-phone {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

    .floating-btn-phone::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-phone:hover::before {
        left: 100%;
    }

    .floating-btn-phone:hover .floating-btn-glow {
        opacity: 1;
    }
/* Email Button */
.floating-btn-email {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

    .floating-btn-email::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-email:hover::before {
        left: 100%;
    }

    .floating-btn-email:hover .floating-btn-glow {
        opacity: 1;
    }
/* WhatsApp Button */
.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

    .floating-btn-whatsapp::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .floating-btn-whatsapp:hover::before {
        left: 100%;
    }

    .floating-btn-whatsapp:hover .floating-btn-glow {
        opacity: 1;
    }
/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.floating-btn-phone:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.6);
}

.floating-btn-email:hover {
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.6);
}

.floating-btn-whatsapp:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.floating-btn i {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.floating-btn:hover i {
    transform: scale(1.2);
}
/* Desktop Tooltips */
.desktop-floating-buttons .floating-btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(20, 24, 36, 0.95);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

    .desktop-floating-buttons .floating-btn-tooltip::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: rgba(20, 24, 36, 0.95);
        border-right: 1px solid rgba(0, 102, 255, 0.3);
        border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    }

.desktop-floating-buttons .floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateX(0);
}
/* Mobile Labels */
.mobile-floating-buttons .floating-btn-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-floating-buttons .floating-btn:hover .floating-btn-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}
/* Mobile specific button sizing */
.mobile-floating-buttons .floating-btn {
    width: 50px;
    height: 50px;
}

    .mobile-floating-buttons .floating-btn i {
        font-size: 20px;
    }
/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-floating-buttons {
        display: none;
    }

    .mobile-floating-buttons {
        display: flex;
    }

        .mobile-floating-buttons .mobile-buttons-container {
            padding: 12px 20px;
        }

        .mobile-floating-buttons .floating-btn {
            width: 45px;
            height: 45px;
        }

            .mobile-floating-buttons .floating-btn i {
                font-size: 18px;
            }

        .mobile-floating-buttons .floating-btn-label {
            font-size: 11px;
            bottom: -22px;
        }
}

@media (min-width: 769px) {
    .mobile-floating-buttons {
        display: none;
    }

    .desktop-floating-buttons {
        display: flex;
    }
}
/* Accessibility and touch improvements */
.floating-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}
/* Animation delays for staggered appearance */
.desktop-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 200ms !important;
}

.desktop-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 300ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(2) {
    animation-delay: 150ms !important;
}

.mobile-floating-buttons .floating-button-wrapper:nth-child(3) {
    animation-delay: 200ms !important;
}

.mobile-bar-fixed-bottom {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2d2d2d;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* High z-index to stay above other content */
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
}
/* Show only on mobile devices (screens smaller than 768px) */
@media (max-width: 767px) {
    .mobile-bar-fixed-bottom {
        display: flex !important;
    }

    .desktop-bar-fixed-right {
        display: none;
    }
}
/* Individual buttons */
.btn-phone-mobile-bar-fixed-bottom,
.btn-email-mobile-bar-fixed-bottom,
.btn-whatsapp-mobile-bar-fixed-bottom {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
}


    .btn-phone-mobile-bar-fixed-bottom:hover, .btn-email-mobile-bar-fixed-bottom:hover, .btn-whatsapp-mobile-bar-fixed-bottom:hover {
        background-color: var(--accent-color);
        transform: scale(1.1);
    }
    /* Icon styling */
    .btn-phone-mobile-bar-fixed-bottom i,
    .btn-email-mobile-bar-fixed-bottom i,
    .btn-whatsapp-mobile-bar-fixed-bottom i {
        font-size: 24px;
    }
/* Add padding to body to prevent content from being hidden behind the fixed footer */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Height of mobile bar + some spacing */
    }
}

@media (max-width: 767px) {
    .custom-chat-btn {
        bottom: 90px !important; /* Position above mobile footer */
    }

    .custom-chat-window {
        bottom: 90px !important; /* Position above mobile footer */
        height: calc(100vh - 170px) !important; /* Adjust height to fit above mobile footer */
    }
}
/*#endregion*/

/*#region Services Tabs*/
/* Services Hero Section - Extends Hero styling */
.services-hero {
    padding: 100px 0;
}

.services-content-wrapper {
    background: rgba(20, 24, 36, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
    margin-top: 40px;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .services-content-wrapper {
        padding: 30px 20px;
    }
}
/* Services Hero Title & Description */
.services-hero .hero-title {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.services-hero .hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
/* Tab Navigation Styling */
.services-hero .nav-tabs {
    border: none;
    border-right: 2px solid rgba(0, 102, 255, 0.3);
    height: 100%;
    padding: 0;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

    .services-hero .nav-tabs .nav-item {
        margin: 10px 0;
    }

    .services-hero .nav-tabs .nav-link {
        padding: 20px;
        border: none;
        border-radius: 15px;
        color: rgba(224, 230, 237, 0.8);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
        cursor: pointer;
        margin: 5px 10px;
    }

        .services-hero .nav-tabs .nav-link .d-flex {
            gap: 15px;
            align-items: center;
        }

        .services-hero .nav-tabs .nav-link i {
            font-size: 24px;
            color: rgba(0, 102, 255, 0.7);
            transition: all 0.3s ease;
            width: 40px;
            text-align: center;
        }

        .services-hero .nav-tabs .nav-link h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            transition: all 0.3s ease;
        }

        .services-hero .nav-tabs .nav-link:hover {
            color: #ffffff;
            background: rgba(0, 102, 255, 0.1);
            transform: translateX(5px);
        }

            .services-hero .nav-tabs .nav-link:hover i {
                color: #00ff88;
                transform: scale(1.1);
            }

        .services-hero .nav-tabs .nav-link.active {
            color: #ffffff;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
            position: relative;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
        }

            .services-hero .nav-tabs .nav-link.active i {
                color: #00ff88;
                text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
            }

            .services-hero .nav-tabs .nav-link.active::after {
                content: "";
                position: absolute;
                top: 50%;
                right: -2px;
                transform: translateY(-50%);
                height: 70%;
                width: 3px;
                background: linear-gradient(to bottom, #0066ff, #00d4ff);
                border-radius: 3px;
            }

@media (max-width: 991px) {
    .services-hero .nav-tabs {
        border-right: none;
        border-bottom: 2px solid rgba(0, 102, 255, 0.3);
        margin-bottom: 40px;
        padding: 15px;
    }

        .services-hero .nav-tabs .nav-link.active::after {
            top: auto;
            bottom: -2px;
            right: 50%;
            transform: translateX(50%);
            height: 3px;
            width: 70%;
        }
}
/* Tab Content Styling */
.services-hero .tab-content {
    background: rgba(10, 14, 26, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    min-height: 400px;
}

    .services-hero .tab-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 25px;
        background: linear-gradient(135deg, #ffffff 0%, #0066ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .services-hero .tab-content p {
        margin-bottom: 20px;
        color: rgba(224, 230, 237, 0.9);
        line-height: 1.7;
    }

    .services-hero .tab-content .feature-highlight {
        font-style: italic;
        padding: 15px 20px;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
        border-radius: 15px;
        position: relative;
        border-left: 3px solid #00ff88;
        color: #ffffff;
        font-weight: 500;
    }

    .services-hero .tab-content ul {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

        .services-hero .tab-content ul li {
            position: relative;
            padding: 10px 0 10px 35px;
            color: rgba(224, 230, 237, 0.9);
            font-size: 1.05rem;
        }

            .services-hero .tab-content ul li i {
                position: absolute;
                left: 0;
                top: 12px;
                font-size: 1.2rem;
                color: #00ff88;
                text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
            }

    .services-hero .tab-content img {
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        transition: all 0.5s ease;
        width: 100%;
        height: 350px;
        object-fit: cover;
        border: 1px solid rgba(0, 102, 255, 0.3);
    }

        .services-hero .tab-content img:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.5);
        }
/* Responsive adjustments for tab content */
@media (max-width: 768px) {
    .services-hero .tab-content {
        padding: 25px 20px;
    }

        .services-hero .tab-content h3 {
            font-size: 1.75rem;
            margin-top: 20px;
        }

        .services-hero .tab-content img {
            margin-bottom: 30px;
            height: 250px;
        }

    .services-hero .nav-tabs .nav-link {
        padding: 15px;
    }

        .services-hero .nav-tabs .nav-link h4 {
            font-size: 14px;
        }
}
/* Animation for tab switching */
.services-hero .tab-pane {
    animation: fadeIn 0.5s ease-out;
}

.services-hero .hero-content .services-content-wrapper .tab-content .tab-pane img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
    transition: all 0.5s ease;
    width: 100%;
    height: 350px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Enhanced mobile experience */
@media (max-width: 576px) {
    .services-hero .hero-title {
        font-size: 2rem;
    }

    .services-hero .hero-description {
        font-size: 1rem;
    }

    .services-content-wrapper {
        padding: 20px 15px;
    }

    .services-hero .nav-tabs .nav-link {
        padding: 12px;
        margin: 3px;
    }

        .services-hero .nav-tabs .nav-link i {
            font-size: 20px;
            width: 30px;
        }
}

/*#endregion Services Tabs*/
