
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&display=swap');

:root {
    --default-font: 'Bricolage Grotesque', sans-serif;
    --heading-font: var(--default-font);
    --nav-font: var(--default-font);
}

/* Global Colors - Elite Black Theme for Consulting Website */
:root {
    --background-color: #121212;
    /* Deep black background for a bold, premium look */
    --default-color: #F9F7F4;
    /* Soft grayish white for body text */
    --heading-color: #F9F7F4;
    /* Crisp white for strong headings */
    --accent-color: #237a8e;
    /* Refined electric blue as the brand accent */
    --surface-color: #111111;
    /* Rich black-gray surface for cards and containers */
    --contrast-color: #F9F7F4;
    /* Pure white for text on accent/surface backgrounds */
}

/* Nav Menu Colors - Matching Elite Theme */
:root {
    --nav-color: #d4d9e3;
    /* Subtle light gray for main nav links */
    --nav-hover-color: #237a8e;
    /* Bright brand blue on hover */
    --nav-mobile-background-color: rgba(0, 0, 0, 0.96);
    /* Slightly transparent black */
    --nav-dropdown-background-color: rgba(15, 15, 15, 0.96);
    /* Deeper black tone for dropdowns */
    --nav-dropdown-color: rgba(230, 235, 245, 0.65);
    /* Soft visibility in dropdowns */
    --nav-dropdown-hover-color: #F9F7F4;
    /* Clean white hover state */
}

/* Optional Presets - Slightly variant themes for section styling */

.light-background {
    --background-color: #121212;
    --surface-color: #1a1a1a;
}

.dark-background {
    --background-color: #121212;
    --default-color: #e0e0e0;
    --heading-color: #F9F7F4;
    --surface-color: #1a1a1a;
    --contrast-color: #F9F7F4;
}


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

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

}

/* Global styles */
body {
    margin: 0;
    cursor: none;
}

.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #237a8e;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-outer {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid #F9F7F4;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.cursor-inner.click,
.cursor-outer.click {
    animation: clickEffect 0.3s ease-out;
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/**/

/* Hide custom cursor on mobile, show default system cursor */
@media (max-width: 768px) {

    .cursor-inner,
    .cursor-outer {
        display: none !important;
    }

    /* Force default cursor on body or main container */
    body,
    html {
        cursor: default !important;
    }
}


/**/


/**/

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;
}

p {
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    /* scales between ~15px and ~18px */
    line-height: 1.6;
    /* Better for readability */
    margin-bottom: 1rem;
    /* Adds consistent spacing between paragraphs */
    color: var(--default-color);
    /* Optional: maintain color consistency */
    font-family:  monospace;

}

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


.img-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    aspect-ratio: 1/1;
    /* optional for consistent height */
}

.img-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
}



/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 6px !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 5px #237a8e !important;
    border-radius: 10px !important;
}


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

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

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

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

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

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




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: 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: #000;
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*
.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}
*/

.header .logo {
    line-height: 1;
    padding-left: 5px;
}

.header .logo img {
    max-height: 36px;
    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;
    }
}

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

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

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

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

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

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

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

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

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

/*--------------------------------------------------------------
# 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 #F9F7F4;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

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

.scroll-top i {
    font-size: 24px;
    color: var(--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;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);

    padding: 60px 0;
    scroll-margin-top: 0;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 0;
    }
}

/*--------------------------------------------------------------
# Hero Section - Elite Black Theme
--------------------------------------------------------------*/
.hero {
    background-color: #8e3244;
    color: var(--default-color);
    /*    padding: 2rem;*/
    overflow: hidden;
}

/* Logo Styling */
.hero-logo {
    width: 60%;
    animation: fadeInDown 1s ease-in-out forwards;
    margin-bottom: 1rem;
}

/* Brand Name */
.hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    color: var(--heading-color);
    animation: fadeInUp 1.2s ease-in-out forwards;
}



.hero p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0.3rem 0;
    /*    color: var(--accent-color);*/
}

.hero h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--default-color);

}

.hero span {
    font-style: italic;

    font-weight: 900;
    /*    color: var(--accent-color);*/
    color: #fff;
    text-decoration: underline;

}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-logo {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    .hero-intro-box {
        position: static;
        margin-top: 2rem;

        padding: 0.5rem;
    }



    .hero h5 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about h4 {
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 10.375rem);
    /* 40px to 150px */
    line-height: 1;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services {
    position: relative;
    overflow: hidden;
}

.services .services-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .services .services-header {
        margin-bottom: 3rem;
    }
}

