/* Light Theme Variables */
:root {
    /* Original Green/Gold Theme */
    --deep-green: #0a1f1c;
    --gold: #c9a96e;
    --off-white: #f5f3ef;
    --dark-green: #142a26;
    --medium-green: #1d3a35;
    --light-green: #2d4e48;
    --gray: #8a8a8a;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --glow: 0 0 30px rgba(201, 169, 110, 0.3);

    /* Light Mode Variables */
    --bg-color: #f8f9fa;
    --surface-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --accent-color: #c9a96e;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Navigation Specific */
    --bg-glass: #f5f3ef;
    --bg-glass-light: #1a1a1a;
    --text-light: #1a1a1a;
    --text-light-secondary: rgba(26, 26, 26, 0.8);
    --accent: #c9a96e;
    --accent-glow: rgba(201, 169, 110, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --gradient-primary: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.05) 100%);
    --nav-height: 100px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-color: #0f0f10;
    --surface-color: #1a1a1a;
    --text-primary: #f4f4f5;
    --text-secondary: #8a8a8a;
    --accent-color: #c9a96e;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.35);

    /* Navigation Specific */
    --bg-glass: #1a1a1a;
    --bg-glass-light: rgba(255, 255, 255, 0.05);
    --text-light: #f4f4f5;
    --text-light-secondary: rgba(244, 244, 245, 0.8);
    --accent: #c9a96e;
    --accent-glow: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

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

}

html {
  scroll-behavior: smooth;
}

body {
    /* background-color: var(--bg-color); */
    color: var(--text-primary);
    /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
    font-family: "Courier New", monospace;

    min-height: 200vh;
    /* padding-top: calc(var(--nav-height) + 30px); */
    transition: var(--transition-smooth);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(var(--accent-rgb), 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(var(--accent-rgb), 0.03) 0%, transparent 20%);
}

body::-webkit-scrollbar {
    display: none;
}

/* DAY/NIGHT TOGGLE */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--bg-glass);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    border-radius: 50%;
    transition: var(--transition-smooth);
    transform: translateX(0);
    z-index: 2;
}

[data-theme="dark"] .theme-toggle::before {
    transform: translateX(30px);
    background: #f5f3ef;
}

.theme-toggle i {
    position: absolute;
    font-size: 12px;
    z-index: 1;
    transition: var(--transition-smooth);
}

.theme-toggle .fa-sun {
    color: #ffb347;
    left: 8px;
    opacity: 1;
}

.theme-toggle .fa-moon {
    color: #f5f3ef;
    right: 8px;
    opacity: 0.5;
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 0.5;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 1;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}
.pin-spacer{
    background-color: var(--deep-green);
}
/* NAV WRAPPER */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    /* padding: 0 20px; */
    /* background: transparent; */
}

/* GLASS MORPHISM PILL CONTAINER */
.nav-inner {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    width: 90%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.nav-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-slow);
    z-index: -1;
}

.nav-inner:hover::before {
    left: 100%;
}

/* SCROLL EFFECTS */
nav.scrolled {
    top: 20px;
    height: calc(var(--nav-height) - 20px);
}

nav.scrolled .nav-inner {
    padding: 12px 28px;
    border-radius: 14px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

/* NAV LINKS CONTAINER */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

/* NAV LINK STYLES */
.nav-links a {
    color: var(--text-light-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent-glow);
}

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

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

/* ACTIVE LINK STYLES */
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::before {
    width: 100%;
}

/* CTA BUTTON */
.nav-cta {
    border: none;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold) 100%);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow:
        0 4px 15px rgba(201, 169, 110, 0.2),
        0 0 0 1px rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(201, 169, 110, 0.3),
        0 0 0 1px rgba(201, 169, 110, 0.2);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: translateY(0);
    transition: var(--transition-fast);
}

/* HAMBURGER MENU */
.menu-btn {
    background: var(--bg-glass-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--bg-glass);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: none;
}

.menu-btn:hover {
    background: rgba(var(--accent-rgb), 0.1);
    transform: rotate(90deg);
}

.menu-btn i {
    font-size: 20px;
}

