/* 
    -- Table of Content --

    * 01 - Menu
    * 02 - Responsive Sidebar Menu
    * 03 - Global Color
    * 04 - Header
    * 05 - Section Header
    * 06 - Left Sidebar
    * 07 - Hero Section
    * 08 - Home 3
    * 09 - Home 5
    * 10 - About
    * 11 - Resume
    * 12 - Services
    * 13 - Skills
    * 14 - Portfolio
    * 15 - Testimonial
    * 16 - Client
    * 17 - Pricing Table
    * 18 - Contact
    * 19 - Breadcrumb
    * 20 - Blog items
    * 21 - Blog Style 2
    * 22 - Blog Details
    * 23 - Comment
    * 24 - Comment Form
    * 25 - Footer
    * @Keyframe

*/
:root {
    --primary_color: #28e98c;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
    color: #999999;
    background: #1f1f1f;
    line-height: 1.7;
    overflow-x: hidden;
    height: 100vh;
    font-display: swap;
}

.bg-white {
    background: #fff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

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

.content-width {
    max-width: 770px;
    width: 100%;
    margin-left: auto;
    margin-right: 80px;
}

.theme-btn {
    background: var(--primary_color);
    color: #000000;
    display: block;
    text-align: center;
    padding: 11px 58px 10px 58px;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    justify-content: center;
    text-transform: uppercase;
    border: none;
    transition: .3s;
    cursor: pointer;
    border: 2px solid var(--primary_color);
}

.theme-btn i {
    font-size: 24px;
    margin-right: 10px;
    display: block;
    margin-bottom: 3px;
}

.theme-btn:hover {
    background: none;
    color: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 233, 140, 0.3);
}

.theme-btn:hover .ph {
    color: var(--primary_color);
}

.custom-container {
    max-width: 1130px;
    padding: 0 15px;
    margin: auto;
}

.subtitle {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    border: 1px solid #565656;
    padding: 9px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.subtitle i {
    margin-bottom: 1px;
    font-size: 14px;
    margin-right: 10px;
}

.page-loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader .bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}

.page-loader .bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    transform-origin: 50%;
    animation: bounceLoader 500ms alternate infinite ease;
}


/* Icon Menu */
.icon-menu {
    position: absolute;
    right: 68px;
    top: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none; /* Hidden on desktop by default */
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: .3s;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.icon-menu span {
    width: 18px;
    display: block;
    height: 2px;
    background: #fff;
    transition: .3s;
    border-radius: 1px;
}

.icon-menu:hover {
    border-color: var(--primary_color);
}

.icon-menu:hover span {
    background: var(--primary_color);
}


#scroll-section {
    /* overflow-x: hidden !important;
    overflow-y: auto !important; */
    /* width: 100%; */
    /* height: 100%; */
    /* height: 100vh; */
    position: relative;
}

.scroll-content {
    /* transform: translate(0) !important; */
    position: relative;
}

main.drake-main {
    /* inset: 0px;
    width: 100%;
    height: 100vh;
    position: fixed; */
    /* overflow: hidden; */
    position: relative;
}

.page-section {
    overflow: hidden;
}


/* 01 - Menu */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #575757;
    border-radius: 25px;
    position: fixed;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    /* width: 55px; */
    text-align: center;
    gap: 2px;
    padding: 6px 0;
    background: #1f1f1f;
    z-index: 20;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.menu li .scroll-to,
.menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* padding: 10px 10px; */
    width: 48px;
    height: 48px;
    transition: .3s;
    color: #999999;
    cursor: pointer;
}

.menu li a.active,
.menu li a:hover,
.menu li .scroll-to.active,
.menu li .scroll-to:hover {
    color: var(--primary_color);
    transform: scale(1.05);
}

/* Enhanced active state for better visibility */
.menu li .scroll-to.active {
    color: var(--primary_color) !important;
    transform: scale(1.1);
}

.menu li .scroll-to.active i {
    color: var(--primary_color) !important;
    transform: scale(1.1);
}

.menu li .scroll-to:hover span,
.menu li a:hover span {
    opacity: 1;
    visibility: visible;
}

.menu li .scroll-to i,
.menu li a i {
    font-size: 16px;
    display: block;
    flex-shrink: 0;
}

.menu li .scroll-to span,
.menu li a span {
    position: absolute;
    transition: .3s;
    font-size: 12px;
    background: #404042;
    right: 100%;
    color: #fff;
    display: block;
    padding: 3px 8px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
}

.menu li .scroll-to span::before,
.menu li a span::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #404042;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: rotate(54deg) skew(-8deg, -39deg);
    margin-top: -5px;
    z-index: -1;
}

/* 02 - Responsive Sidebar Menu */
.responsive-sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.responsive-sidebar-menu.active {
    opacity: 1;
    visibility: visible;
}

.global-color .inner .overlay,
.responsive-sidebar-menu .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #565656;
    opacity: 0.5;
}

