:root {
    --primary: #ff1f5a;
    --secondary: #790162;
    --accent: #a14e75;
    --light-bg: #f8f9fa;
    --dark-bg: #121212;
    --light-text: #f8f9fa;
    --dark-text: #212529;
    --card-bg-light: #ffffff;
    --card-bg-dark: #1e1e1e;
    --border-light: rgba(0, 0, 0, 0.125);
    --border-dark: rgba(255, 255, 255, 0.125);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition-speed: 0.5s;
    --transition-speed: 0.5s;
}

body {
    font-family: 'Poppins', sans-serif;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed);
    padding: 1rem 0rem;
}

.dark-mode .navbar {
    background: rgba(18, 18, 18, 0.8);
}

.dark-mode .navbar-toggler {
    border: 2px solid var(--primary);

}

.dark-mode .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* Change this color */
    transition: var(--transition-speed);
}

.logo {
    height: 50px;
    width: 200px;
    /* Added width to maintain aspect ratio */
    background-image: url('/images/logo-dark.webp');
    background-size: contain;
    /* Ensures the image fits properly */
    background-repeat: no-repeat;
    /* Prevents image from repeating */
    background-position: center;
    /* Centers the image */
    transition: var(--transition);
}

.dark-mode .logo {
    width: 200px;
    /* Added width to maintain aspect ratio */
    height: 50px;
    background-image: url('/images/logo-white.webp');
    transition: var(--transition);
}

.nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    margin: 0 10px;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {

    /* Toggled navbar background */
    .navbar-collapse {
        background-color: #ffffff65;
        padding: 1rem;
        border-radius: 10px;
    }
    .navbar .navbar-brand .logo{
        position: fixed;
        top: 20px;
        left: 0px;
        z-index: 1000;
        max-width: 150px;
    }
    .dark-mode .navbar-collapse {
        background-color: #11111165;
        padding: 1rem;
        border-radius: 10px;
    }

    /* Customize nav links inside toggled menu */
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Last link - no border */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Add spacing or margin between links */
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    /* Hover effect for toggled links */
    .navbar-nav .nav-link:hover {
        background-color: none;
        border-radius: 5px;
    }

    .dark-mode .navbar-nav .nav-link:hover {
        background-color: #222;
        border-radius: 5px;
    }

    /* Optional: animate dropdown */
    .navbar-collapse.collapse.show {
        animation: slideDown 0.3s ease-in-out;
    }

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

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


/* .dark-mode .nav-link {
    color: var(--light-text) !important;
} */

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.custom-cursor {
    position: fixed;
    z-index: 9999;
}

/* ===DARK MODE BUTTONS === */

.theme-switch {
    --toggle-size: 10px;
    --container-width: 5.625em;
    --container-height: 2.5em;
    --container-radius: 6.25em;
    /* radius 0 - minecraft mode :) */
    --container-light-bg: #3D7EAE;
    --container-night-bg: #1D1F2C;
    --circle-container-diameter: 3.375em;
    --sun-moon-diameter: 2.125em;
    --sun-bg: #ECCA2F;
    --moon-bg: #C4C9D1;
    --spot-color: #959DB1;
    --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
    --stars-color: #fff;
    --clouds-color: #F3FDFF;
    --back-clouds-color: #AACADF;
    --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
    --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--toggle-size);
}

.theme-switch__container {
    width: var(--container-width);
    height: var(--container-height);
    background-color: var(--container-light-bg);
    border-radius: var(--container-radius);
    overflow: hidden;
    cursor: pointer;
    -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
    box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 1), 0em 0.20em 0.125em rgb(109, 109, 109);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__container::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
    border-radius: var(--container-radius)
}

.theme-switch__checkbox {
    display: none;
}

.theme-switch__circle-container {
    width: var(--circle-container-diameter);
    height: var(--circle-container-diameter);
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: var(--circle-container-offset);
    top: var(--circle-container-offset);
    border-radius: var(--container-radius);
    -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    pointer-events: none;
}