/* LOGO/BRAND */
.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-brand span {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* THEME TOGGLE CONTAINER */
.theme-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-label {
    font-size: 12px;
    color: var(--text-light-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--border-color);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-family: cursive;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 38px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.mobile-menu a:hover {
    background: var(--bg-glass-light);
    border-color: var(--border-color);
    padding-left: 25px;
}

.mobile-menu .nav-cta {
    margin-top: 20px;
}

/* .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        } */


/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
    .nav-links {
        gap: 25px;
    }

    .nav-inner {
        gap: 25px;
        padding: 14px 24px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 20px;
    }

    .nav-brand {
        font-size: 18px;
    }

    .theme-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 14px 20px;
        width: 95%;
    }

    .nav-links,
    .nav-cta,
    .theme-container {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .nav-brand {
        flex: 1;
    }

    .mobile-menu .theme-container {
        display: flex;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 12px 16px;
        border-radius: 14px;
    }

    .mobile-menu {
        width: 250px;
    }
}


/*project section */


h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Horizontal Portfolio Section */
.portfolio-section {
    position: relative;
    /* min-height: 100vh;
            padding: 100px 0; */
    background-color: var(--deep-green);
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    /* line-height: 1.05; */
    letter-spacing: -1px;
    /* margin-bottom: 16px; */
    color: #ffffff;
}

.section-title span {
    background: linear-gradient(90deg, #d4af37, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.horizontal-scroll-container {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.portfolio-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    will-change: transform;
}

.portfolio-card {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 1200px;
    height: 70vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.portfolio-card:hover {
    box-shadow: var(--glow);
    border-color: rgba(201, 169, 110, 0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(to top, rgba(10, 31, 28, 0.95) 20%, transparent);
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--off-white);
}

.card-overlay p {
    color: rgba(245, 243, 239, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
}

.card-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    opacity: 0.7;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.9rem;
    z-index: 10;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.scroll-hint i {
    font-size: 1.2rem;
}

/* Progress indicator */
.scroll-progress {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 100;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 1100px) {
    .portfolio-card {
        width: 85vw;
        height: 60vh;
    }

    .card-overlay {
        padding: 40px;
    }

    .card-overlay h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.5rem;
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .portfolio-card {
        width: 90vw;
        height: 55vh;
    }

    .card-overlay {
        padding: 30px;
    }

    .card-overlay h3 {
        font-size: 1.8rem;
    }

    .card-overlay p {
        font-size: 1rem;
    }

    .scroll-hint {
        bottom: 20px;
        right: 20px;
    }

    .scroll-progress {
        left: 20px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .portfolio-card {
        width: 95vw;
        height: 50vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 12px 16px;
        border-radius: 14px;
    }

  
}


.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--text-light-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light-secondary);
}

.section {
    height: 100vh;
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}


.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('https://images.unsplash.com/photo-1618005198919-d3d4b5a92ead?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80'); */
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 31, 28, 0.8), rgba(10, 31, 28, 0.95));
    z-index: -1;
}

.hero-content {
    text-align: left;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--bg-glass);
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 span {
    display: inline-block;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(245, 243, 239, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Horizontal Feature Blocks */
.features-section {
    padding: 120px 0;
    background-color: var(--dark-green);
    overflow: hidden;
}

.hero .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* video covers full section */
    opacity: 0.7;
    /* adjust opacity here */
    z-index: -1;
    /* keeps video behind content */
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    font-size: 2.5rem;
    color: var(--off-white);
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-block {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, rgba(29, 58, 53, 0.8), rgba(20, 42, 38, 0.9));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.feature-block:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow);
    border-color: rgba(201, 169, 110, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) translateY(-10px);
    background-color: rgba(201, 169, 110, 0.2);
}

.feature-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--off-white);
}

.feature-block p {
    color: rgba(245, 243, 239, 0.7);
    line-height: 1.6;
}





.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 31, 28, 0.95) 30%, transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}



.card-overlay h3 {
    font-size: 6rem;
    margin-bottom: 10px;
    color: var(--off-white);
}

.card-overlay p {
    color: rgba(245, 243, 239, 0.8);
    font-size: 1.2rem;
}


/* CTA Button */
.cta-button {
    position: fixed;
    bottom: 40px;
    right: 120px;
    background-color: var(--gold);
    color: var(--deep-green);
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(100px);
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}


/* Responsive */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav {
        padding: 20px;
    }


    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

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



    .feature-block {
        width: 100%;
        max-width: 350px;
    }

    .cta-button {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
    }
}