.responsive-sidebar-menu .sidebar-menu-inner {
    position: relative;
    max-width: 345px;
    width: 100%;
    margin-left: auto;
    background: #191919;
    height: 100%;
    overflow-x: hidden;
    padding: 80px 30px 30px;
    margin-right: -250px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.responsive-sidebar-menu.active .sidebar-menu-inner {
    margin-right: 0;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap {
    width: 100%;
    margin: 0;
    flex: 1;
}

/* Close Button - Hidden by default */
.responsive-sidebar-menu .menu-close {
    position: absolute;
    top: 60px;
    right: 68px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show close button when sidebar is open */
.responsive-sidebar-menu.active .menu-close {
    opacity: 1;
    visibility: visible;
}

/* Hide hamburger icon when sidebar is open */
body.sidebar-open .icon-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.responsive-sidebar-menu .menu-close .close-menu {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.responsive-sidebar-menu .menu-close .close-menu:hover {
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
    color: var(--primary_color);
}


.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    transform: translateY(0);
    background: none;
    border-radius: 0;
    border: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    box-shadow: none;
    width: 100%;
    align-items: stretch;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: none;
    width: 100%;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    box-shadow: none;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a:hover span {
    color: #fff;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a:hover i {
    color: var(--primary_color);
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a i {
    margin-bottom: 0;
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #999999;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a span {
    position: relative;
    right: 0;
    opacity: 1;
    visibility: visible;
    color: #999999;
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a span::before {
    display: none
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a.active {
    background: rgba(40, 233, 140, 0.1);
    border-left: 4px solid var(--primary_color);
    box-shadow: none;
    transform: translateX(0);
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a.active span {
    color: #fff;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a.active i {
    color: var(--primary_color);
}

.responsive-sidebar-menu .sidebar-menu-inner .global-color-option,
.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social {
    width: 100%;
    margin: 0;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul {
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a:hover {
    background: rgba(40, 233, 140, 0.1);
    transform: translateY(-2px);
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a:hover i {
    color: var(--primary_color);
    transform: scale(1.1);
}


.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a:hover {
    color: var(--primary_color);
}

/* 03 - Global Color */
.global-color {
    position: fixed;
    left: 0;
    top: 50px;
    z-index: 100;
}

.global-color .inner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.global-color.active .inner {
    opacity: 1;
    visibility: visible;
}

.global-color .setting-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    background: #1f1f1f;
}

.global-color .inner .global-color-option .close-settings {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 20px;
}

.global-color .inner .global-color-option .global-color-option-inner p {
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.global-color .inner .global-color-option .global-color-option-inner .themes {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.global-color .inner .global-color-option .global-color-option-inner .themes li {
    margin-right: 80px;
    margin-bottom: 55px;
}

.global-color .inner .global-color-option .global-color-option-inner .themes li a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: block;
    line-height: 1.2;
    position: relative;
}

.global-color .inner .global-color-option .global-color-option-inner .themes li a::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    opacity: 0;
    transition: .3s;
}

.global-color .inner .global-color-option .global-color-option-inner .themes li a:hover::before,
.global-color .inner .global-color-option .global-color-option-inner .themes li.active a::before {
    opacity: 1;
}

.global-color .inner .global-color-option {
    max-width: 1043px;
    width: 100%;
    margin-left: auto;
    background: #191919;
    height: 100%;
    overflow-x: hidden;
    padding-top: 50px;
    margin-right: -400px;
    transition: .4s;
    padding: 134px;
}

.global-color .inner .global-color-option h2 {
    color: #fff;
    font-weight: 200;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 80px;
}

.global-color.active .inner .global-color-option {
    margin-right: 0;
}

.global-color .global-color-option .color-boxed {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 105px;
    padding-top: 30px;
}

.global-color .global-color-option .color-boxed a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    background: #28e98c;
}

.global-color .global-color-option .color-boxed a::before {
    content: '';
    border: 1px solid #fff;
    position: absolute;
    border-radius: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s;
}

.global-color .global-color-option .color-boxed a::after {
    content: '';
    position: absolute;
    border: none;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    left: 50%;
    top: 50%;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}

.global-color .global-color-option .color-boxed a.clr-active::after,
.global-color .global-color-option .color-boxed a:hover::after,
.global-color .global-color-option .color-boxed a:hover::before,
.global-color .global-color-option .color-boxed a.clr-active::before {
    opacity: 1;
}

.global-color .global-color-option .color-boxed a:nth-child(2) {
    background: #e4af12;
}

.global-color .global-color-option .color-boxed a:nth-child(3) {
    background: #fe6f1d;
}

.global-color .global-color-option .color-boxed a:nth-child(4) {
    background: #14c5fd;
}

.global-color .global-color-option .color-boxed a:nth-child(5) {
    background: #c0c0c0;
}

.global-color .global-color-option .color-boxed a:nth-child(6) {
    background: #1338f3;
}

.global-color .global-color-option .color-boxed a:nth-child(7) {
    background: #f31313;
}

.global-color .global-color-option .color-boxed a:nth-child(8) {
    background: #ff99cc;
}

.global-color .global-color-option .color-boxed a:nth-child(9) {
    background: #cceb00;
}

.global-color .global-color-option .color-boxed a i {
    font-size: 14px;
}


/* 04 - Header */
.header-area {
    background: #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 25px 0;
}

.header-area .logo {
    display: block;
}

.header-area .logo img {
    display: block;
}

.header-area nav {
    transition: .3s;
}

.header-area nav .nav-menu {
    gap: 25px;
    display: flex;
}

.header-area nav .nav-menu li {
    position: relative;
}

.header-area nav .nav-menu li .toggle-sub-dropdown,
.header-area nav .nav-menu li .toggle-dropdown {
    display: none;
    width: 35px;
    text-align: center;
}

.header-area nav .nav-menu li .dropdown {
    position: absolute;
    left: 0;
    width: 200px;
    background: #000;
    box-shadow: 1px 6px 20px rgb(0 0 0 / 20%);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    padding: 5px 0;
}

.header-area nav .nav-menu li .dropdown li a {
    padding: 8px 15px;
    line-height: 1.2;
}

.header-area nav .nav-menu li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
}

.header-area nav .nav-menu li .dropdown li .dropdown {
    left: 100%;
    top: 0;
}

.header-area nav .nav-menu li a {
    color: #fff;
    display: block;
    transition: .3s;
    padding: 8px 0;
}

.header-area nav .nav-menu li a:hover {
    color: var(--primary_color);
}

.header-area .header-right .show-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 30%);
    margin-left: auto;
}

.header-area nav .close-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
}


/* 05 - Section Header */
.section-header {
    text-align: left;
}

.section-header h1 {
    font-size: 48px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 45px;
}

.section-header h1 span,
.section-header h2 span {
    color: var(--primary_color);
}

.section-header h2 {
    font-size: 48px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 45px;
}


/* 06 - Left Sidebar */
.left-sidebar {
    max-width: 350px;
    width: calc(100% - 60px);
    border-radius: 25px;
    border: none;
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 25px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: sidebarSlideIn 0.8s ease-out forwards;
    /* Safety margin to prevent touching browser edge */
    margin-right: 20px;
}

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

.left-sidebar:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.03);
}

.drake-main .left-sidebar {
    display: none;
}

.left-sidebar>img.me {
    border-radius: 20px;
    display: block;
    margin: 0 auto 20px auto;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.left-sidebar:hover>img.me {
    border-color: var(--primary_color);
    transform: scale(1.08);
    box-shadow: 
        0 15px 40px rgba(40, 233, 140, 0.25),
        0 0 0 3px rgba(40, 233, 140, 0.1);
}

.left-sidebar .sidebar-header {
    margin-bottom: 20px;
    text-align: center;
}

.left-sidebar .sidebar-header img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(40, 233, 140, 0.05));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    /* Ensure logo displays properly regardless of original size */
    max-width: 100%;
    max-height: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Add subtle shadow for depth */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.left-sidebar .sidebar-header:hover img {
    border-color: var(--primary_color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(40, 233, 140, 0.15);
}

.left-sidebar .sidebar-header .designation {
    max-width: 100%;
    text-align: center;
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(40, 233, 140, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(40, 233, 140, 0.2);
}

.left-sidebar h2 {
    font-size: 22px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}

.left-sidebar .address {
    margin-bottom: 18px;
    text-align: center;
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
}

.left-sidebar .address::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #565656, transparent);
    margin: 0 auto 20px auto;
    border-radius: 1px;
}

.left-sidebar .copyright {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    color: #666666;
    font-weight: 300;
}

.left-sidebar .social-profile {
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
}

.left-sidebar .social-profile li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #999999;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left-sidebar .social-profile li a:hover {
    color: var(--primary_color);
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.15);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 25px rgba(40, 233, 140, 0.2),
        0 0 0 2px rgba(40, 233, 140, 0.1);
}

.left-sidebar .theme-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.left-sidebar .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    border-radius: 25px;
}

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

.left-sidebar .theme-btn:hover {
    background: none;
    color: var(--primary_color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(40, 233, 140, 0.25),
        0 0 0 2px rgba(40, 233, 140, 0.2);
    border-color: var(--primary_color);
}

.left-sidebar .theme-btn:hover .ph {
    color: var(--primary_color);
    transform: scale(1.1);
}

.left-sidebar .consultation-btn {
    margin-top: 15px;
    background: var(--primary_color);
    border-color: var(--primary_color);
    color: #000;
    position: relative;
    overflow: hidden;
}

.left-sidebar .consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
    border-radius: 25px;
}

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

.left-sidebar .consultation-btn:hover {
    background: transparent;
    color: var(--primary_color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(40, 233, 140, 0.25),
        0 0 0 2px rgba(40, 233, 140, 0.2);
}

.left-sidebar .consultation-btn:hover .ph {
    color: var(--primary_color);
    transform: scale(1.1);
}

/* Enhanced Focus States for Accessibility */
.left-sidebar .theme-btn:focus,
.left-sidebar .consultation-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 233, 140, 0.4);
    border-color: var(--primary_color);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.left-sidebar .social-profile li a:focus {
    outline: none;
    color: var(--primary_color);
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
    box-shadow: 0 0 0 2px rgba(40, 233, 140, 0.3);
}

/* Enhanced Sidebar Header Hover */
.left-sidebar .sidebar-header:hover img {
    border-color: var(--primary_color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(40, 233, 140, 0.15);
}

/* Professional Glow Effect for Designation */
.left-sidebar .sidebar-header .designation {
    position: relative;
    overflow: hidden;
}

.left-sidebar .sidebar-header .designation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 233, 140, 0.1), transparent);
    transition: left 0.8s ease;
}

.left-sidebar:hover .sidebar-header .designation::before {
    left: 100%;
}



/* 07 - Hero Section */
.hero-section {
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}


/* Hero Section Subtitle - Simplified */
.hero-section .subtitle {
    border-color: #565656;
    color: #ffffff;
    background: transparent;
}

.hero-section .subtitle i {
    color: var(--primary_color);
}