.theme-switch__sun-moon-container {
    pointer-events: auto;
    position: relative;
    z-index: 2;
    width: var(--sun-moon-diameter);
    height: var(--sun-moon-diameter);
    margin: auto;
    border-radius: var(--container-radius);
    background-color: var(--sun-bg);
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
    -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.theme-switch__moon {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background-color: var(--moon-bg);
    border-radius: inherit;
    -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: relative;
}

.theme-switch__spot {
    position: absolute;
    top: 0.75em;
    left: 0.312em;
    width: 0.75em;
    height: 0.75em;
    border-radius: var(--container-radius);
    background-color: var(--spot-color);
    -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
    width: 0.375em;
    height: 0.375em;
    top: 0.937em;
    left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
    width: 0.25em;
    height: 0.25em;
    top: 0.312em;
    left: 0.812em;
}

.theme-switch__clouds {
    width: 1.25em;
    height: 1.25em;
    background-color: var(--clouds-color);
    border-radius: var(--container-radius);
    position: absolute;
    bottom: -0.625em;
    left: 0.312em;
    -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
    -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
    transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
    position: absolute;
    color: var(--stars-color);
    top: -100%;
    left: 0.312em;
    width: 2.75em;
    height: auto;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked+.theme-switch__container {
    background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__circle-container:hover {
    left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
    left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__moon {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__clouds {
    bottom: -4.062em;
}

.theme-switch__checkbox:checked+.theme-switch__container .theme-switch__stars-container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar-toggler .theme-switch {
    left: 50%;
}

/*=====END DARK MODE BUTTONS=====*/


        /* Hero Section */
        .hero-services {
            position: relative;
            padding: 120px 0 80px;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 31, 90, 0.15) 0%, rgba(121, 1, 98, 0.15) 90%);
            overflow: hidden;
        }

        .dark-mode .hero-services {
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 31, 90, 0.2) 0%, rgba(121, 1, 98, 0.2) 90%);
        }

        .hero-services .shape {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
        }

        .hero-services .shape1 {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            filter: blur(80px);
            opacity: 0.3;
        }

        .hero-services .shape2 {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            width: 400px;
            height: 400px;
            bottom: -200px;
            left: -200px;
            filter: blur(100px);
            opacity: 0.2;
        }

        .hero-services .container {
            position: relative;
            z-index: 1;
        }

        .hero-services h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .hero-services p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Services Categories Section */
        .service-categories {
            padding: 80px 0;
            position: relative;
        }

        .service-category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .category-tab {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed);
            background-color: var(--card-bg-light);
            color: var(--dark-text);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-light);
        }

        .dark-mode .category-tab {
            background-color: var(--card-bg-dark);
            color: var(--light-text);
            border-color: var(--border-dark);
            box-shadow: var(--shadow-dark);
        }

        .category-tab:hover, .category-tab.active {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 31, 90, 0.3);
        }

        .dark-mode .category-tab:hover, .dark-mode .category-tab.active {
            box-shadow: 0 10px 20px rgba(255, 31, 90, 0.5);
        }

        /* Service Cards */
        .service-grid {
            padding: 20px 0;
        }

        .service-card {
            position: relative;
            background-color: var(--card-bg-light);
            border-radius: 20px;
            overflow: hidden;
            transition: all var(--transition-speed);
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
            height: 100%;
            border: 1px solid var(--border-light);
            transform: translateY(0);
        }

        .dark-mode .service-card {
            background-color: var(--card-bg-dark);
            box-shadow: var(--shadow-dark);
            border-color: var(--border-dark);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 31, 90, 0.2);
        }

        .dark-mode .service-card:hover {
            box-shadow: 0 15px 30px rgba(255, 31, 90, 0.3);
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .service-image {
            position: relative;
            height: 200px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-icon {
            position: absolute;
            bottom: -25px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }

        .service-content {
            padding: 30px 25px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-text);
            transition: color var(--transition-speed);
        }

        .dark-mode .service-title {
            color: var(--light-text);
        }

        .service-desc {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: var(--dark-text);
            opacity: 0.8;
            transition: color var(--transition-speed);
        }

        .dark-mode .service-desc {
            color: var(--light-text);
            opacity: 0.9;
        }

        .service-features {
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .feature-icon {
            color: var(--primary);
            margin-right: 10px;
            font-size: 16px;
        }

        .feature-text {
            font-size: 0.95rem;
        }

        .service-action {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .service-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .service-btn {
            padding: 10px 20px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
        }

        .service-btn:hover {
            background: linear-gradient(45deg, var(--accent), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 31, 90, 0.3);
            color: white;
        }

        .service-btn i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .service-btn:hover i {
            transform: translateX(5px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            position: relative;
            background-color: rgba(255, 31, 90, 0.03);
            transition: background-color var(--transition-speed);
        }

        .dark-mode .faq-section {
            background-color: rgba(255, 31, 90, 0.05);
        }

        .faq-section .shape {
            position: absolute;
            z-index: 0;
            border-radius: 50%;
        }

        .faq-section .shape1 {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            width: 400px;
            height: 400px;
            top: -200px;
            right: -200px;
            filter: blur(100px);
            opacity: 0.15;
        }

        .faq-section .shape2 {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -150px;
            filter: blur(80px);
            opacity: 0.1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
            display: inline-block;
        }

        .section-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--card-bg-light);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: all var(--transition-speed);
            border: 1px solid var(--border-light);
        }

        .dark-mode .faq-item {
            background-color: var(--card-bg-dark);
            box-shadow: var(--shadow-dark);
            border-color: var(--border-dark);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .dark-mode .faq-item:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark-text);
            transition: color var(--transition-speed);
        }

        .dark-mode .faq-question {
            color: var(--light-text);
        }

        .faq-icon {
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .faq-answer-content {
            padding-bottom: 20px;
            color: var(--dark-text);
            opacity: 0.8;
            line-height: 1.7;
            transition: color var(--transition-speed);
        }

        .dark-mode .faq-answer-content {
            color: var(--light-text);
            opacity: 0.9;
        }

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

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 0;
            padding-bottom: 20px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 31, 90, 0.95), rgba(121, 1, 98, 0.95));
            color: white;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 35px;
            background-color: white;
            color: var(--primary);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            color: var(--primary);
        }

        .cta-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .cta-btn:hover i {
            transform: translateX(5px);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

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

        /* Responsive */
        @media (max-width: 991px) {
            .hero-services h1 {
                font-size: 2.5rem;
            }
            
            .hero-services p {
                font-size: 1.1rem;
            }
            
            .service-image {
                height: 180px;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 767px) {
            .hero-services {
                padding: 80px 0 60px;
            }
            
            .hero-services h1 {
                font-size: 2rem;
            }
            
            .service-categories {
                padding: 60px 0;
            }
            
            .category-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
            
            .service-image {
                height: 160px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-subtitle {
                font-size: 1.1rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .slide-up {
            animation: slideUp 0.8s ease forwards;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease forwards;
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }



























/* Footer Styles */
.footer {
    background-color: var(--light-bg);
    color: var(--dark-bg);
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.footer {
    position: relative;
    &::before {
        content: '';
        position: absolute;
        top: -50px;  /* Extends above the footer */
        left: 0;
        right: 0;
        height: 200px;  /* Increased height for better blur effect */
        background: linear-gradient(to bottom, 
        #ff1f5b6b,
            var(--light-bg)
        );
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1;
    }
    background-color:var(--light-bg);
}
.dark-mode .footer {
    position: relative;
    &::before {
        content: '';
        position: absolute;
        top: -50px;  /* Extends above the footer */
        left: 0;
        right: 0;
        height: 200px;  /* Increased height for better blur effect */
        background: linear-gradient(to bottom, 
        #ff1f5b1e,
            var(--dark-bg)
        );
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1;
    }
    background-color:var(--dark-bg);
}
.footer-logo {
    width: 180px;
    height: 100px;
    background-image: url('/images/logo-dark.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
    margin: 0 auto; /* Center horizontally */
    display: block; /* Needed for margin auto to work */
}

.dark-mode .footer-logo {
    background-image: url('/images/logo-white.webp');
    transition: var(--transition);
}
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.8;
    line-height: 1.8;
    color: var(--dark-bg);
    text-align: justify;
}
.dark-mode .footer-description{
    color: var(--light-text);
}
.footer-links-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-bg);
    padding-bottom: 10px;
    position: relative;
}
.dark-mode .footer-links-title {
    color:var(--light-bg);
}
.dark-mode .contact-info{
    color: var(--light-text);
}
.footer-links-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col:hover .footer-links-title::after {
    width: 70px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.dark-mode .footer-links a {
    color: var(--light-text);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.322);
    color: var(--dark-bg);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.dark-mode .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 50%;
    z-index: -1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 31, 90, 0.3);
}

.social-icon:hover::before {
    transform: scale(1);
}

.contact-info {
    margin-top: 20px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    min-width: 25px;
    margin-right: 15px;
    color: var(--primary);
}

.contact-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dark-mode .copyright-bar {
    background: rgba(0, 0, 0, 0.4);
    color:var(--light-bg)
}

.copyright-text {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-shapes .bg-shape {
    opacity: 0.03;
}

@media (max-width: 991px) {
    .client-section .section-title h2 {
        font-size: 2.5rem;
    }
    .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .client-section {
        padding: 0px 0;
    }
    .client-section .section-title h2 {
        font-size: 1.5rem;
    }
    .footer-title {
        font-size: 2rem;
    }
}
.back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.63);
    transition: all var(--transition-speed) ease;
    z-index: 999;
}
@media screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
}

 /* Chatbot Styles */
 .chatbot-container {
    position: fixed;
    bottom: 5em;
    right: .9em;
    z-index: 999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Modified Chatbot Button Styles */
.chatbot-button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 70px;     /* Increased default size */
    height: 70px;    /* Increased default size */
    transition: var(--transition);
    position: relative;
    padding: 0;      /* Remove padding to prevent unwanted spacing */
    display: flex;   /* Use flex to ensure proper centering of the image */
    align-items: center;
    justify-content: center;
}

.chatbot-button img {
    width: 100%;    /* Make image fill the button */
    height: 100%;   /* Make image fill the button */
    object-fit: contain;
    transition: var(--transition);
    border-radius: 50%;  /* Add circular shape */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);  /* Add subtle shadow */
}