/* experience section start */
h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* experience Section */
.experience-section {
    padding: 120px 0;
    /* background-color: var(--dark-green); */
    background: linear-gradient(#0e2120, var(--dark-green));

    position: relative;
    overflow: hidden;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text {
    position: relative;
    z-index: 2;
}

.experience-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--off-white);
    position: relative;
    display: inline-block;
}

.experience-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.experience-text p {
    margin-bottom: 25px;
    color: rgba(245, 243, 239, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(29, 58, 53, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(245, 243, 239, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Skills Showcase */
.skills-showcase {
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.skill-category {
    margin-bottom: 40px;
}

.skill-category h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.skill-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(29, 58, 53, 0.5);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(201, 169, 110, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skill-item:hover {
    transform: translateX(5px);
    border-color: rgba(201, 169, 110, 0.3);
    background: rgba(29, 58, 53, 0.8);
}

.skill-item:hover .skill-icon {
    transform: scale(1.1);
    background: rgba(201, 169, 110, 0.2);
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 5px;
}

.skill-level {
    display: flex;
    align-items: center;
}

.level-bar {
    flex: 1;
    height: 4px;
    background: rgba(245, 243, 239, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 10px;
}

.level-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.level-text {
    font-size: 0.8rem;
    color: rgba(245, 243, 239, 0.6);
    min-width: 40px;
}

/* Laravel-specific styling */
.laravel-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 45, 45, 0.05);
    border-radius: 15px;
    border-left: 4px solid #FF2D20;
}

.laravel-logo {
    font-size: 2.5rem;
    color: #FF2D20;
    margin-right: 15px;
}

.laravel-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
}

.laravel-text span {
    color: #FF2D20;
}

/* Floating elements for visual interest */
.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 110, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.floating-element-1 {
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .experience-section {
        padding: 80px 0;
    }

    .experience-text h2 {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .experience-stats {
        grid-template-columns: 1fr;
    }

    .experience-text h2 {
        font-size: 2rem;
    }

    .laravel-brand {
        flex-direction: column;
        text-align: center;
    }

    .laravel-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* experience section end */

/* Horizontal Journey Section */
.journey-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--deep-green);
    ;
    padding: 0;
    margin: 0;
}

/* Horizontal container */
.journey-container {
    display: flex;
    height: 100vh;
    width: fit-content;
    position: relative;
}

/* journeyslide styling - Horizontal */
.journeyslide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
}

.journeyslide__container {
    max-width: 1400px;
    width: 100%;
    height: 80vh;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.journeyslide__heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin: 0;
    padding: 0;
    color: #f2f1fc;
    z-index: 999;
    mix-blend-mode: difference;
    grid-area: 2 / 4 / 4 / 9;
    align-self: end;
    letter-spacing: -1px;
}

.journeyslide__img-cont {
    grid-area: 3 / 1 / 9 / 7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.journeyslide__img-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.journeyslide__img-cont:hover img {
    transform: scale(1.05);
}

.journey-card {
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-area: 5 / 6 / 10 / 11;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-indicator {
    display: inline-block;
    background: linear-gradient(90deg, #D4AF37, #8A2BE2);
    color: #0A0A0F;
    font-weight: 700;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    background: linear-gradient(90deg, #D4AF37, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panel-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Alternate layouts for journeyslides */
.journeyslide:nth-of-type(odd) .journeyslide__img-cont {
    grid-area: 3 / 1 / 9 / 7;
}

.journeyslide:nth-of-type(odd) .journey-card {
    grid-area: 5 / 6 / 10 / 11;
}

.journeyslide:nth-of-type(even) .journeyslide__img-cont {
    grid-area: 3 / 5 / 9 / 11;
}

.journeyslide:nth-of-type(even) .journey-card {
    grid-area: 5 / 1 / 10 / 6;
}


/* Scroll Instructions */
.scroll-instructions {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1;
}

.scroll-instructions::before {
    content: '← →';
    font-size: 1.2rem;
    animation: bounceHorizontal 2s infinite;
}

@keyframes bounceHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Mobile responsive */
@media screen and (max-width: 1200px) {
    .journeyslide__container {
        width: 95vw;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 900px) {
    .journeyslide__container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        gap: 2rem;
        height: auto;
    }

    .journeyslide {
        height: auto;
        min-height: 100vh;
    }

    .journeyslide__heading {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        grid-area: unset;
        text-align: center;
    }

    .journeyslide__img-cont {
        height: 40vh;
        width: 100%;
        margin-bottom: 1rem;
        grid-area: unset;
    }

    .journey-card {
        padding: 2rem;
        grid-area: unset;
    }

    .panel-title {
        font-size: 2.4rem;
    }

    .panel-text {
        font-size: 1.1rem;
    }

    .progress-container {
        display: none;
    }

    .scroll-instructions {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .journeyslide__heading {
        font-size: 2rem;
    }

    .journeyslide__img-cont {
        height: 30vh;
    }

    .journey-card {
        padding: 1.5rem;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .panel-text {
        font-size: 1rem;
    }
}


/* journey */




/* footer */


/* FOOTER */
.footer {
    padding: 40px 5%;
    color: #d3e8e8;
    background: #0b0b0b;
}

.footer-line {
    width: 100%;
    height: 2px;
    background: #1d1f1f;
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-title {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 13px;
    margin-bottom: 15px;
    color: #bfcfcf;
}

/* OUTLINE BUTTON */
.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #d3e8e8;
    text-decoration: none;
    color: #d3e8e8;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #d3e8e8;
    color: #000;
}

/* Right block */
.footer-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    width: 90px;
    height: 90px;
    background: #d3e8e8;
    color: #0b0b0b;
    font-size: 60px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.footer-info h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-info p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #bfcfcf;
}

.year {
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        margin-top: 20px;
    }
}


/* beautifulsection */


/* === SECTION HEADING === */
.beautiful-heading-wrapper {
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 700px;
}

.beautiful-tagline {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 14px;
}

.beautiful-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #ffffff;
}

.beautiful-heading span {
    background: linear-gradient(90deg, #d4af37, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beautiful-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

/* === MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
    .beautiful-heading-wrapper {
        margin-top: 60px;
        margin-bottom: 36px;
    }

    .beautiful-heading {
        font-size: 2.3rem;
    }

    .beautiful-subtitle {
        font-size: 0.95rem;
    }
}


/* === MAIN CONTAINER === */
.beautiful-section {
    background: var(--deep-green);
    position: relative;
    overflow: visible;
}


.beautiful-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    overflow: hidden;
}


/* === HORIZONTAL SCROLL CONTAINER === */
.beautiful-scroll-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

/* === SCROLLABLE ROW === */
.beautiful-row {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 30px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.beautiful-row::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* === beautifulS === */
.beautiful-beautiful {
    flex: 0 0 228px;
    /* border-radius: 10px; */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    cursor: pointer;
}

/* .beautiful-beautiful:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        } */

.beautiful-image-container {
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.beautiful-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;

    transition: transform 0.6s ease;
}

.beautiful-beautiful:hover .beautiful-image-container img {
    transform: scale(1.08);
}

.beautiful-beautiful:hover .beautiful-content h3,
.beautiful-beautiful:hover .beautiful-content p {
    /* transform: scale(1.08); */
    color: gold;
}

.beautiful-content {
    padding: 28px;
    position: relative;
}

.beautiful-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bg-glass);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

/* === STAGGERED EFFECT (VERTICAL OFFSET) === */
.beautiful-beautiful:nth-child(odd) {
    transform: translateY(-25px);
}

.beautiful-beautiful:nth-child(even) {
    transform: translateY(30px);
}




/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .beautiful-container {
        padding: 0 30px;
    }

    .beautiful-beautiful {
        flex: 0 0 300px;
    }


}

@media (max-width: 768px) {
    /* body {
                padding: 60px 0;
            } */

    .beautiful-container {
        padding: 0 20px;
    }


    .beautiful-beautiful {
        flex: 0 0 280px;
    }

    .beautiful-image-container {
        height: 240px;
    }

    .beautiful-content {
        padding: 22px;
    }

    .beautiful-content h3 {
        font-size: 1.3rem;
    }

    /* Remove staggered effect on mobile */
    .beautiful-beautiful:nth-child(odd),
    .beautiful-beautiful:nth-child(even) {
        transform: translateY(0);
    }

    .beautiful-beautiful:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 480px) {
    .beautiful-beautiful {
        flex: 0 0 260px;
    }

    .beautiful-row {
        gap: 24px;
        padding: 20px 15px;
    }

    .beautiful-image-container {
        height: 220px;
    }
}

/* Beautiful Section */



/*experience section */



.aboutcontainer {
    background-color: var(--deep-green);
    margin: 0 auto;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Left Column - Text Content */
.text-content {
    padding-right: 1rem;
}

.greeting {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
}

.name {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    opacity: 0;
}

.job-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-green);
    -webkit-text-stroke: 1.5px var(--off-white);
    ;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    opacity: 0;
}

.location {
    font-size: 1.25rem;
    color: var(--off-white);
    margin-bottom: 2.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.location i {
    font-size: 1rem;
}

.description {
    font-size: 1.125rem;
    color: var(--off-white);
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 2.5rem;
    opacity: 0;
}

/* Right Column - Image */
.image-aboutcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
}

.image-wrapper {
    width: 380px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform-origin: center;
    filter: blur(4px);
    transition: filter 0.8s ease;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.developer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image-decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #3a0ca3 100%);
    opacity: 0.1;
    z-index: -1;
    top: -40px;
    right: -40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .text-content {
        padding-right: 0;
    }

    .name {
        font-size: 3rem;
    }

    .job-title {
        font-size: 2.5rem;
    }

    .image-wrapper {
        width: 320px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    /* body {
                padding: 1rem;
            } */

    .about-section {
        padding: 2rem;
    }

    .name {
        font-size: 2.5rem;
    }

    .job-title {
        font-size: 2rem;
    }

    .image-wrapper {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem;
    }

    .name {
        font-size: 2rem;
    }

    .job-title {
        font-size: 1.75rem;
    }

    .description {
        font-size: 1rem;
    }

    .image-wrapper {
        width: 240px;
        height: 320px;
    }
}

/* Decorative elements */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03) 0%, rgba(67, 97, 238, 0.01) 100%);
    z-index: -1;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 3%;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 5%;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loading {
    animation: fadeIn 0.8s ease forwards;
}


/* about section end */
/* testemonial section start */

/* Testimonial Section */
.client-testimonials {
    padding: 100px 0;
    background-image: linear-gradient(to bottom, var(--deep-green), #0b0b0b);

    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-header {
    margin-bottom: 50px;
}

.testimonial-tagline {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
}

.testimonial-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #ffffff;
}

.testimonial-title span {
    background: linear-gradient(90deg, var(--gold), #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.horizontal-testimonial-wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 400px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    height: 100%;
    align-items: center;
    position: relative;
    width: max-content;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 800px;
    height: 300px;
    background: var(--dark-green);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 110, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    will-change: transform;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: rgba(201, 169, 110, 0.3);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid rgba(201, 169, 110, 0.2);
}

.client-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 5px;
}

.client-details .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 243, 239, 0.7);
    font-size: 0.95rem;
}

.client-details .location i {
    color: var(--gold);
}

.review-content {
    flex-grow: 1;
    position: relative;
    padding-left: 20px;
}

.review-content::before {
    content: "“";
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -30px;
    font-family: Georgia, serif;
}

.review-text {
    font-size: 1.05rem;
    color: rgba(245, 243, 239, 0.85);
    line-height: 1.7;
    font-weight: 400;
}

.rating {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Responsive Testimonial Styles */
@media (max-width: 1024px) {
    .testimonial-item {
        width: 600px;
    }
}

@media (max-width: 768px) {
    .testimonial-wrapper {
        padding: 0 20px;
    }

    .testimonial-title {
        font-size: 2.5rem;
    }

    .testimonial-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-item {
        width: 450px;
        height: 320px;
    }

    .testimonials-track {
        padding: 0 20px;
        gap: 20px;
    }

    .horizontal-testimonial-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .testimonial-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .testimonial-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-item {
        width: calc(100vw - 40px);
        max-width: 350px;
        height: auto;
        min-height: 350px;
        padding: 25px;
    }

    .client-image {
        width: 60px;
        height: 60px;
    }

    .review-content::before {
        font-size: 4rem;
        top: -20px;
    }

    .review-text {
        font-size: 1rem;
    }

    .testimonials-track {
        padding: 0 20px;
        gap: 15px;
    }

    .horizontal-testimonial-wrapper {
        min-height: 380px;
    }
}

@media (max-width: 375px) {
    .testimonial-item {
        width: calc(100vw - 30px);
        padding: 20px;
    }

    .client-details h4 {
        font-size: 1.1rem;
    }

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

/* Testimonial Section end */


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 40px;
    color: white;
}

/* Optional: Add a notification badge */
.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button i {
        font-size: 35px;
    }
}