.services .services-intro {
    padding-right: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .services .services-intro {
        padding-right: 0;
        margin-bottom: 2.5rem;
    }
}

.services .services-intro .services-tag {
    display: inline-block;
    background: #237a8e;
    color: #F9F7F4;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

/*
.services .services-intro .services-tag:hover {
    background: linear-gradient(to right, #4c6ef5, var(--accent-color));
}
*/

.services .services-intro h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: var(--heading-color);
    position: relative;
}

@media (max-width: 768px) {
    .services .services-intro h2 {
        font-size: 2.2rem;
    }
}

.services .services-intro p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    position: relative;
    z-index: 1;
}




/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
 

.slide h3 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    /* ~28px to 56px */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide p {
    font-size: clamp(1rem, 2.2vw, 1.625rem);
    /* ~16px to 26px */
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.slide ul {
    list-style: none;
    padding-left: 1rem;
}

.slide ul li {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.5;
}

.slide ul li::before {
    position: absolute;
    left: 0;
    color: #237a8e;
    font-size: 1rem;
    line-height: 1;
}

.slide i.bi {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    /* ~24px to 36px */
    margin-right: 0.6rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.slide.active i.bi {
    transform: scale(1.2);
    color: #237a8e;
}

/* Extra adjustments for small screens */
@media (max-width: 576px) {
    .slide {
        padding: 1rem 0.75rem;
    }

    .slide h3 {
        margin-bottom: 0.75rem;
    }

    .slide p,
    .slide li {
        margin-bottom: 0.75rem;
    }
}




/*--------------------------------------------------------------
# Curve info
--------------------------------------------------------------*/

.curve-info h4 {
    font-size: clamp(2rem, 8vw, 120px);
    /* Responsive font scaling */
    font-weight: 900;
    text-align: right;
    line-height: 1;
    margin-top: 1rem;
}


.curve-info .row > div {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .curve-info {
        text-align: left;
    }

    .curve-info h4 {
        text-align: left;
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/*--------------------------------------------------------------
# Curve
--------------------------------------------------------------*/
.hover-zone {
    cursor: pointer;
}

 
.container-wrapper {
    width: 100%;
}

.svg-stage-section {
    display: flex;
    flex-direction: column;

}

.svg-wrapper {
    width: 100%;
    max-width: 100%;
    height: 55vh;
}

/* Remove height on mobile view */
@media (max-width: 767.98px) {
    .svg-wrapper {
         height: auto;  
        
    }
}


svg {
    width: 100%;
}

.row.stages {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.col-3 {
    width: 23%;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Default: hide all stage descriptions */
.stage .stage-desc {
    display: none;
}

/* Show description only for active stage */
.stage.active .stage-desc {
    display: block;
}


.stage-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    /*    color: var(--accent-color);*/
    margin-bottom: 0.5rem;
}

.stage.active .stage-title {

    color: var(--accent-color);

}

.stage-desc {
    font-size: 1rem;
    line-height: 1.5;
}

/* Hide controls by default (desktop) */
.controls {
    display: none;
}

/* Show only on mobile and align to the right */


@media (max-width: 768px) {
    .controls {
        display: flex;
        justify-content: flex-end;
        push to right width: 100%;
/*        padding: 0 1rem;*/
/*        margin-top: 1rem;*/
        gap: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 50%;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        cursor: pointer;
    }

    .nav-btn:hover {
        background-color: #1b5c6d;
    }
}


.nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: #1b5c6d;
}

/* Mobile */
@media (max-width: 768px) {
    .row.stages {
        flex-direction: column;
    }

    .col-3 {
        width: 100%;
    }

    .svg-wrapper {
        margin-bottom: 1.5rem;
    }
}


@media screen and (max-width: 768px) {
    .row.stages {
        flex-direction: column;
        align-items: center;
    }

    .col-3 {
        display: none;
        /* Hide all by default */
        width: 100%;
    }

    .col-3.active {
        display: block;
        /* Show only the active one */
    }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/


.contact h4 {
    font-weight: 900;
    font-size: clamp(2.25rem, 7vw, 7.5rem);
    /* Scales between 36px and 120px */
    margin-bottom: clamp(2rem, 5vw, 5rem);
    /* Scales between 32px and 80px */
    margin-top: clamp(2.5rem, 6vw, 6.25rem);
    /* Scales between 40px and 100px */
    line-height: 1.1;
}


/* Contact Wrapper Layout */
.contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    .contact .contact-wrapper {
        grid-template-columns: 38% 62%;
        gap: 40px;
    }
}

/* Info Panel Styling */
.contact .contact-info-panel {
    background: linear-gradient(145deg,
            var(--accent-color),
            color-mix(in srgb, var(--accent-color), #1a4372 40%));
    color: var(--contrast-color);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Grid for Info Cards */
.contact .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
    .contact .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Individual Info Card */
.contact .info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    align-items: center; /* vertical alignment */
    gap: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.contact .info-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Icon Styling */
.contact .icon-container {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .icon-container i {
    font-size: 20px;
    color: var(--contrast-color);
}

/* Text Content */
.contact .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
}

.contact .card-content h4 {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--contrast-color);
}

.contact .card-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin: 0;
    opacity: 0.8;
}

/* Social Links Panel */
.contact .social-links-panel {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.contact .social-links-panel h5 {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.contact .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

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



.contact .form-container {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}


.contact .form-container .form-floating {
    margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 24px 20px 8px 20px;
    height: calc(3.5rem + 3px);
    background-color: var(--surface-color);
    color: var(--default-color);
    transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
    background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
    color: transparent;
}

.contact .form-container .form-floating label {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
    background-color: transparent;
}

.contact .form-container .btn-submit {
    background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
    color: var(--contrast-color);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form-container .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
    transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact .contact-info-panel {
        padding: 30px 25px;
    }

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

@media (max-width: 576px) {
    .contact .social-links-panel .social-icons {
        flex-wrap: wrap;
    }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
    --card-border-radius: 12px;
    --content-spacing: 4rem;
}

.portfolio-details .project-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.portfolio-details .project-header .project-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.portfolio-details .project-header .project-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.portfolio-details .project-header .project-meta .meta-item {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-header .project-meta .meta-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
    color: inherit;
    transition: all 0.3s;
}

.portfolio-details .project-header .project-meta .meta-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.portfolio-details .project-header .project-tags {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
    transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
    text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
    background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
    color: var(--heading-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
    background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
    transform: scale(1.05);
}

.portfolio-details .media-showcase {
    margin-bottom: var(--content-spacing);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .media-showcase .swiper-wrapper {
    height: auto !important;
}

.portfolio-details .media-showcase .swiper-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.portfolio-details .media-showcase .swiper-pagination {
    position: absolute;
    bottom: 20px;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--contrast-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
    margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    font-weight: 500;
}

.portfolio-details .project-content .description-box p {
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--card-border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--card-border-radius);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
    background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
    color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.portfolio-details .project-content .info-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 0;
}

.portfolio-details .project-content .project-gallery {
    margin: 3rem 0;
}

.portfolio-details .project-content .project-gallery h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
    margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--card-border-radius);
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 2.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
    display: flex;
    align-items: center;
    color: var(--heading-color);
    font-weight: 600;
    transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
    font-size: 1.2rem;
    transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
    margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
    color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
    transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
    border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
    padding: 8px 16px;
    border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
    margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
    transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
    margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
    color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .portfolio-details .project-header .technologies {
        margin-top: 2rem;
    }

    .portfolio-details .project-header .technologies .tech-title,
    .portfolio-details .project-header .technologies .tech-badges {
        text-align: left;
        justify-content: flex-start;
    }
}

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

    .portfolio-details .project-navigation {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .portfolio-details .project-navigation a.all-projects {
        order: -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-details .project-stats {
        grid-template-columns: 1fr !important;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

.service-details .service-header {
    margin-bottom: 2.5rem;
}

.service-details .service-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
}

.service-details .service-header h1:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    width: 70px;
    background: var(--accent-color);
}

.service-details .service-header .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-main .service-content-tabs {
    margin-bottom: 3rem;
}

.service-details .service-main .service-content-tabs .nav-pills {
    gap: 0.5rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 1px;
    padding-left: 10px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link {
    background: transparent;
    color: color-mix(in srgb, var(--heading-color), transparent 25%);
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    margin-bottom: -1px;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link:hover {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: none;
    position: relative;
}

.service-details .service-main .service-content-tabs .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--surface-color);
}

.service-details .service-main .service-content-tabs .tab-content {
    background-color: var(--surface-color);
    border-radius: 0 0 10px 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-top: none;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .main-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block {
    padding: 1.5rem;
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block h4 i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .tab-image-content .content-blocks .content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-text p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps {
    margin-top: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper {
    position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    z-index: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item:last-child {
    margin-bottom: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .strategy-content .strategy-steps .steps-wrapper .step-item .step-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card {
    background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 8%) 100%);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon {
    margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .metrics-overview .metric-card .metric-label {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.95rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies {
    margin-top: 3rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination {
    bottom: -5px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-image {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content {
    padding: 2rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.1;
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content .case-result .result-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-main .service-content-tabs .tab-content .results-content .case-studies .case-study-item .case-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-details .service-main .section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-details .service-main .section-subtitle:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.service-details .service-main .services-packages .service-package {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-main .services-packages .service-package:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-details .service-main .services-packages .service-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main .services-packages .service-package:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-details .service-main .services-packages .service-package:hover .package-icon {
    background-color: var(--accent-color);
}

.service-details .service-main .services-packages .service-package:hover .package-icon i {
    color: var(--contrast-color);
}

.service-details .service-main .services-packages .service-package .package-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package .package-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-details .service-main .services-packages .service-package h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-details .service-main .services-packages .service-package p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-details .sidebar-wrapper .service-info-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
    padding: 2rem;
    position: relative;
}

.service-details .sidebar-wrapper .service-info-card .card-header h3 {
    color: var(--contrast-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .service-info-card .card-header .service-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--contrast-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-details .sidebar-wrapper .service-info-card .service-stats {
    padding: 1.5rem 2rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item:last-child {
    margin-bottom: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item i {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span {
    display: block;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .service-info-card .service-stats .stat-item div span.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading-color);
}

.service-details .sidebar-wrapper .service-highlights {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .service-highlights h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.service-details .sidebar-wrapper .service-highlights h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item {
    display: flex;
    align-items: flex-start;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.service-details .sidebar-wrapper .service-highlights .highlights-wrapper .highlight-item .highlight-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-details .sidebar-wrapper .contact-action {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .sidebar-wrapper .contact-action:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), black 15%) 0%, var(--accent-color) 100%);
    z-index: 1;
}

.service-details .sidebar-wrapper .contact-action .action-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-details .sidebar-wrapper .contact-action .action-content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-details .sidebar-wrapper .contact-action .action-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button {
    display: inline-block;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-details .sidebar-wrapper .contact-action .action-content .action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .sidebar-wrapper .client-testimonial {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content {
    position: relative;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark {
    display: block;
    margin-bottom: 1rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .quote-mark i {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 1.5rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info {
    display: flex;
    align-items: center;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.service-details .sidebar-wrapper .client-testimonial .testimonial-content .client-info div span {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
    .service-details .service-header h1 {
        font-size: 2rem;
    }

    .service-details .sidebar-wrapper {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .service-details .service-content-tabs .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .service-details .service-content-tabs .nav-pills .nav-link {
        white-space: nowrap;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .service-details .service-content-tabs .nav-pills .nav-link i {
        font-size: 1rem;
    }

    .service-details .service-content-tabs .tab-content {
        padding: 1.5rem;
    }

    .service-details .service-header h1 {
        font-size: 1.75rem;
    }

    .service-details .service-header .lead {
        font-size: 1rem;
    }

    .service-details .case-study-item .case-content {
        padding: 1.25rem !important;
    }

    .service-details .case-study-item .case-content h4 {
        font-size: 1.125rem !important;
    }

    .service-details .case-study-item .case-content .case-result .result-value {
        font-size: 1.75rem !important;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.section-header {
    text-align: left;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    /* scales from small to large */
    font-weight: 900;
    color: var(--heading-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.card-glow {
    background-color: rgba(17, 17, 17, 0.9);
    border-radius: 20px;
    padding: 1.25rem;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-glow:hover {
    transform: translateY(-8px);
}

.card-glow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card-glow:hover img {
    transform: scale(1.04);
}

.card-glow h3 {
    color: var(--heading-color);
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.card-glow:hover h3 {
    color: var(--accent-color);
}

/* Responsive spacing for smaller devices */
@media (max-width: 576px) {
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .card-glow {
        padding: 1rem;
    }

    .card-glow h3 {
        font-size: 1.1rem;
    }
}


/*Inner Portfolio Page*/

/* Portfolio Section Styled for Elite Black Theme */
.portfolio-section {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--default-color);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}



/* Portfolio Header with Theme Colors */
.portfolio-header {
    font-weight: 900;
    color: var(--heading-color);
    text-transform: uppercase;
    line-height: 1.1;
    word-break: break-word;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Responsive Font Sizes */
@media (min-width: 1400px) {
    .portfolio-header {
        font-size: 150px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .portfolio-header {
        font-size: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-header {
        font-size: 72px;
    }
}

@media (max-width: 767px) {
    .portfolio-header {
        font-size: 48px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .portfolio-header {
        font-size: 36px;
        text-align: center;
    }
}

/* Underline Accent */
.portfolio-header::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: var(--accent-color);
    margin-top: 20px;
}