/* Hero Subheadline */
.hero-section .subheadline {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Hero Description */
.hero-section .hero-description {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 40px;
}

/* Rotating Word Gradient */
#rotating-word {
    background: linear-gradient(135deg, var(--primary_color), #1e8e3e, #00d4aa);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    vertical-align: top;
    white-space: nowrap; /* Prevent word breaking within the span */
}

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

.hero-section .hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Section Main Heading */
.hero-section .hero-content .hero-heading {
    font-size: 78px;
    letter-spacing: -0.2px;
    line-height: 90px;
    margin-bottom: 43px;
    font-weight: 300;
    display: grid;
    grid-template-rows: 1fr 1fr; /* Two rows to handle wrapping */
    align-items: start;
    min-height: 180px; /* Fixed height for 2 lines */
    gap: 0;
}

.hero-section .hero-content h1 span {
    color: var(--primary_color);
}

.hero-section .hero-content>p {
    /* max-width: 480px; */
    margin-bottom: 31px;
}

/* Hero CTA Link */
.hero-cta {
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid var(--primary_color);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(40, 233, 140, 0.1);
}

.hero-cta a:hover {
    background: var(--primary_color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 233, 140, 0.3);
}

.hero-cta a i {
    transition: transform 0.3s ease;
}

.hero-cta a:hover i {
    transform: translateX(4px);
}

.hero-section .hero-content .facts {
    gap: 40px; /* Reduced from 100px for better balance */
    margin-top: 55px;
    display: flex;
    align-items: stretch; /* Better alignment for equal height cards */
    justify-content: space-between; /* Better distribution */
}

/* Fact Cards Numbers */
.hero-section .hero-content .facts .fact-number {
    font-size: 60px; /* Clean, readable size */
    color: var(--primary_color);
    line-height: 1; /* Tighter line height for better spacing */
    margin-bottom: 8px; /* Clean spacing */
    text-align: center;
    font-weight: 500; /* Clean, professional weight */
}

.hero-section .hero-content .facts p {
    font-size: 14px; /* Clean, readable size */
    line-height: 1.4; /* Good line height for readability */
    text-transform: uppercase;
    text-align: center;
    color: #aaaaaa; /* Professional, subtle color */
    margin: 0; /* Remove default margins for precise control */
    font-weight: 400; /* Clean, professional weight */
    letter-spacing: 0.3px; /* Subtle letter spacing */
}

.hero-section .hero-content .facts.mt-4 {
    margin-top: 40px !important;
}

.hero-section .hero-content .facts .left,
.hero-section .hero-content .facts .right {
    flex: 1;
    text-align: center;
    min-width: 0;
    background: rgba(0, 0, 0, 0.2); /* Very subtle background */
    border-radius: 8px; /* Minimal rounded corners */
    padding: 25px 15px; /* Clean internal spacing */
    transition: background-color 0.2s ease; /* Simple transition */
}

/* Minimal hover effect for fact cards */
.hero-section .hero-content .facts .left:hover,
.hero-section .hero-content .facts .right:hover {
    background: rgba(0, 0, 0, 0.3); /* Slightly darker on hover */
}

.hero-section .hero-content .facts .left h1,
.hero-section .hero-content .facts .right h1 {
    word-break: break-word;
}

.hero-section .hero-content .facts .left p,
.hero-section .hero-content .facts .right p {
    word-break: break-word;
    max-width: 200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Ensure consistent spacing between fact rows */
.hero-section .hero-content .facts + .facts {
    margin-top: 40px;
}

/* Responsive adjustments for hero heading grid layout */
@media (max-width: 1200px) {
    .hero-section .hero-content .hero-heading {
        min-height: 160px; /* Slightly smaller on medium screens */
    }
    
    .hero-section .hero-content .facts {
        gap: 30px; /* Reduced gap for medium screens */
    }
    
    .hero-section .hero-content .facts .fact-number {
        font-size: 52px; /* Clean size for medium screens */
    }
}

@media (max-width: 768px) {
    .hero-section .hero-content .hero-heading {
        min-height: 120px; /* Smaller on mobile */
        grid-template-rows: 1fr; /* Single row on mobile */
    }
    
    .hero-section .hero-content .facts {
        gap: 20px; /* Smaller gap on mobile */
        flex-direction: column; /* Stack vertically on mobile */
    }
    
    .hero-section .hero-content .facts .left,
    .hero-section .hero-content .facts .right {
        padding: 20px 15px; /* Clean padding on mobile */
    }
    
    .hero-section .hero-content .facts .fact-number {
        font-size: 44px; /* Clean size for mobile */
    }
}

@media (max-width: 480px) {
    .hero-section .hero-content .hero-heading {
        min-height: 100px; /* Even smaller on very small screens */
    }
    
    .hero-section .hero-content .facts .fact-number {
        font-size: 36px; /* Clean size for small mobile */
    }
    
    .hero-section .hero-content .facts p {
        font-size: 13px; /* Clean text size for small mobile */
    }
}

/* 08 - Home 3 */
.home1-page,
.home5-page,
.home6-page {
    background: #000;
}

.home-3 {
    overflow: hidden;
}

.home-3:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.home1-page .menu,
.home5-page .menu,
.home6-page .menu,

.home1-page .icon-menu,
.home5-page .icon-menu,
.home6-page .icon-menu {
    background: #000000;
}

/* 09 - Home 5 */
body .body-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home2-page .body-overlay,
.home3-page .body-overlay {
    opacity: 0.1;
}

.home1-page .body-overlay,
.home4-page .body-overlay,
.home5-page .body-overlay {
    opacity: 0.3;
}



/* 10 - About */
.about-area {
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.about-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(40, 233, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(40, 233, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-area .about-content {
    position: relative;
    z-index: 2;
}

.about-area .about-content p {
    line-height: 30px;
    max-width: 610px;
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-area .about-content p:first-of-type {
    font-size: 17px;
    color: #e8e8e8;
    font-weight: 500;
}

.about-area .about-content p strong {
    color: var(--primary_color);
    font-weight: 600;
}




/* 11 - Resume */
.resume-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.resume-area .resume-content .resume-timeline .item {
    position: relative;
    padding-left: 74px;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.resume-area .resume-content .resume-timeline .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.resume-area .resume-content .resume-timeline .item::after {
    content: '';
    background: #333333;
    width: 1px;
    height: calc(100% + 30px);
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

.resume-area .resume-content .resume-timeline .item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary_color);
    border-radius: 50%;
    left: -6px;
    top: 7px;
    transition: background 0.3s ease;
}

.resume-area .resume-content .resume-timeline .item .date {
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--primary_color);
    font-weight: 500;
}

.role-header {
    margin-bottom: 15px;
}

.role-header h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.3;
}

.role-header .company {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 400;
    display: block;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
}

.achievement-item i {
    color: var(--primary_color);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.achievement-item span {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.4;
    font-weight: 400;
}



/* 12 - Services */
.services-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.services-items .service-item {
    border: 1px solid #565656;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    position: relative;
    padding: 40px 35px 35px 35px;
    margin-bottom: 20px;
}

.services-items .service-item:last-child {
    margin-bottom: 0;
}

.services-items .service-item:hover {
    border-color: var(--primary_color);
}

.services-items .service-item h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.services-items .service-item h2 a {
    color: #fff;
    transition: color 0.3s ease;
}

.services-items .service-item:hover h2 a {
    color: var(--primary_color);
}

.services-items .service-item p {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-metrics .metric {
    background: rgba(40, 233, 140, 0.1);
    color: var(--primary_color);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.services-items .service-item .projects {
    font-size: 13px;
    color: #aaaaaa;
    font-weight: 500;
    display: inline-block;
}

.services-items .service-item i {
    position: absolute;
    font-size: 26px;
    color: var(--primary_color);
    top: 35px;
    right: 35px;
}



/* 13 - Business Impact & Metrics */
.business-impact-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.business-impact-items .business-impact-item {
    border: 1px solid #565656;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    position: relative;
    padding: 40px 35px 35px 35px;
    margin-bottom: 25px;
    height: 100%;
}

.business-impact-items .business-impact-item:last-child {
    margin-bottom: 0;
}

.business-impact-items .business-impact-item:hover {
    border-color: var(--primary_color);
}

.business-impact-items .business-impact-item h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
    padding-right: 50px; /* Space for icon */
}

.business-impact-items .business-impact-item p {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.business-impact-items .business-impact-item i {
    position: absolute;
    font-size: 24px;
    color: var(--primary_color);
    top: 40px;
    right: 35px;
}

.business-impact-items .impact-metrics {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.business-impact-items .metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 100px;
}

.business-impact-items .metric .amount,
.business-impact-items .metric .percentage {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 5px;
}

.business-impact-items .metric .label {
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.client-quote {
    background: rgba(40, 233, 140, 0.05);
    border-left: 3px solid var(--primary_color);
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.client-quote .quote-text {
    display: block;
    font-size: 14px;
    color: #e8e8e8;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.5;
}

.client-quote .quote-author {
    display: block;
    font-size: 12px;
    color: var(--primary_color);
    font-weight: 500;
}

/* Ensure proper row alignment */
.business-impact-items .row {
    align-items: stretch;
}

.business-impact-items .col-md-6 {
    display: flex;
    margin-bottom: 25px;
}

.business-impact-items .col-md-6:last-child,
.business-impact-items .col-md-6:nth-last-child(2) {
    margin-bottom: 0;
}



/* 14 - Skills */
.skills-area {
    padding-top: 90px;
    padding-bottom: 60px;
}

.skills .skill {
    margin-bottom: 40px;
    text-align: center;
}

.skills .skill .skill-inner {
    border: 1px solid #565656;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 0 auto 20px auto;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skills .skill:hover .skill-inner {
    border-color: var(--primary_color);
}

.skills .skill .skill-inner img {
    display: block;
    margin: 0 auto 15px auto;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.skills .skill .skill-inner h1 {
    font-size: 28px;
    color: var(--primary_color);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.skills .skill p {
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 500;
    line-height: 1.2;
}

.skills .skill .experience {
    display: block;
    font-size: 12px;
    color: var(--primary_color);
    margin-top: 0;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Skills Categories */
.skills-category {
    margin-bottom: 60px;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 22px;
    color: var(--primary_color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary_color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(40, 233, 140, 0.5);
}

.category-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: rgba(40, 233, 140, 0.2);
    border-radius: 1px;
}

/* Skill Card Animation */
.skills .skill .skill-inner {
    animation: skillCardFloat 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.skills .skill:nth-child(1) .skill-inner { animation-delay: 0.1s; }
.skills .skill:nth-child(2) .skill-inner { animation-delay: 0.2s; }
.skills .skill:nth-child(3) .skill-inner { animation-delay: 0.3s; }
.skills .skill:nth-child(4) .skill-inner { animation-delay: 0.4s; }

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



/* 14 - Portfolio */
.portfolio-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.portfolio-items .portfolio-item {
    margin-bottom: 62px;
}

.portfolio-items>div:last-child .portfolio-item {
    margin-bottom: 0;
}

.portfolio-items .portfolio-item .portfolio-item-inner {
    height: 370px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
    border: 1px solid #565656;
}

.portfolio-items .portfolio-item:hover .portfolio-item-inner {
    border-color: var(--primary_color);
}

.portfolio-items .portfolio-item.portfolio-full .portfolio-item-inner {
    height: 410px;
}

.portfolio-items .portfolio-item .portfolio-item-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    bottom: 20px;
    left: 20px;
}

.portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories li a {
    display: block;
    font-size: 12px;
    background: #fff;
    color: #000;
    padding: 6px 16px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.portfolio-items .portfolio-item:hover .portfolio-item-inner .portfolio-categories li a {
    background: var(--primary_color);
    color: #000;
}

.portfolio-items .portfolio-item h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
}

.project-description {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-items .portfolio-item h2 a {
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.portfolio-items .portfolio-item:hover h2 a {
    border-color: #ffffff;
}

/* Project Metrics */
.project-metrics {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.metric-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary_color);
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Client Quotes */
.client-quote {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary_color);
}

.quote-text {
    display: block;
    font-size: 16px;
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.quote-author {
    display: block;
    font-size: 14px;
    color: var(--primary_color);
    font-weight: 500;
    text-align: right;
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio-items .portfolio-item .portfolio-item-inner {
        height: 300px;
        border-radius: 10px;
    }
    
    .portfolio-items .portfolio-item.portfolio-full .portfolio-item-inner {
        height: 350px;
    }
    
    .project-metrics {
        top: 15px;
        right: 15px;
        gap: 6px;
    }
    
    .metric-item {
        padding: 6px 10px;
    }
    
    .metric-value {
        font-size: 14px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    .portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }
    
    .portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories li a {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .portfolio-items .portfolio-item h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .project-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .client-quote {
        margin-top: 15px;
        padding: 15px;
    }
    
    .quote-text {
        font-size: 15px;
    }
    
    .quote-author {
        font-size: 13px;
    }
}







/* 17 - Pricing Table */
.pricing-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.pricing-table-items .pricing-table {
    border: 1px solid #565656;
    border-radius: 30px;
    padding: 37px 40px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.pricing-table-items .pricing-table:hover {
    border-color: var(--primary_color);
}

.pricing-table-items .pricing-table .pricing-table-header {
    border-bottom: 1px solid #555555;
    padding-bottom: 20px;
    margin-bottom: 34px;
}

.pricing-table-items .pricing-table .pricing-table-header .top {
    margin-bottom: 30px;
}

.pricing-table-items .pricing-table .pricing-table-header h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header .top p {
    font-size: 13px;
    line-height: 20px;
    color: #999999;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header h1 {
    font-size: 48px;
    color: var(--primary_color);
    font-weight: 300;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header h1 span {
    font-size: 24px;
    color: #999999;
}

.pricing-table-items .pricing-table ul {
    margin-bottom: 80px;
}

.pricing-table-items .pricing-table ul li {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

.pricing-table-items .pricing-table ul li:last-child {
    margin-bottom: 0;
}

.pricing-table-items .info {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin: 60px 0 0 0;
}

.pricing-table-items .info a {
    color: var(--primary_color);
    text-decoration: underline;
}



/* 18 - Contact */
.contact-area {
    padding-bottom: 50px;
}

/* 19 - Schedule Consultation */
.consultation-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Consultation Steps */
.consultation-step {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    margin-right: 100px; /* Add margin to avoid overlapping with navigation */
}

.step-layout {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 20px;
    align-items: start;
}

/* Calendar Section (85%) */
.calendar-section {
    width: 100%;
}

.calendar-container {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #565656;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
    color: var(--primary_color);
}

.month-year {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    color: #999999;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    background: rgba(255, 255, 255, 0.02);
}

.calendar-day:hover {
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
    color: #fff;
}

.calendar-day.available {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day.available:hover {
    background: var(--primary_color);
    color: #000;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--primary_color);
    color: #000;
    border-color: var(--primary_color);
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Time Section (15%) */
.time-section {
    width: 100%;
}

.time-header {
    text-align: center;
    margin-bottom: 15px;
}

.time-header h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.time-header p {
    color: #d0d0d0;
    margin: 0;
    font-size: 12px;
}

.time-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #565656;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover {
    border-color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
}

.time-slot.selected {
    background: var(--primary_color);
    border-color: var(--primary_color);
    color: #000;
}

.no-date-selected {
    text-align: center;
    color: #d0d0d0;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-date-selected i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: var(--primary_color);
}

.no-date-selected p {
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}

/* Step 2 Layout */
#step2 .step-layout {
    grid-template-columns: 50% 50%;
}

/* Date Info Section (50%) */
.date-info-section {
    width: 100%;
}

.selected-date-info {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.date-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 15px;
}

.date-header h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.back-to-calendar {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #565656;
    color: #999999;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.back-to-calendar:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
    background: rgba(40, 233, 140, 0.1);
}

.appointment-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #565656;
    border-radius: 12px;
}

.date-display i {
    font-size: 24px;
    color: var(--primary_color);
}

.date-text h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 6px 0;
    font-weight: 500;
}

.date-text p {
    color: #999999;
    font-size: 14px;
    margin: 0;
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    font-size: 14px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #565656;
    border-radius: 12px;
}

.duration-info i {
    color: var(--primary_color);
}

/* Form Section (50%) */
.form-section {
    width: 100%;
}

.form-header {
    text-align: left;
    margin-bottom: 25px;
}

.form-header h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.form-header p {
    color: #999999;
    margin: 0;
    font-size: 14px;
}

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

.contact-form .input-group {
    margin-bottom: 18px;
}

.contact-form .input-group input,
.contact-form .input-group textarea {
    display: block;
    color: #fff;
    width: 100%;
    border: 2px solid #565656;
    background: rgba(255, 255, 255, 0.05);
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus {
    outline: none;
    border-color: var(--primary_color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(40, 233, 140, 0.1);
}

.contact-form .input-group input::placeholder,
.contact-form .input-group textarea::placeholder {
    color: #666666;
}

.contact-form .input-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Consultation Form Styles - Same as Contact Form */
.consultation-form .input-group {
    margin-bottom: 18px;
}

.consultation-form .input-group input,
.consultation-form .input-group textarea {
    display: block;
    color: #fff;
    width: 100%;
    border: 2px solid #565656;
    background: rgba(255, 255, 255, 0.05);
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.consultation-form .input-group input:focus,
.consultation-form .input-group textarea:focus {
    outline: none;
    border-color: var(--primary_color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(40, 233, 140, 0.1);
}

.consultation-form .input-group input::placeholder,
.consultation-form .input-group textarea::placeholder {
    color: #666666;
}

.consultation-form .input-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Calendar day states */
.calendar-day.selected {
    background: var(--primary_color) !important;
    color: #000 !important;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 233, 140, 0.3);
}

.calendar-day.fully-booked {
    background: #ff4757 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    position: relative;
}

.calendar-day.fully-booked::after {
    content: '✕';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
    font-weight: bold;
}

/* No slots available message */
.no-slots-available {
    text-align: center;
    padding: 20px;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.no-slots-available i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.no-slots-available p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.schedule-btn {
    background: var(--primary_color);
    border: 2px solid var(--primary_color);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.schedule-btn .ph {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: #000000;
    transition: color 0.3s ease;
}

.schedule-btn:hover {
    background: transparent;
    color: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 233, 140, 0.3);
}

.schedule-btn:hover .ph {
    color: var(--primary_color);
}

/* Form validation styles */
.consultation-form .input-group input.error,
.consultation-form .input-group select.error,
.consultation-form .input-group textarea.error {
    border-color: #fc4545;
    background: rgba(252, 69, 69, 0.05);
}

.consultation-form .input-group input.error:focus,
.consultation-form .input-group select.error:focus,
.consultation-form .input-group textarea.error:focus {
    border-color: #fc4545;
    box-shadow: 0 0 0 3px rgba(252, 69, 69, 0.1);
}

.field-error {
    color: #fc4545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-errors {
    background: rgba(252, 69, 69, 0.1);
    border: 1px solid #fc4545;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #fc4545;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}

.form-message {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message {
    background: rgba(40, 233, 140, 0.1);
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
}

.error-message {
    background: rgba(252, 69, 69, 0.1);
    border: 1px solid #fc4545;
    color: #fc4545;
}

/* Simple Field-Level Validation Styles */
.field-error {
    color: #ff4757;
    font-size: 12px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
    line-height: 1.3;
    animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced form errors */
.form-errors {
    background: rgba(255, 71, 87, 0.1);
    border: 2px solid #ff4757;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    color: #ff4757;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.1);
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.form-errors li {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.4;
}

/* Responsive Design for Consultation Form */
@media (max-width: 1200px) {
    .consultation-step {
        margin-right: 80px; /* Reduce margin for smaller screens */
    }
}

@media (max-width: 768px) {
    .consultation-step {
        padding: 15px 0;
        margin-right: 0; /* Remove margin on mobile */
        max-width: 100%;
    }
    
    .step-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    .time-slots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .time-slot {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .schedule-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .schedule-btn .ph {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .selected-date-info {
        padding: 0;
    }
    
    .date-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .back-to-calendar {
        align-self: flex-start;
    }
    
    .date-display {
        padding: 15px;
    }
    
    .duration-info {
        padding: 12px 15px;
    }
}

.contact-area .contact-content h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 60px;
}


.contact-area .contact-content #required-msg {
    color: #fc4545;
    font-size: 14px;
    margin-bottom: 31px;
    display: none;
}

.contact-area .contact-content #required-msg.show {
    display: block;
}

.contact-area .contact-content .contact-form .input-group {
    margin-bottom: 34px;
}

.contact-area .contact-content .contact-form .input-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}

.contact-area .contact-content .contact-form .input-group label sup {
    color: #fc4545;
    font-size: 12px;
    top: 0;
}

.contact-area .contact-content .contact-form .input-group label span {
    color: #999999;
    text-transform: none;
}

.contact-area .contact-content .contact-form .input-group select,
.contact-area .contact-content .contact-form .input-group textarea,
.contact-area .contact-content .contact-form .input-group input {
    display: block;
    color: #fff;
    width: 100%;
    border: none;
    background: none;
    font-size: 18px;
    padding: 0;
    transition: .2s;
    padding-bottom: 3px;
}

.contact-area .contact-content .contact-form .input-group textarea {
    height: 140px;
    border-bottom: 1px solid #555555;
    resize: none;
}

.contact-area .contact-content .contact-form .input-group select {
    display: block;
    margin-left: -5px !important;
    font-weight: 300;
}

.contact-area .contact-content .contact-form .input-group select:focus,
.contact-area .contact-content .contact-form .input-group textarea:focus,
.contact-area .contact-content .contact-form .input-group input:focus {
    outline: none;
    box-shadow: none;
    border-color: #555555;
}

.contact-area .contact-content .contact-form .input-group textarea::placeholder,
.contact-area .contact-content .contact-form .input-group input::placeholder {
    color: #666666;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment {
    position: relative;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment label {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment label i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.contact-area .contact-content .contact-form .input-group.submit-btn-wrap {
    margin-bottom: 0;
    margin-top: 18px;
}



/* 19 - Breadcrumb */
.breadcrumb-area {
    position: relative;
    padding: 50px 0px 50px;
    background: #1f1f1f;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-area::before,
.breadcrumb-area::after {
    content: '';
    position: absolute;
    left: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(255 255 255 / 10%);
    z-index: -1;
    box-shadow: 0px 0px 0 20px rgb(255 255 255 / 5%);
}

.breadcrumb-area::after {
    left: auto;
    right: -50px;
    top: auto;
    bottom: -50px;
}

.breadcrumb-area .breadcrumb-content h1 {
    font-size: 45px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.breadcrumb-area .breadcrumb-content .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-area .breadcrumb-content .breadcrumbs li {
    text-transform: uppercase;
    color: #d1d1d1;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-area .breadcrumb-content .breadcrumbs li i {
    display: block;
    margin-bottom: 1px;
}

.breadcrumb-area .breadcrumb-content .breadcrumbs li:last-child::before {
    display: none;
}

.breadcrumb-area .breadcrumb-content .breadcrumbs li a {
    font-weight: 500;
    color: #ffffff;
}

/* 20 - Blog items */
.blog-content-area {
    padding-top: 100px;
    padding-bottom: 60px;
}

.blog-content-area .blog-items {
    padding-right: 20px;
}

.blog-item {
    margin-bottom: 40px;
}

.blog-item .blog-thumbnail {
    margin-bottom: 30px;
}

.blog-item .blog-thumbnail img {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.blog-item .meta {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 10px;
}

.blog-item .meta li {
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    line-height: 1.2;
}

.blog-item .meta li::before {
    content: '';
    position: absolute;
    right: -21px;
    top: 7px;
    background: #808080;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.blog-item .meta li:last-child::before {
    display: none;
}

.blog-item .meta li a {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .3s;
    /* opacity: 0.5; */
    color: #fff;


    background: linear-gradient(to top right, var(--primary_color) -200%, transparent 300%);
    background-repeat: no-repeat;
    background-size: 0 0.0625em;
    background-position: 0 95%;
    transition: .25s;
}

.blog-item .meta li a:hover {
    background-size: 100% 0.3625em;
}

.blog-item .meta li a i {
    display: block;
    font-size: 18px;
    margin-bottom: 1px;
    color: var(--primary_color);
}

.blog-item .blog-item-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-item .blog-item-content h1 a {
    color: #fff;
    display: inline-block;

    background: linear-gradient(to top right, var(--primary_color) -200%, transparent 300%);
    background-repeat: no-repeat;
    background-size: 0 0.0625em;
    background-position: 0 95%;
    transition: .25s;
}

.blog-item .blog-item-content h1 a:hover {
    background-size: 100% 0.3625em;
}

.blog-item p {
    /* color: #686a6f; */
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-item .blog-item-content .read-more-btn {
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.4px;
    border-bottom: 2px solid var(--primary_color);
    padding: 4px 0;
    transition: .3s;
}

.blog-item .blog-item-content .read-more-btn:hover {
    border-color: #fff;
    color: var(--primary_color);
}

.blog-sidebar .blog-sidebar-item {
    padding: 40px;
    background: #2a2a2a;
    margin-bottom: 40px;
    border-radius: 4px;
}

.blog-sidebar .blog-sidebar-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar .blog-sidebar-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.blog-sidebar .blog-sidebar-item h3::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--primary_color);
    right: -60px;
    position: absolute;
    top: 11px;
}

.blog-sidebar .blog-sidebar-item ul li {
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid #686a70;
    margin: 3px 0;
}

.blog-sidebar .blog-sidebar-item ul li:first-child {
    margin-top: 0;
    padding-top: 0;
}

.blog-sidebar .blog-sidebar-item ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.blog-sidebar .blog-sidebar-item ul li a {
    display: block;
    color: #ffffff;
    font-weight: 300;
    transition: .3s;
}

.blog-sidebar .blog-sidebar-item ul li a:hover {
    color: var(--primary_color);
}

.blog-sidebar .blog-sidebar-item.blog-sidebar-search {
    padding: 0;
    background: none;
}

.search-form {
    display: block;
    position: relative;
}

.search-form input {
    display: block;
    width: 100%;
    line-height: 40px;
    padding: 19px 80px 19px 35px;
    background: #2a2a2a;
    border-radius: 4px;
    border: 1px solid transparent;
    font-weight: 300;
    transition: .3s;
    color: #fff;
}

.search-form input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--primary_color);
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    width: 70px;
    font-size: 25px;
    color: #fff;
}

.blog-sidebar .blog-sidebar-item.blog-tags ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-sidebar .blog-sidebar-item.blog-tags ul li {
    padding: 0;
    margin: 0;
    border: none;
}

.blog-sidebar .blog-sidebar-item.blog-tags ul li a {
    background: #fff;
    padding: 6px 18px;
    color: #000;
    font-weight: 400;
    border-radius: 30px;
    font-size: 14px;
}

.blog-sidebar .blog-sidebar-item.blog-tags ul li a:hover {
    background: #000;
    color: #fff;
}

/* 21 - Blog Style 2 */
.blog-item2 {
    text-align: center;
}

.blog-item2 .blog-thumbnail {
    height: 255px;
    margin-bottom: 0;
}

.blog-item2 .blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item2 .blog-item-content {
    position: relative;
    margin-top: -22px;
    padding: 0 20px;
}

.blog-item2 .meta {
    margin: 0;
    background: #2a2a2a;
    padding: 12px 20px;
    border-radius: 4px;
    display: inline-flex;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}

.blog-item2 .meta li {
    font-size: 12px;
}

.blog-item2 .meta li a {
    color: #a0a0a0;
}

.blog-item2 .meta li a:hover {
    color: #fff;
}

.blog-item2 .meta li a,
.blog-item2 .blog-item-content h1 a {
    background: none;
}

.blog-item2 .blog-item-content h1 {
    font-size: 25px;
}

.blog-item2 .blog-item-content h1 a:hover {
    color: var(--primary_color);
}

.blog-item2 .blog-item-content .read-more-btn {
    font-size: 14px;
}

/* 22 - Blog Details */
.blog-details-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blog-details-area .blog-details-content .meta {
    margin-bottom: 15px;
}

.blog-details-area .blog-details-content p {
    font-size: 15px;
    color: #999999;
    color: #fff;
    font-weight: 300;
}

.blog-details-area .blog-details-content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-details-area .blog-details-content .lists {
    margin-bottom: 1rem;
}

.blog-details-area .blog-details-content .lists li {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 32px;
    padding-left: 25px;
}

.blog-details-area .blog-details-content .lists li::before {
    content: '';
    background: #999999;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 15px;
    left: 5px;
}

.blog-details-area .blog-details-content .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.blog-details-area .blog-details-content .tags li a {
    display: block;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 30px;
    transition: .3s;
}

.blog-details-area .blog-details-content .tags li a:hover {
    background: #000000;
    color: #fff;
}

/* 23 - Comment */
.comments-area h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.comments-area .comments .comments-list .comment-item {
    margin-bottom: 40px;
}

.comments-area .comments .comments-list .comment-item .comment-body {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-avatar {
    flex: none;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content {
    flex: 1;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content h4 {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content h4 .date {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-left: 40px;
    /* color: #999999; */
    position: relative;
    text-transform: uppercase;
    color: var(--primary_color);
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content h4 .date::before {
    content: '';
    width: 20px;
    height: 1px;
    position: absolute;
    left: -25px;
    top: 5px;
    /* background: #999999; */
    background: var(--primary_color);
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content p {
    color: #686a6f;
    margin: 0;
}

.comments-area .comments .comments-list .comment-item .comment-body .comment-content .reply-btn {
    text-transform: uppercase;
    padding: 7px 20px;
    font-size: 12px;
    margin-top: 20px;
}

.comments-area .comments .children {
    padding-left: 60px;
    border-top: 1px solid #686a70;
    padding-top: 40px;
}

/* 24 - Comment Form */
.comment-form {
    padding-top: 20px;
}

.comment-form h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.comment-form form .input-group {
    margin-bottom: 20px;
}

.comment-form form .input-group input,
.comment-form form .input-group textarea {
    font-size: 14px;

    display: block;
    color: #fff;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    transition: .2s;
    padding-bottom: 3px;
}

.comment-form form .input-group input:focus,
.comment-form form .input-group textarea:focus {
    outline: none;
    box-shadow: none;
}

.comment-form form .input-group textarea {
    height: 180px;
    border-bottom: 1px solid #555555;
    resize: none;
}


/* 25 - Footer */
.footer-area {
    background: #1f1f1f;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/bg-shape.png') center no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.footer-area .footer-widget-item h3 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 20px;
}

.footer-area .footer-widget-item p {
    color: #cccccc;
    font-size: 15px;
}

.footer-area .footer-widget-item .social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.footer-area .footer-widget-item .social-links li a {
    color: #ccc;
    font-size: 18px;
    transition: .3s;
}

.footer-area .footer-widget-item .social-links li a:hover {
    color: #fff;
}

.footer-area .footer-widget-item .social-links li a i {
    display: block;
}

.footer-area .footer-widget-item.footer-links ul li+li {
    margin-top: 15px;
}

.footer-area .footer-widget-item.footer-links ul li a {
    color: #ccc;
    font-size: 15px;
    display: block;
    transition: .3s;
}

.footer-area .footer-widget-item.footer-links ul li a:hover {
    color: #fff;
}

.footer-area .footer-widget-item.footer-contact-widget ul li {
    display: block;
}

.footer-area .footer-widget-item.footer-contact-widget ul li+li {
    margin-top: 15px;
}

.footer-area .footer-widget-item.footer-contact-widget ul li .title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    position: relative;
    z-index: 1;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.footer-area .footer-widget-item.footer-contact-widget ul li .sub-title {
    color: #cccccc;
    font-size: 15px;
}




/* @Keyframe */
@keyframes rotating {
    0% {
        transform: rotate(0);
    }

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

@keyframes bounceLoader {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}



/* added by gtm */
.subject {
    color: #FFF !important;
    background-color: #000 !important;
}

.invisible {
    display: none !important;
}

.spinner {
    position: relative;
    width: 15.7px;
    height: 15.7px;
}

.spinner div {
    animation: spinner-4t3wzl 1.875s infinite backwards;
    background-color: #28e98c;
    border-radius: 50%;
    height: 100%;
    position: absolute;
    width: 100%;
}

.spinner div:nth-child(1) {
    animation-delay: 0.15s;
    background-color: rgba(40, 233, 140, 0.9);
}

.spinner div:nth-child(2) {
    animation-delay: 0.3s;
    background-color: rgba(40, 233, 140, 0.8);
}

.spinner div:nth-child(3) {
    animation-delay: 0.45s;
    background-color: rgba(40, 233, 140, 0.7);
}

.spinner div:nth-child(4) {
    animation-delay: 0.6s;
    background-color: rgba(40, 233, 140, 0.6);
}

.spinner div:nth-child(5) {
    animation-delay: 0.75s;
    background-color: rgba(40, 233, 140, 0.5);
}

@keyframes spinner-4t3wzl {
    0% {
        transform: rotate(0deg) translateY(-200%);
    }

    60%,
    100% {
        transform: rotate(360deg) translateY(-200%);
    }
}

.loader-main {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    top: 0;
    bottom: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, 0.7)
}



/* new loader */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #28e98c;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

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

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

/* Phosphor Icons Custom Styling */
.ph {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Icon sizing for different contexts */
.menu .ph,
.sidebar-social .ph {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.left-sidebar .social-profile .ph {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.section-header .ph {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.service-item .ph,
.business-impact-item .ph {
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.theme-btn .ph {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #000000;
    transition: color 0.3s ease;
}


/* Icon colors and hover effects */
.menu .ph,
.sidebar-social .ph,
.left-sidebar .social-profile .ph {
    color: #666666;
    transition: all 0.3s ease;
}

.menu .ph:hover,
.sidebar-social .ph:hover,
.left-sidebar .social-profile .ph:hover {
    color: var(--primary_color);
    transform: scale(1.1);
}

.section-header .ph {
    color: var(--primary_color);
}

.service-item .ph,
.business-impact-item .ph {
    color: var(--primary_color);
}

.theme-btn .ph {
    color: #000000;
    transition: color 0.3s ease;
}


/* Social media icons specific styling */
.ph.ph-twitter-logo,
.ph.ph-linkedin-logo,
.ph.ph-instagram-logo,
.ph.ph-github-logo {
    transition: all 0.3s ease;
}

.ph.ph-twitter-logo:hover {
    color: #1DA1F2;
    transform: scale(1.1);
}

.ph.ph-linkedin-logo:hover {
    color: #0077B5;
    transform: scale(1.1);
}

.ph.ph-instagram-logo:hover {
    color: #E4405F;
    transform: scale(1.1);
}

.ph.ph-github-logo:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Ensure icons are properly aligned in buttons */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Specific styling for Hire Me button icon */
.left-sidebar .theme-btn .ph {
    color: #000000;
    transition: color 0.3s ease;
}

/* Icon spacing in navigation - removed duplicate rule */

/* Large laptop screens (17" and above) */
@media (min-width: 1440px) {
    .left-sidebar {
        max-width: 380px;
        width: calc(100% - 60px);
        left: 30px;
    }
}

/* Standard laptop screens (15" - 16") */
@media (max-width: 1439px) and (min-width: 1200px) {
    .left-sidebar {
        max-width: 350px;
        width: calc(100% - 50px);
        left: 25px;
        padding: 28px 22px;
    }
}

/* Smaller laptop screens (13" - 14") */
@media (max-width: 1366px) and (min-width: 1025px) {
    .left-sidebar {
        max-width: 320px;
        width: calc(100% - 40px);
        left: 20px;
        padding: 25px 18px;
    }
}

/* Very small laptop screens */
@media (max-width: 1200px) and (min-width: 1025px) {
    .left-sidebar {
        max-width: 300px;
        width: calc(100% - 30px);
        left: 15px;
        padding: 22px 16px;
        margin-right: 15px;
    }
}

/* Ultra small screens - prevent overflow */
@media (max-width: 1100px) and (min-width: 1025px) {
    .left-sidebar {
        max-width: 280px;
        width: calc(100% - 20px);
        left: 10px;
        padding: 20px 15px;
        margin-right: 10px;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) {
    .left-sidebar {
        max-width: 300px;
        width: calc(100% - 40px);
        left: 20px;
        padding: 25px 20px;
        background: rgba(0, 0, 0, 0.12);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .left-sidebar:hover {
        background: rgba(0, 0, 0, 0.18);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
        transform: translateY(-50%) scale(1.02);
    }
    
    .left-sidebar>img.me {
        width: 120px;
        height: 120px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .left-sidebar:hover>img.me {
        border-color: var(--primary_color);
        transform: scale(1.06);
        box-shadow: 
            0 12px 35px rgba(40, 233, 140, 0.2),
            0 0 0 2px rgba(40, 233, 140, 0.08);
    }
    
    .left-sidebar .social-profile li a {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .left-sidebar .social-profile li a:hover {
        color: var(--primary_color);
        border-color: var(--primary_color);
        background: rgba(40, 233, 140, 0.12);
        transform: translateY(-3px) scale(1.08);
        box-shadow: 
            0 10px 20px rgba(40, 233, 140, 0.18),
            0 0 0 1px rgba(40, 233, 140, 0.08);
    }
    
    .left-sidebar .theme-btn,
    .left-sidebar .consultation-btn {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .left-sidebar .theme-btn:hover,
    .left-sidebar .consultation-btn:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 
            0 15px 30px rgba(40, 233, 140, 0.2),
            0 0 0 1px rgba(40, 233, 140, 0.15);
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    /* Hide left sidebar on mobile - no hover effects needed */
    .left-sidebar {
        display: none !important;
    }
    
    /* Disable all sidebar hover effects on mobile */
    .left-sidebar:hover,
    .left-sidebar:hover > img.me,
    .left-sidebar .social-profile li a:hover,
    .left-sidebar .theme-btn:hover,
    .left-sidebar .consultation-btn:hover {
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
        border-color: inherit !important;
    }
    
    /* Show hamburger menu on mobile */
    .icon-menu {
        display: flex;
    }
    
    /* Hide regular menu on mobile */
    .menu {
        display: none;
    }
    
    .menu .ph,
    .sidebar-social .ph {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .content-width {
        margin-right: 0;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header .ph {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1200px) {
    .content-width {
        margin-right: 60px;
    }
}

/* Desktop styles */
@media (min-width: 1201px) {
    .content-width {
        margin-right: 80px;
    }
    
    /* Hide hamburger menu on desktop */
    .icon-menu {
        display: none;
    }
    
    /* Show regular menu on desktop */
    .menu {
        display: flex;
    }
    
    /* Enhanced desktop hover effects */
    .left-sidebar {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .left-sidebar:hover {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: translateY(-50%) scale(1.03);
    }
    
    .left-sidebar:hover > img.me {
        border-color: var(--primary_color);
        transform: scale(1.08);
        box-shadow: 
            0 15px 40px rgba(40, 233, 140, 0.25),
            0 0 0 3px rgba(40, 233, 140, 0.1);
    }
    
    .left-sidebar .social-profile li a:hover {
        color: var(--primary_color);
        border-color: var(--primary_color);
        background: rgba(40, 233, 140, 0.15);
        transform: translateY(-4px) scale(1.1);
        box-shadow: 
            0 12px 25px rgba(40, 233, 140, 0.2),
            0 0 0 2px rgba(40, 233, 140, 0.1);
    }
    
    .left-sidebar .theme-btn:hover,
    .left-sidebar .consultation-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 
            0 20px 40px rgba(40, 233, 140, 0.25),
            0 0 0 2px rgba(40, 233, 140, 0.2);
    }
}

/* Large desktop styles for optimal hover effects */
@media (min-width: 1200px) {
    .left-sidebar:hover {
        transform: translateY(-50%) scale(1.04);
    }
    
    .left-sidebar:hover > img.me {
        transform: scale(1.1);
    }
    
    .left-sidebar .social-profile li a:hover {
        transform: translateY(-5px) scale(1.15);
    }
}

/* Touch device optimizations */
@media (hover: hover) and (pointer: fine) {
    /* Only apply hover effects on devices that support hover */
    .left-sidebar:hover {
        background: rgba(0, 0, 0, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: translateY(-50%) scale(1.03);
    }
    
    .left-sidebar:hover > img.me {
        border-color: var(--primary_color);
        transform: scale(1.08);
        box-shadow: 
            0 15px 40px rgba(40, 233, 140, 0.25),
            0 0 0 3px rgba(40, 233, 140, 0.1);
    }
    
    .left-sidebar .social-profile li a:hover {
        color: var(--primary_color);
        border-color: var(--primary_color);
        background: rgba(40, 233, 140, 0.15);
        transform: translateY(-4px) scale(1.1);
        box-shadow: 
            0 12px 25px rgba(40, 233, 140, 0.2),
            0 0 0 2px rgba(40, 233, 140, 0.1);
    }
    
    .left-sidebar .theme-btn:hover,
    .left-sidebar .consultation-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 
            0 20px 40px rgba(40, 233, 140, 0.25),
            0 0 0 2px rgba(40, 233, 140, 0.2);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .left-sidebar:hover,
    .left-sidebar:hover > img.me,
    .left-sidebar .social-profile li a:hover,
    .left-sidebar .theme-btn:hover,
    .left-sidebar .consultation-btn:hover {
        transform: none !important;
        box-shadow: none !important;
        background: inherit !important;
        border-color: inherit !important;
    }
}

/* Universal safety check - prevent sidebar from touching browser edge */
.left-sidebar {
    /* Ensure sidebar never exceeds viewport width */
    max-width: min(350px, calc(100vw - 60px));
    /* Ensure minimum margin from right edge */
    right: 20px;
    /* Prevent horizontal overflow */
    box-sizing: border-box;
}

/* Ensure proper spacing between sidebar and content */
.content-width {
    /* Ensure content doesn't overlap with sidebar */
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 350px);
    padding-left: 20px;
    /* padding-right: 20px; */
}

/* Additional safety for very small screens */
@media (max-width: 400px) {
    .left-sidebar {
        max-width: calc(100vw - 20px);
        left: 10px;
        right: 10px;
        width: auto;
    }
    
    .content-width {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===========================================
   ENHANCED RESPONSIVE UTILITIES
   =========================================== */

/* Flexible Grid System for Better Content Wrapping */
.responsive-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Responsive Text Sizing */
.responsive-text {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
}

.responsive-heading {
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
}

/* Responsive Spacing */
.responsive-padding {
    padding: clamp(20px, 4vw, 40px);
}

.responsive-margin {
    margin: clamp(15px, 3vw, 30px);
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Cards */
.responsive-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: clamp(20px, 4vw, 30px);
    transition: all 0.3s ease;
}

.responsive-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary_color);
    transform: translateY(-2px);
}

/* Responsive Buttons */
.responsive-btn {
    padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px);
    font-size: clamp(12px, 2.5vw, 16px);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid var(--primary_color);
    background: var(--primary_color);
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

.responsive-btn:hover {
    background: transparent;
    color: var(--primary_color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 233, 140, 0.3);
}

/* Responsive Container */
.responsive-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
    box-sizing: border-box;
}

/* Responsive Flex Utilities */
.responsive-flex {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 3vw, 25px);
    align-items: center;
}

.responsive-flex-column {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 20px);
}

/* Responsive Grid Utilities */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(10px, 2vw, 20px);
}

/* Responsive Typography */
.responsive-h1 {
    font-size: clamp(28px, 6vw, 56px);
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: clamp(15px, 3vw, 30px);
}

.responsive-h2 {
    font-size: clamp(22px, 4.5vw, 42px);
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: clamp(12px, 2.5vw, 25px);
}

.responsive-h3 {
    font-size: clamp(18px, 3.5vw, 32px);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.responsive-p {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(10px, 2vw, 20px);
}

/* Responsive Spacing Utilities */
.responsive-mt {
    margin-top: clamp(15px, 3vw, 30px);
}

.responsive-mb {
    margin-bottom: clamp(15px, 3vw, 30px);
}

.responsive-ml {
    margin-left: clamp(15px, 3vw, 30px);
}

.responsive-mr {
    margin-right: clamp(15px, 3vw, 30px);
}

.responsive-px {
    padding-left: clamp(15px, 3vw, 30px);
    padding-right: clamp(15px, 3vw, 30px);
}

.responsive-py {
    padding-top: clamp(15px, 3vw, 30px);
    padding-bottom: clamp(15px, 3vw, 30px);
}

/* Simple Professional Toaster Notifications */
.toaster-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 450px;
    width: 100%;
    pointer-events: none;
}

.toaster {
    background: #1f1f1f;
    border: 2px solid #333333;
    border-radius: 8px;
    padding: 20px 22px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    font-family: 'Inter', sans-serif;
    min-height: 80px;
}

.toaster.show {
    transform: translateX(0);
    opacity: 1;
}

.toaster.success {
    border-color: var(--primary_color);
    background: #1f1f1f;
}

.toaster.error {
    border-color: #ff4757;
    background: #1f1f1f;
}

.toaster.warning {
    border-color: #ffa502;
    background: #1f1f1f;
}

.toaster.info {
    border-color: #3742fa;
    background: #1f1f1f;
}

.toaster-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-right: 35px;
}

.toaster-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toaster.success .toaster-icon {
    color: var(--primary_color);
}

.toaster.error .toaster-icon {
    color: #ff4757;
}

.toaster.warning .toaster-icon {
    color: #ffa502;
}

.toaster.info .toaster-icon {
    color: #3742fa;
}

.toaster-text {
    flex: 1;
}

.toaster-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.toaster-message {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    line-height: 1.4;
}

.toaster-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #999999;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toaster-close:hover {
    color: #ffffff;
}

.toaster-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primary_color);
    transition: width linear;
    width: 0;
}

.toaster.error .toaster-progress {
    background: #ff4757;
}

.toaster.warning .toaster-progress {
    background: #ffa502;
}

.toaster.info .toaster-progress {
    background: #3742fa;
}

/* Simple animations */
.toaster.show {
    transform: translateX(0);
    opacity: 1;
}

.toaster.hide {
    transform: translateX(100%);
    opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toaster-container {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .toaster {
        padding: 20px 22px;
        margin-bottom: 12px;
        min-height: 80px;
    }
    
    .toaster-content {
        gap: 16px;
        padding-right: 32px;
    }
    
    .toaster-icon {
        font-size: 26px;
        width: 32px;
        height: 32px;
    }
    
    .toaster-title {
        font-size: 16px;
    }
    
    .toaster-message {
        font-size: 14px;
    }
    
    .toaster-close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* Responsive Visibility */
.responsive-hidden-mobile {
    display: block;
}

.responsive-hidden-desktop {
    display: none;
}

@media (max-width: 768px) {
    .responsive-hidden-mobile {
        display: none;
    }
    
    .responsive-hidden-desktop {
        display: block;
    }
}

/* Responsive Overflow Handling */
.responsive-overflow {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.responsive-overflow::-webkit-scrollbar {
    height: 4px;
}

.responsive-overflow::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.responsive-overflow::-webkit-scrollbar-thumb {
    background: var(--primary_color);
    border-radius: 2px;
}

.responsive-overflow::-webkit-scrollbar-thumb:hover {
    background: rgba(40, 233, 140, 0.8);
}

/* Responsive Aspect Ratios */
.responsive-aspect-16-9 {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.responsive-aspect-4-3 {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
}

.responsive-aspect-1-1 {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
}

/* Responsive Focus States */
.responsive-focus:focus {
    outline: 2px solid var(--primary_color);
    outline-offset: 2px;
}

/* Responsive Touch Targets */
.responsive-touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Animation Performance */
@media (prefers-reduced-motion: reduce) {
    .responsive-card,
    .responsive-btn,
    .left-sidebar:hover,
    .left-sidebar .social-profile li a:hover,
    .left-sidebar .theme-btn:hover {
        transition: none;
        transform: none;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .responsive-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}