.chatbot-button:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(225, 0, 255, 0.4));
}

/* Welcome Bubble - Improved Responsive Design */
.welcome-bubble {
    position: absolute;
    bottom: 80px;  /* Position above the button */
    right: 0;
    background:var(--light-bg);
    border-radius: 15px;
    padding: 12px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 250px;  /* Increased max-width */
    width: max-content; /* Allow the bubble to size with content */
    font-size: 14px;    /* Slightly larger font */
    line-height: 1.4;   /* Improved line height */
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-right-radius: 4px;
    z-index: 1000;  /* Ensure it stays above other elements */
}

.welcome-bubble:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;  /* Adjusted positioning */
    width: 15px;
    height: 15px;
    background: white;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.welcome-bubble.active {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.chatbot-window.active {
    transform: scale(1);
    opacity: 1;
}

.chatbot-header {
    padding: 15px 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.chatbot-title h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-title p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.chatbot-actions button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.chatbot-actions button:hover {
    transform: scale(1.2);
}

.chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(225, 0, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(0, 82, 204, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(241, 90, 36, 0.05) 0%, transparent 15%);
}

.message {
    margin-bottom: 15px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

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

.message-bot {
    align-self: flex-start;
    margin-right: auto;
}

.message-user {
    align-self: flex-end;
    margin-left: auto;
}

.message-content {
    padding: 12px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.message-bot .message-content {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.message-user .message-content {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-bottom-right-radius: 5px;
    text-align: right;
}

.message-time {
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.6;
}

.message-bot .message-time {
    margin-left: 5px;
}

.message-user .message-time {
    margin-right: 5px;
    text-align: right;
}

.typing-indicator {
    display: flex;
    padding: 10px 15px;
    background: white;
    border-radius: 18px;
    width: fit-content;
    animation: fadeIn 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 5px;
}

.typing-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 2px;
    animation: typingAnimation 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.typing-dot:nth-child(3) {
    animation-delay: 1s;
}

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

.chatbot-footer {
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chatbot-input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.chatbot-input-container:focus-within {
    box-shadow: 0 2px 15px rgba(225, 0, 255, 0.2);
}

.chatbot-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 14px;
    background: transparent;
}

.chatbot-send {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-send:hover {
    transform: scale(1.1);
}

.chatbot-send:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.option-btn {
    padding: 8px 15px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.option-btn:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(225, 0, 255, 0.2);
}

/* Dark mode support */
.dark-mode .chatbot-window {
    background: rgba(18, 18, 18, 0.9);
    color: var(--text-light);
}

.dark-mode .chatbot-body {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(225, 0, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(0, 82, 204, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(241, 90, 36, 0.1) 0%, transparent 15%);
}

.dark-mode .message-bot .message-content {
    background: #2a2a2a;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .typing-indicator {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .typing-dot {
    background-color: rgba(255, 255, 255, 0.5);
}

.dark-mode .chatbot-footer {
    background: rgba(18, 18, 18, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .chatbot-input-container {
    background: #2a2a2a;
}

.dark-mode .chatbot-input {
    color: var(--text-light);
}

.dark-mode .option-btn {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.dark-mode .welcome-bubble {
    background: #2a2a2a;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .welcome-bubble:after {
    background: #2a2a2a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    /* Larger screens */
    .chatbot-button {
        width: 85px;
        height: 85px;
    }
    
    .welcome-bubble {
        max-width: 300px;
        font-size: 15px;
        padding: 15px 20px;
    }
    
    .chatbot-window {
        width: 400px;
        height: 550px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    /* Medium screens */
    .chatbot-button {
        width: 75px;
        height: 75px;
    }
    
    .welcome-bubble {
        max-width: 270px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    /* Small screens */
    .chatbot-button {
        width: 65px;
        height: 65px;
    }
    
    .welcome-bubble {
        max-width: 250px;
        bottom: 75px;
    }
    
    .chatbot-window {
        width: 320px;
        height: 480px;
    }
}

@media (max-width: 575px) {
    /* Extra small screens */
    .chatbot-container {
        bottom: 4em;
        right: 20px;
    }
    
    .chatbot-button {
        width: 60px;
        height: 60px;
    }
    
    .welcome-bubble {
        max-width: 220px;
        bottom: 70px;
        font-size: 13px;
        padding: 10px 15px;
        right: 0;
    }
    
    .welcome-bubble:after {
        right: 20px;
    }
    
    .chatbot-window {
        width: 90vw;
        max-width: 300px;
        height: 450px;
        bottom: 80px;
    }
    
    .notification-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    /* Very small screens */
    .chatbot-button {
        width: 50px;
        height: 50px;
    }
    
    .welcome-bubble {
        max-width: 200px;
        font-size: 12px;
        bottom: 60px;
    }
    
    .chatbot-window {
        height: 400px;
    }
}


/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

.dark-mode ::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}